reshaped 2.4.8 → 2.5.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 +5 -0
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -0
- package/bundle.js +9 -9
- package/components/Accordion/Accordion.module.css +1 -1
- package/components/Accordion/AccordionContent.d.ts +1 -1
- package/components/Accordion/AccordionContent.js +2 -38
- package/components/Stepper/Stepper.d.ts +7 -0
- package/components/Stepper/Stepper.js +43 -0
- package/components/Stepper/Stepper.module.css +1 -0
- package/components/Stepper/Stepper.types.d.ts +26 -0
- package/components/Stepper/Stepper.types.js +1 -0
- package/components/Stepper/index.d.ts +2 -0
- package/components/Stepper/index.js +1 -0
- package/components/Stepper/tests/Stepper.stories.d.ts +8 -0
- package/components/Stepper/tests/Stepper.stories.js +79 -0
- package/components/View/View.js +5 -2
- package/components/View/tests/View.stories.js +8 -0
- package/components/_private/Expandable/Expandable.d.ts +4 -0
- package/components/_private/Expandable/Expandable.js +43 -0
- package/components/_private/Expandable/Expandable.module.css +1 -0
- package/components/_private/Expandable/Expandable.types.d.ts +7 -0
- package/components/_private/Expandable/Expandable.types.js +1 -0
- package/components/_private/Expandable/index.d.ts +1 -0
- package/components/_private/Expandable/index.js +1 -0
- package/components/_private/Flyout/Flyout.module.css +1 -1
- package/index.d.ts +2 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/styles/position/position.module.css +1 -1
- package/styles/types.d.ts +1 -1
- package/themes/_generator/utilities/mergeDeep.js +3 -1
- package/themes/_generator/utilities/resolveTokenReference.js +3 -1
- package/themes/_generator/utilities/tests/generateColors.test.d.ts +1 -0
- package/themes/_generator/utilities/tests/generateColors.test.js +20 -0
- package/themes/index.js +18 -10
package/CHANGELOG.md
CHANGED
@@ -12,3 +12,8 @@
|
|
12
12
|
- Text field, Text area: Added aligner utility
|
13
13
|
- MenuItem: Added side support for the aligner
|
14
14
|
- Button: Renamed aligned position to side, deprecated position
|
15
|
+
- View: Static position support
|
16
|
+
- View: Added automatic switching to flex box if there are children with grow
|
17
|
+
- Popover, Tooltip, DropdownMenu: Updated transition effect
|
18
|
+
|
19
|
+
- Theming: Fixed setting color mode to an already applied color mode (transition)
|