tide-design-system 2.0.38 → 2.0.40
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/dist/css/main.css +1 -0
- package/dist/css/storybook.css +9 -1
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +6 -0
- package/dist/tide-design-system.esm.js +8 -2
- package/package.json +1 -1
- package/src/assets/css/main.css +1 -0
- package/src/assets/css/storybook.css +9 -1
- package/src/components/TideImage.vue +1 -1
- package/src/stories/FoundationsTransparency.stories.ts +114 -0
- package/src/types/Storybook.ts +18 -0
- package/src/types/Styles.ts +6 -0
|
@@ -688,6 +688,12 @@ declare const CSS_2: {
|
|
|
688
688
|
readonly VARIANT: "tide-bg-surface-variant";
|
|
689
689
|
readonly WARNING: "tide-bg-surface-warning";
|
|
690
690
|
};
|
|
691
|
+
readonly TRANSPARENT: {
|
|
692
|
+
readonly ONE_HUNDRED: "tide-transparent-100";
|
|
693
|
+
readonly TWO_HUNDRED: "tide-transparent-200";
|
|
694
|
+
readonly THREE_HUNDRED: "tide-transparent-300";
|
|
695
|
+
readonly FOUR_HUNDRED: "tide-transparent-400";
|
|
696
|
+
};
|
|
691
697
|
readonly WARNING: "tide-bg-warning";
|
|
692
698
|
};
|
|
693
699
|
readonly BORDER: {
|