You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -151,10 +150,6 @@ Boolean parameter to control whether the text-input should be automatically resi
151
150
152
151
Array of keys matching `KeyboardEvent.key` values. When a corresponding key is pressed it will trigger tag selection or creation. Defaults to `['Enter', 'Tab']`.
153
152
154
-
#### delimiterChars (optional)
155
-
156
-
Array of literal characters. When a corresponding character is entered it will trigger tag selection or creation. Defaults to `[',', ';']`.
157
-
158
153
#### minQueryLength (optional)
159
154
160
155
Minimum query length required to show the suggestions list. Defaults to `2`.
@@ -296,7 +291,7 @@ To see all changes refer to [the changelog](CHANGELOG.md).
296
291
- React 16.5 or above is now required.
297
292
- Event handlers and callbacks have been renamed to use `on` prefixes, e.g. the `handleAddition()` callback should now be called `onAddition()`.
298
293
- The `delimiters` option is now an array of `KeyboardEvent.key` values and not `KeyboardEvent.keyCode` codes, e.g. `[13, 9]` should now be written as `['Enter', 'Tab']`. See https://keycode.info/ for more information.
299
-
- The `delimiterChars` option is now an array of literal characters, e.g. `[',', ';']`.
300
294
- The `placeholder` option has been renamed `placeholderText`
295
+
- The `delimiterChars` option has been removed, use the `delimiters` option instead.
301
296
- The `clearInputOnDelete` option has been removed and is now the default behaviour
0 commit comments