reshaped 3.0.8-rc.1 → 3.0.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 +7 -7
- package/dist/components/Card/Card.module.css +1 -1
- package/dist/components/Checkbox/Checkbox.module.css +1 -1
- package/dist/components/Dismissible/Dismissible.module.css +1 -1
- package/dist/components/DropdownMenu/DropdownMenu.d.ts +1 -0
- package/dist/components/DropdownMenu/DropdownMenu.js +1 -0
- package/dist/components/DropdownMenu/tests/DropdownMenu.stories.d.ts +1 -0
- package/dist/components/Modal/tests/Modal.stories.d.ts +1 -0
- package/dist/components/Modal/tests/Modal.stories.js +17 -1
- package/dist/components/Popover/Popover.d.ts +2 -0
- package/dist/components/Popover/Popover.js +7 -1
- package/dist/components/Popover/tests/Popover.stories.d.ts +2 -0
- package/dist/components/Popover/tests/Popover.stories.js +16 -0
- package/dist/components/Radio/Radio.module.css +1 -1
- package/dist/components/Slider/Slider.module.css +1 -1
- package/dist/components/Switch/Switch.module.css +1 -1
- package/dist/components/_private/Flyout/FlyoutControlled.js +2 -2
- package/dist/components/_private/Flyout/tests/Flyout.stories.js +39 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
3.1.0
|
2
2
|
|
3
3
|
- Reshaped global reset styles in rs.reset
|
4
|
+
- Switched to :focus-visible wherever possible
|
4
5
|
- Modal: attribures.ref support
|
5
6
|
- Modal: disableSwipeGesture
|
6
7
|
- Slider: vertical orientation
|
@@ -18,6 +19,8 @@
|
|
18
19
|
- Modal: Prevent swipe to close when text selection is happening
|
19
20
|
- Overlay, Modal: shadow dom support
|
20
21
|
- Popover, Tooltip: Only trigger focus events for keyboard mode
|
22
|
+
- Popover, DropdownMenu: Popover.Dismissible
|
23
|
+
- Slider: Fixed focus state to work based on focus-visible
|
21
24
|
|
22
25
|
- Figma: Removed local color scoping
|
23
26
|
- Figma: Updated description links
|