reshaped 3.2.0-canary.5 → 3.2.0-canary.6
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 +2 -0
- package/dist/bundle.js +17 -16
- package/dist/components/Overlay/tests/Overlay.stories.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +1 -1
- package/dist/components/_private/Expandable/Expandable.js +9 -5
- package/dist/components/_private/Flyout/Flyout.types.d.ts +1 -0
- package/dist/components/_private/Flyout/FlyoutControlled.js +10 -7
- package/dist/components/_private/Flyout/utilities/cooldown.d.ts +1 -1
- package/dist/components/_private/Flyout/utilities/cooldown.js +17 -5
- package/dist/components/_private/Portal/Portal.js +3 -3
- package/dist/hooks/_private/useSingletonHotkeys.js +5 -3
- package/dist/hooks/tests/useHotkeys.stories.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -31,3 +31,5 @@
|
|
31
31
|
- useOnClickOutside: support shadow DOM
|
32
32
|
- Autocomplete, DropdownMenu, Popover, trapFocus: Support shadow dom for the keyboard navigation
|
33
33
|
- Flyout: shadow dom doesn't required using containerRef
|
34
|
+
- Accordiong: fixed animation edge cases (inside live editor on the website)
|
35
|
+
- useHotkeys: fixed mod+enter on non-mac os
|