reshaped 2.4.5 → 2.4.7
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 +4 -0
- package/bundle.css +1 -1
- package/bundle.js +8 -8
- package/components/Accordion/tests/Accordion.stories.js +1 -1
- package/components/Actionable/Actionable.js +4 -4
- package/components/Autocomplete/Autocomplete.js +8 -2
- package/components/Button/Button.js +1 -1
- package/components/Button/Button.module.css +1 -1
- package/components/Button/ButtonAligner.d.ts +4 -2
- package/components/Button/ButtonAligner.js +2 -8
- package/components/FormControl/FormControl.context.d.ts +53 -53
- package/components/MenuItem/MenuItem.js +1 -1
- package/components/MenuItem/MenuItem.module.css +1 -1
- package/components/MenuItem/MenuItemAligner.d.ts +2 -2
- package/components/MenuItem/MenuItemAligner.js +2 -4
- package/components/MenuItem/tests/MenuItem.stories.js +1 -1
- package/components/TextArea/TextArea.d.ts +5 -1
- package/components/TextArea/TextArea.js +3 -1
- package/components/TextArea/TextArea.module.css +1 -1
- package/components/TextArea/tests/TextArea.stories.d.ts +1 -0
- package/components/TextArea/tests/TextArea.stories.js +16 -0
- package/components/TextField/TextField.d.ts +5 -1
- package/components/TextField/TextField.js +3 -1
- package/components/TextField/TextField.module.css +1 -1
- package/components/TextField/tests/TextField.stories.d.ts +1 -0
- package/components/TextField/tests/TextField.stories.js +16 -0
- package/components/_private/Aligner/Aligner.d.ts +12 -0
- package/components/_private/Aligner/Aligner.js +18 -0
- package/components/_private/Aligner/Aligner.module.css +1 -0
- package/components/_private/Aligner/Aligner.types.d.ts +9 -0
- package/components/_private/Aligner/Aligner.types.js +1 -0
- package/components/_private/Aligner/index.d.ts +2 -0
- package/components/_private/Aligner/index.js +1 -0
- package/components/_private/Flyout/FlyoutTrigger.js +3 -12
- package/components/_private/Portal/Portal.d.ts +1 -1
- package/package.json +17 -17
- package/types/global.d.ts +1 -1
- package/config/next.d.ts +0 -4
- package/config/next.js +0 -22
package/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
2.5
|
2
2
|
|
3
3
|
- Theme generation
|
4
|
+
- Default theme update
|
5
|
+
- Figma: Fixed foreground critical style reference in the colors preview
|
4
6
|
|
5
7
|
- 0 value shadow support in theme definition
|
6
8
|
- text field: safari calc % bug
|
7
9
|
- Accordion: removed overflow hidden once accordion is expanded
|
8
10
|
- Text field: native autocomplete position
|
11
|
+
- Dropdown menu: Nested menu open on enter and space
|
12
|
+
- Simplified responsive css output
|