reshaped 2.7.5-beta.0 → 2.8.0
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 -3
- package/bundle.css +1 -1
- package/bundle.js +15 -15
- package/components/Actionable/Actionable.module.css +1 -1
- package/components/Button/Button.module.css +1 -1
- package/components/Button/tests/Button.stories.d.ts +1 -0
- package/components/Button/tests/Button.stories.js +11 -0
- package/components/Card/Card.d.ts +1 -1
- package/components/Carousel/Carousel.module.css +1 -1
- package/components/Checkbox/Checkbox.module.css +1 -1
- package/components/FormControl/FormControl.context.d.ts +0 -1
- package/components/HiddenVisually/HiddenVisually.module.css +1 -1
- package/components/MenuItem/MenuItem.module.css +1 -1
- package/components/Overlay/Overlay.module.css +1 -1
- package/components/Radio/Radio.module.css +1 -1
- package/components/Slider/Slider.module.css +1 -1
- package/components/Switch/Switch.module.css +1 -1
- package/components/Tabs/Tabs.module.css +1 -1
- package/components/Text/Text.module.css +1 -1
- package/components/TextField/TextField.module.css +1 -1
- package/components/View/View.js +7 -3
- package/components/View/View.module.css +1 -1
- package/components/View/View.types.d.ts +3 -1
- package/components/View/tests/View.stories.d.ts +1 -0
- package/components/View/tests/View.stories.js +15 -0
- package/package.json +32 -36
- package/styles/bleed/bleed.module.css +1 -1
- package/styles/minHeight/index.d.ts +3 -0
- package/styles/minHeight/index.js +10 -0
- package/styles/minHeight/minHeight.module.css +1 -0
- package/styles/padding/padding.module.css +1 -1
- package/themes/_generator/tests/themes.stories.js +24 -1
- package/themes/_generator/utilities/generateColors.js +3 -3
package/CHANGELOG.md
CHANGED
@@ -10,7 +10,12 @@
|
|
10
10
|
|
11
11
|
- Badge, Figma: Exposed icon properties
|
12
12
|
- Button, Figma: Split into Button and .button-content to improve the library
|
13
|
-
- Button: Added slot support
|
13
|
+
- Button, Figma: Added slot support
|
14
|
+
- Button: Added flex layout for the button children
|
15
|
+
- Button: Reduced the vertical padding to work with larger slots without stretching the button
|
16
|
+
- MenuItem: Fixed Tailwind CSS reset overriding button styles
|
14
17
|
|
15
|
-
- Timeline: Fixed slot auto layout in Figma
|
16
|
-
- Slot: Fixed slot overriding styles of the swapped components
|
18
|
+
- Timeline, Figma: Fixed slot auto layout in Figma
|
19
|
+
- Slot, Figma: Fixed slot overriding styles of the swapped components
|
20
|
+
- View: minWidth, minHeight support
|
21
|
+
- View: overflow auto support
|