reshaped 3.2.0-canary.4 → 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 +8 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Actionable/Actionable.js +2 -2
- package/dist/components/Actionable/Actionable.module.css +1 -1
- package/dist/components/Actionable/Actionable.types.d.ts +1 -0
- package/dist/components/Autocomplete/Autocomplete.js +10 -4
- package/dist/components/Dismissible/Dismissible.module.css +1 -1
- package/dist/components/Overlay/tests/Overlay.stories.js +1 -1
- package/dist/components/Select/Select.js +1 -1
- package/dist/components/Table/Table.js +6 -4
- package/dist/components/Table/Table.types.d.ts +6 -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 -6
- package/dist/components/_private/Flyout/useFlyout.js +2 -3
- package/dist/components/_private/Flyout/utilities/cooldown.d.ts +1 -1
- package/dist/components/_private/Flyout/utilities/cooldown.js +17 -5
- package/dist/hooks/_private/useOnClickOutside.js +3 -2
- package/dist/hooks/_private/useSingletonHotkeys.js +16 -13
- package/dist/hooks/tests/useHotkeys.stories.js +6 -0
- package/dist/tests/ShadowDOM.stories.d.ts +6 -0
- package/dist/tests/ShadowDOM.stories.js +110 -0
- package/dist/themes/_generator/tests/themes.stories.js +1 -1
- package/dist/utilities/a11y/TrapFocus.js +14 -5
- package/dist/utilities/a11y/focus.d.ts +1 -1
- package/dist/utilities/a11y/focus.js +10 -5
- package/dist/utilities/dom.d.ts +2 -1
- package/dist/utilities/dom.js +12 -2
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
@@ -25,3 +25,11 @@
|
|
25
25
|
- Flyout: Fixed blur event for the content-menu hover without buttons inside
|
26
26
|
- Reshaped: `scoped` flag, scoped all global styles to data-rs-theme attribute
|
27
27
|
- Badge: added neutral color to docs and types
|
28
|
+
- Table: added className and attributes for tbody, thead, cells
|
29
|
+
- useHotkeys: fixed keys alt modified keys (shiftleft)
|
30
|
+
- Actionable: disableFocusRing
|
31
|
+
- useOnClickOutside: support shadow DOM
|
32
|
+
- Autocomplete, DropdownMenu, Popover, trapFocus: Support shadow dom for the keyboard navigation
|
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
|