reshaped 3.4.7 → 3.5.0
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 +0 -28
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Autocomplete/tests/Autocomplete.stories.d.ts +0 -1
- package/dist/components/Autocomplete/tests/Autocomplete.stories.js +3 -15
- package/dist/components/Badge/Badge.types.d.ts +4 -2
- package/dist/components/Button/Button.types.d.ts +4 -2
- package/dist/components/MenuItem/MenuItem.types.d.ts +4 -2
- package/dist/components/NumberField/NumberField.module.css +1 -1
- package/dist/components/NumberField/NumberField.types.d.ts +1 -1
- package/dist/components/NumberField/NumberFieldControlled.js +44 -28
- package/dist/components/NumberField/tests/NumberField.stories.d.ts +2 -1
- package/dist/components/NumberField/tests/NumberField.stories.js +30 -5
- package/dist/components/Overlay/Overlay.js +2 -2
- package/dist/components/TextField/TextField.module.css +1 -1
- package/dist/components/Toast/ToastContainer.js +2 -2
- package/dist/components/_private/Flyout/FlyoutControlled.js +2 -2
- package/dist/utilities/a11y/TrapFocus.d.ts +3 -17
- package/dist/utilities/a11y/TrapFocus.js +54 -49
- package/dist/utilities/a11y/tests/TrapFocus.stories.js +20 -20
- package/package.json +31 -31
package/CHANGELOG.md
CHANGED
@@ -1,28 +0,0 @@
|
|
1
|
-
3.5.0
|
2
|
-
|
3
|
-
- NumberField
|
4
|
-
|
5
|
-
- Added .displayName to components
|
6
|
-
- Tests: Calendar, TrapFocus, Avatar, Autocomplete, Image, useOnClickOutside, useHandlerRef
|
7
|
-
|
8
|
-
- Calendar: selectedDates
|
9
|
-
- Flyout: fixed onClickOutside to correctly track clicked components that get unmounted (calendar)
|
10
|
-
- useOnClickOutside: new hook
|
11
|
-
- useHandlerRef: new hook
|
12
|
-
- TrapFocus: new utility, new trap mode
|
13
|
-
- Icon: Added vertical alignment in case svg content is smaller that the icon size
|
14
|
-
- Avatar: Image attributes, relaxed types
|
15
|
-
- Avatar: renderImage
|
16
|
-
- Image: renderImage
|
17
|
-
- Autocomplete: keep focus on the input when clicking on disabled items
|
18
|
-
- DropdownMenu: items support passing className now
|
19
|
-
- FormControl: Made label element inline to avoid clicking on the invisible area
|
20
|
-
- Select: Added small size
|
21
|
-
- Checkbox: size property - s,m,l
|
22
|
-
- Radio: size property - s,m,l
|
23
|
-
- Switch: align size styles and support responsive
|
24
|
-
- TextField: small size
|
25
|
-
- PinField: small size
|
26
|
-
- Dismissible: added missing use client
|
27
|
-
- TextField: inputAttributes.className support
|
28
|
-
- useScrollLock: fixed locked count race condition when using it with container ref
|