reshaped 3.2.0-canary.3 → 3.2.0-canary.4
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 +10 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Accordion/tests/Accordion.stories.js +33 -19
- package/dist/components/Badge/Badge.types.d.ts +1 -1
- package/dist/components/Image/Image.js +3 -1
- package/dist/components/Modal/Modal.js +3 -3
- package/dist/components/Modal/Modal.module.css +1 -1
- package/dist/components/Modal/Modal.types.d.ts +6 -2
- package/dist/components/Modal/tests/Modal.stories.d.ts +1 -0
- package/dist/components/Modal/tests/Modal.stories.js +27 -0
- package/dist/components/Overlay/Overlay.js +5 -5
- package/dist/components/Overlay/Overlay.module.css +1 -1
- package/dist/components/Overlay/Overlay.types.d.ts +4 -1
- package/dist/components/Overlay/index.d.ts +1 -1
- package/dist/components/Reshaped/Reshaped.css +1 -1
- package/dist/components/Reshaped/Reshaped.js +3 -3
- package/dist/components/Reshaped/Reshaped.module.css +1 -1
- package/dist/components/Reshaped/Reshaped.types.d.ts +4 -3
- package/dist/components/Switch/Switch.js +1 -1
- package/dist/components/Switch/tests/Switch.stories.js +5 -0
- package/dist/components/Theme/GlobalColorMode.js +3 -2
- package/dist/components/Theme/Theme.d.ts +1 -0
- package/dist/components/Theme/Theme.js +13 -12
- package/dist/components/Theme/Theme.types.d.ts +4 -0
- package/dist/components/Theme/Theme.utilities.d.ts +1 -0
- package/dist/components/Theme/Theme.utilities.js +1 -0
- package/dist/components/Theme/index.d.ts +1 -1
- package/dist/components/Theme/index.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +2 -2
- package/dist/components/Tooltip/Tooltip.types.d.ts +1 -1
- package/dist/components/_private/Flyout/FlyoutControlled.js +1 -3
- package/dist/components/_private/Flyout/tests/Flyout.stories.js +6 -0
- package/dist/hooks/useResponsiveClientValue.js +3 -3
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
- Theming: Updated rem calculations to be based on 16px
|
4
4
|
- Theming: Updated generated bg neutral faded values (slightly more faded)
|
5
5
|
|
6
|
+
- Package.json added types field for old module resolution
|
7
|
+
|
6
8
|
- Pagination: Fixed truncation for total < 8
|
7
9
|
- PinField, source: Updated keyboard tests
|
8
10
|
- Flyout: Correctly calculate position for scaled down triggers
|
@@ -15,3 +17,11 @@
|
|
15
17
|
- TextField: focused prop
|
16
18
|
- TextField: multiline prop
|
17
19
|
- Autocomplete: instanceRef + AutocompleteInstance type
|
20
|
+
- Modal: Added overflow="visible" prop
|
21
|
+
- Switch: Fixed disabled label color
|
22
|
+
- Image: Added support for passing attributes.style
|
23
|
+
- Modal, Overlay: Added onClose 'reason'
|
24
|
+
- useResponsiveClientValue: boolean values support
|
25
|
+
- Flyout: Fixed blur event for the content-menu hover without buttons inside
|
26
|
+
- Reshaped: `scoped` flag, scoped all global styles to data-rs-theme attribute
|
27
|
+
- Badge: added neutral color to docs and types
|