reshaped 2.10.10 → 2.10.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -0
- package/bundle.js +10 -10
- package/components/Actionable/Actionable.js +7 -7
- package/components/Actionable/tests/Actionable.stories.d.ts +1 -0
- package/components/Actionable/tests/Actionable.stories.js +10 -0
- package/components/Autocomplete/Autocomplete.js +1 -1
- package/components/Calendar/useCalendarKeyboardNavigation.js +1 -1
- package/components/DropdownMenu/DropdownMenu.js +1 -1
- package/components/FormControl/FormControl.context.js +1 -10
- package/components/PinField/PinField.constants.d.ts +3 -0
- package/components/PinField/PinField.constants.js +3 -0
- package/components/PinField/PinField.d.ts +3 -0
- package/components/PinField/PinField.js +10 -0
- package/components/PinField/PinField.module.css +1 -0
- package/components/PinField/PinField.types.d.ts +23 -0
- package/components/PinField/PinField.types.js +1 -0
- package/components/PinField/PinFieldControlled.d.ts +3 -0
- package/components/PinField/PinFieldControlled.js +163 -0
- package/components/PinField/PinFieldUncontrolled.d.ts +3 -0
- package/components/PinField/PinFieldUncontrolled.js +25 -0
- package/components/PinField/index.d.ts +2 -0
- package/components/PinField/index.js +1 -0
- package/components/PinField/tests/PinField.stories.d.ts +14 -0
- package/components/PinField/tests/PinField.stories.js +63 -0
- package/hooks/_private/useSingletonHotkeys.d.ts +6 -2
- package/hooks/_private/useSingletonHotkeys.js +19 -8
- package/hooks/useHotkeys.d.ts +1 -0
- package/hooks/useHotkeys.js +10 -2
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -7,11 +7,15 @@ Features:
|
|
7
7
|
- Toast: Added support for toast render boundaries
|
8
8
|
- useHotkeys: disable flag
|
9
9
|
- Modal: overlayClassName
|
10
|
+
- PinField: new component
|
11
|
+
- useHotkeys: preventDefault flag
|
10
12
|
|
11
13
|
Fixes:
|
12
14
|
|
13
15
|
- View: Fixed dividers incorrectly working with React.Fragments
|
14
16
|
- useHotkeys: auto preventDefault
|
17
|
+
- useHotkeys: fixed used hotkeys cleanup
|
15
18
|
- DropdownMenu: fixed double click handling
|
16
19
|
- Slider: Float values
|
17
20
|
- Slider: Tabular numbers
|
21
|
+
- Actionable: Form submission with type="submit"
|