reshaped 3.7.0-canary.8 → 3.7.0-canary.9
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 +3 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +10 -10
- package/dist/components/Autocomplete/Autocomplete.js +7 -3
- package/dist/components/Autocomplete/Autocomplete.types.d.ts +1 -0
- package/dist/components/Flyout/FlyoutControlled.js +0 -1
- package/dist/components/Overlay/Overlay.js +1 -2
- package/dist/components/Popover/tests/Popover.stories.d.ts +6 -2
- package/dist/components/Popover/tests/Popover.stories.js +35 -16
- package/dist/components/TextArea/TextArea.module.css +1 -1
- package/dist/hooks/_private/useIsDismissible.d.ts +0 -1
- package/dist/hooks/_private/useIsDismissible.js +12 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -15,3 +15,6 @@
|
|
15
15
|
- Tabs: Fixed horizontal scrolling caused by negative margins
|
16
16
|
- Carousel: Updated outline styles when there are no focusable elements inside the carousel
|
17
17
|
- TrapFocus: Keep the focus on the manually focused elements
|
18
|
+
- TextArea: Removed custom word-break that was used for autogrow text areas
|
19
|
+
- Autocomplete: Added onEnter handler
|
20
|
+
- Flyout: Make nested flyouts blocking to make sure they are closed one by one
|