tide-design-system 2.5.3 → 2.5.6
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/.storybook/main.ts +1 -0
- package/README.md +1 -0
- package/dist/css/variables.css +11 -2
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +50 -40
- package/dist/tide-design-system.esm.js +512 -469
- package/docs/upgrading.md +37 -0
- package/index.ts +2 -0
- package/package.json +1 -1
- package/src/assets/css/variables.css +11 -2
- package/src/components/TideButtonSave.vue +100 -0
- package/src/components/TideIcon.vue +8 -6
- package/src/stories/TideButtonSave.stories.ts +62 -0
package/.storybook/main.ts
CHANGED
|
@@ -30,6 +30,7 @@ const config: StorybookConfig = {
|
|
|
30
30
|
'../src/stories/TideButton.stories.ts',
|
|
31
31
|
'../src/stories/TideButtonIcon.stories.ts',
|
|
32
32
|
'../src/stories/TideButtonPagination.stories.ts',
|
|
33
|
+
'../src/stories/TideButtonSave.stories.ts',
|
|
33
34
|
'../src/stories/TideButtonSegmented.stories.ts',
|
|
34
35
|
'../src/stories/TideCard.stories.ts',
|
|
35
36
|
'../src/stories/TideCarousel.stories.ts',
|
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ TIDE (*T*rader *I*nteractive *D*esign and *E*ngineering) is a design system crea
|
|
|
18
18
|
- [Figma Token Cheatsheet](./docs/token-cheatsheet.md): Remember how to implement Figma tokens from code
|
|
19
19
|
- [Configuration](./docs/configuation.md): Globally set config values for your project for custom behaviors.
|
|
20
20
|
- [Layout Grid Utility](./docs/grid-layout.md): Lightweight CSS Grid for consistent page alignment.
|
|
21
|
+
- [Forms and inputs](./docs/forms.md): Guide to using Tide Forms and Input Components.
|
|
21
22
|
|
|
22
23
|
## Glossary
|
|
23
24
|
- **TIDE**: the design system itself - a series of conceptual, agreed-upon standards and guidelines meant to emphasize a consistent, scalable user experience across the suite of Trader Interactive websites
|
package/dist/css/variables.css
CHANGED
|
@@ -11,8 +11,17 @@
|
|
|
11
11
|
--tide-font-28: 1.75rem;
|
|
12
12
|
--tide-font-32: 2rem;
|
|
13
13
|
|
|
14
|
-
/*
|
|
15
|
-
--tide-
|
|
14
|
+
/* Motion */
|
|
15
|
+
--tide-duration-75: 75ms;
|
|
16
|
+
--tide-duration-150: 150ms;
|
|
17
|
+
--tide-duration-300: 300ms;
|
|
18
|
+
--tide-duration-600: 600ms;
|
|
19
|
+
|
|
20
|
+
--tide-easing-ease: ease;
|
|
21
|
+
--tide-easing-ease-out: ease-out;
|
|
22
|
+
--tide-easing-linear: linear;
|
|
23
|
+
|
|
24
|
+
--tide-animate: var(--tide-duration-300) var(--tide-easing-ease);
|
|
16
25
|
|
|
17
26
|
/* Spacing */
|
|
18
27
|
--tide-spacing-0: 0rem;
|