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.
Files changed (33) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/bundle.css +1 -1
  3. package/bundle.d.ts +2 -0
  4. package/bundle.js +10 -10
  5. package/components/Actionable/Actionable.js +7 -7
  6. package/components/Actionable/tests/Actionable.stories.d.ts +1 -0
  7. package/components/Actionable/tests/Actionable.stories.js +10 -0
  8. package/components/Autocomplete/Autocomplete.js +1 -1
  9. package/components/Calendar/useCalendarKeyboardNavigation.js +1 -1
  10. package/components/DropdownMenu/DropdownMenu.js +1 -1
  11. package/components/FormControl/FormControl.context.js +1 -10
  12. package/components/PinField/PinField.constants.d.ts +3 -0
  13. package/components/PinField/PinField.constants.js +3 -0
  14. package/components/PinField/PinField.d.ts +3 -0
  15. package/components/PinField/PinField.js +10 -0
  16. package/components/PinField/PinField.module.css +1 -0
  17. package/components/PinField/PinField.types.d.ts +23 -0
  18. package/components/PinField/PinField.types.js +1 -0
  19. package/components/PinField/PinFieldControlled.d.ts +3 -0
  20. package/components/PinField/PinFieldControlled.js +163 -0
  21. package/components/PinField/PinFieldUncontrolled.d.ts +3 -0
  22. package/components/PinField/PinFieldUncontrolled.js +25 -0
  23. package/components/PinField/index.d.ts +2 -0
  24. package/components/PinField/index.js +1 -0
  25. package/components/PinField/tests/PinField.stories.d.ts +14 -0
  26. package/components/PinField/tests/PinField.stories.js +63 -0
  27. package/hooks/_private/useSingletonHotkeys.d.ts +6 -2
  28. package/hooks/_private/useSingletonHotkeys.js +19 -8
  29. package/hooks/useHotkeys.d.ts +1 -0
  30. package/hooks/useHotkeys.js +10 -2
  31. package/index.d.ts +2 -0
  32. package/index.js +1 -0
  33. 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"