reshaped 3.6.0-canary.5 → 3.6.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 +10 -1
- package/dist/bundle.css +1 -1
- package/dist/bundle.js +6 -6
- package/dist/cjs/cli/theming/index.js +1 -1
- package/dist/cjs/cli/theming/tailwind.js +1 -1
- package/dist/cjs/themes/_generator/transform.js +8 -2
- package/dist/cjs/themes/figma/tailwind.css +1 -1
- package/dist/cjs/themes/fragments/twitter/tailwind.css +1 -1
- package/dist/cjs/themes/reshaped/tailwind.css +1 -1
- package/dist/cjs/themes/slate/tailwind.css +1 -1
- package/dist/cli/theming/index.js +1 -1
- package/dist/cli/theming/tailwind.js +1 -1
- package/dist/components/Accordion/Accordion.types.d.ts +2 -1
- package/dist/components/Accordion/AccordionContent.js +3 -2
- package/dist/components/Accordion/AccordionControlled.js +3 -2
- package/dist/components/Accordion/tests/Accordion.stories.d.ts +4 -0
- package/dist/components/Accordion/tests/Accordion.stories.js +11 -0
- package/dist/components/Autocomplete/tests/Autocomplete.stories.js +3 -6
- package/dist/components/DropdownMenu/DropdownMenu.types.d.ts +1 -1
- package/dist/components/ScrollArea/ScrollArea.js +1 -1
- package/dist/components/TextField/TextField.js +2 -2
- package/dist/components/TextField/TextField.module.css +1 -1
- package/dist/themes/_generator/transform.js +9 -3
- package/dist/themes/figma/tailwind.css +1 -1
- package/dist/themes/fragments/twitter/tailwind.css +1 -1
- package/dist/themes/reshaped/tailwind.css +1 -1
- package/dist/themes/slate/tailwind.css +1 -1
- package/package.json +21 -20
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
## WIP 3.6.0
|
2
2
|
|
3
|
+
- OKLCH color support in themes
|
4
|
+
- Tailwind: Added scoped theming / color mode support for Tailwind v4 (rebuild themes)
|
5
|
+
|
3
6
|
- Flyout: Exported from the library
|
4
7
|
- Flyout: Moved css to css layers
|
5
8
|
- Flyout: Support height animations
|
@@ -17,12 +20,18 @@
|
|
17
20
|
- Flyout: Updated trigger boundaries detection inside scrollable
|
18
21
|
- Flyout: Avoid using fallbacks inside scrollable when already opened (to match regular flyouts)
|
19
22
|
- Flyout: Updated dialog trap mode flyouts to be blocking for Esc keys / clicking outside
|
20
|
-
- Flyout: trapFocusMode=false support
|
23
|
+
- Flyout, DropdownMenu: trapFocusMode=false support
|
21
24
|
- DropdownMenu: Submenu trigger doesn't close the menu on click
|
22
25
|
- Accordion: Fixed iconPosition prop memoization
|
23
26
|
- Avatar: use rs-font-weight-bold instead of hardcoded weight
|
24
27
|
- Exported ColorMode type
|
25
28
|
- Reshaped: colorMode conrolled prop support
|
29
|
+
- Accordion: gap property support
|
30
|
+
- ScrollArea: Removed tabIndex since it's handled natively including cases when there are actionable elements inside
|
31
|
+
- TextField: Fixed the gap/min-height of the attachments
|
32
|
+
- TextField: Improved end attachment wrapping
|
33
|
+
|
34
|
+
- Added node engine v20+ to package.json
|
26
35
|
|
27
36
|
## 3.5.3
|
28
37
|
|