reshaped 2.4.3 → 2.4.5
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 +6 -8
- package/bundle.css +1 -1
- package/bundle.js +5 -5
- package/cli/theming/index.js +2 -2
- package/cli/theming/reshaped.config.js +3 -3
- package/components/Accordion/AccordionContent.js +3 -1
- package/components/Accordion/tests/Accordion.stories.js +2 -1
- package/components/Actionable/Actionable.module.css +1 -1
- package/components/Checkbox/tests/Checkbox.stories.js +1 -1
- package/components/TextField/TextField.module.css +1 -1
- package/components/Toast/tests/Toast.stories.js +0 -1
- package/components/View/tests/View.stories.js +1 -1
- package/config/tailwind.js +2 -2
- package/package.json +10 -5
- package/themes/_generator/definitions/base.d.ts +3 -0
- package/themes/_generator/definitions/figma.d.ts +3 -0
- package/themes/_generator/definitions/reshaped.d.ts +3 -0
- package/{cli/theming → themes/_generator}/definitions/reshaped.js +5 -38
- package/themes/_generator/definitions/slate.d.ts +3 -0
- package/themes/_generator/tests/themes.stories.d.ts +2 -1
- package/themes/_generator/tests/themes.stories.js +75 -2
- package/themes/_generator/tokens/shadow/shadow.transforms.js +2 -2
- package/themes/_generator/utilities/generateColors.d.ts +20 -0
- package/themes/_generator/utilities/generateColors.js +422 -0
- package/themes/figma/theme.css +1 -1
- package/themes/index.d.ts +11 -0
- package/themes/index.js +8 -0
- package/themes/reshaped/theme.css +1 -1
- package/themes/slate/theme.css +1 -1
- package/cli/theming/definitions/base.d.ts +0 -3
- package/cli/theming/definitions/figma.d.ts +0 -3
- package/cli/theming/definitions/reshaped.d.ts +0 -3
- package/cli/theming/definitions/slate.d.ts +0 -3
- /package/{cli/theming → themes/_generator}/definitions/base.js +0 -0
- /package/{cli/theming → themes/_generator}/definitions/figma.js +0 -0
- /package/{cli/theming → themes/_generator}/definitions/slate.js +0 -0
package/CHANGELOG.md
CHANGED
@@ -1,10 +1,8 @@
|
|
1
|
-
2.
|
1
|
+
2.5
|
2
2
|
|
3
|
-
-
|
4
|
-
- New component: Table
|
3
|
+
- Theme generation
|
5
4
|
|
6
|
-
-
|
7
|
-
-
|
8
|
-
-
|
9
|
-
-
|
10
|
-
- Card: selected transition
|
5
|
+
- 0 value shadow support in theme definition
|
6
|
+
- text field: safari calc % bug
|
7
|
+
- Accordion: removed overflow hidden once accordion is expanded
|
8
|
+
- Text field: native autocomplete position
|