@mittwald/flow-design-tokens 0.1.0-alpha.43 → 0.1.0-alpha.53
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/variables.css +16 -1
- package/package.json +3 -3
package/dist/variables.css
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 25 Mar 2024 09:23:45 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root {
|
|
7
|
+
--transition--duration--slow: 300ms;
|
|
7
8
|
--transition--duration--default: 200ms;
|
|
8
9
|
--size--none: 0rem;
|
|
9
10
|
--size-px--xxl: 64px;
|
|
@@ -105,6 +106,10 @@
|
|
|
105
106
|
--switch--track-width: 2.75rem;
|
|
106
107
|
--switch--track-height: 1.5rem;
|
|
107
108
|
--navigation-item--icon-to-text-spacing: 0.5em;
|
|
109
|
+
--modal--size--l: 1050px;
|
|
110
|
+
--modal--size--m: 900px;
|
|
111
|
+
--modal--size--s: 660px;
|
|
112
|
+
--modal--overlay-background-color: rgba(0, 0, 0, 0.3);
|
|
108
113
|
--icon--size--l: 4rem;
|
|
109
114
|
--icon--size--m: 1.5rem;
|
|
110
115
|
--icon--size--s: 1rem;
|
|
@@ -225,6 +230,10 @@
|
|
|
225
230
|
--navigation-item--padding-x: var(--size-px--s);
|
|
226
231
|
--navigation-item--font-weight--current: var(--font-weight--bold);
|
|
227
232
|
--navigation--item-to-item-spacing: var(--size-px--s);
|
|
233
|
+
--modal--button-group-border-style: var(--border-style--default);
|
|
234
|
+
--modal--button-group-padding: var(--size-rem--l);
|
|
235
|
+
--modal--padding-bottom: var(--size-px--xl);
|
|
236
|
+
--modal--padding: var(--size-px--l);
|
|
228
237
|
--link--font-weight: var(--font-weight--bold);
|
|
229
238
|
--link--font-size: var(--font-size--s);
|
|
230
239
|
--layout-card--padding: var(--size-px--l);
|
|
@@ -275,6 +284,7 @@
|
|
|
275
284
|
--button--padding: var(--size-px--s);
|
|
276
285
|
--button--padding-squished-y: var(--size-px--s);
|
|
277
286
|
--button--padding-squished-x: var(--size-px--m);
|
|
287
|
+
--button-group--button-to-button-spacing: var(--size-rem--m);
|
|
278
288
|
--avatar--size--l: var(--size-rem--xxl);
|
|
279
289
|
--avatar--size--s: var(--size-rem--xl);
|
|
280
290
|
--avatar--size--xs: var(--size-rem--l);
|
|
@@ -415,6 +425,11 @@
|
|
|
415
425
|
--navigation-item--color--current: var(--info--color--800);
|
|
416
426
|
--navigation-item--color--default: var(--neutral--color--1000);
|
|
417
427
|
--navigation-item--corner-radius: var(--corner-radius--default);
|
|
428
|
+
--modal--button-group-border-top-width: var(--border-width--100);
|
|
429
|
+
--modal--button-group-border-color: var(--neutral--color--400);
|
|
430
|
+
--modal--button-group-background-color: var(--neutral--color--300);
|
|
431
|
+
--modal--background-color: var(--neutral--color--100);
|
|
432
|
+
--modal--corner-radius: var(--corner-radius--default);
|
|
418
433
|
--link--line-height: var(--line-height--m);
|
|
419
434
|
--layout-card--box-shadow: var(--shadow--content);
|
|
420
435
|
--layout-card--corner-radius: var(--corner-radius--default);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-design-tokens",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.53",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The design tokens used in Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://mittwald.github.io/flow",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/js-yaml": "^4.0.9",
|
|
19
19
|
"js-yaml": "^4.1.0",
|
|
20
|
-
"nx": "^18.1.
|
|
20
|
+
"nx": "^18.1.2",
|
|
21
21
|
"style-dictionary": "^3.9.2"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "ef8dc4182179aadf3a2462bc80164ab5be59b4bc"
|
|
24
24
|
}
|