@mittwald/flow-design-tokens 0.2.0-alpha.27 → 0.2.0-alpha.29
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 +2 -1
- package/dist/variables.json +31 -12
- package/package.json +3 -3
package/dist/variables.css
CHANGED
|
@@ -448,6 +448,7 @@
|
|
|
448
448
|
--message--spacing-x: var(--size-rem--m);
|
|
449
449
|
--message--background-color-responder: var(--color--gray--400);
|
|
450
450
|
--message--background-color-sender: var(--color--hosting-blue--200);
|
|
451
|
+
--message-thread--spacing: var(--size-rem--l);
|
|
451
452
|
--text--blockquote-border-style: var(--border-style--default);
|
|
452
453
|
--text--blockquote-padding: var(--size-rem--s);
|
|
453
454
|
--text--list-padding: var(--size-rem--l);
|
|
@@ -497,7 +498,7 @@
|
|
|
497
498
|
--header-navigation--spacing: var(--size-rem--m);
|
|
498
499
|
--header-navigation--corner-radius-round: var(--corner-radius--round);
|
|
499
500
|
--header-navigation--font-weight-current: var(--font-weight--bold);
|
|
500
|
-
--link--
|
|
501
|
+
--link--icon-height: calc(var(--font-size-text--m) * 1.25);
|
|
501
502
|
--link--font-weight: var(--font-weight--bold);
|
|
502
503
|
--link--spacing: var(--size-rem--xs);
|
|
503
504
|
--link--color-dark--default: var(--dark--color--800);
|
package/dist/variables.json
CHANGED
|
@@ -13650,6 +13650,25 @@
|
|
|
13650
13650
|
]
|
|
13651
13651
|
}
|
|
13652
13652
|
},
|
|
13653
|
+
"message-thread": {
|
|
13654
|
+
"spacing": {
|
|
13655
|
+
"value": "1.5rem",
|
|
13656
|
+
"filePath": "src/content/messageThread.yml",
|
|
13657
|
+
"isSource": true,
|
|
13658
|
+
"original": {
|
|
13659
|
+
"value": "{size-rem.l}"
|
|
13660
|
+
},
|
|
13661
|
+
"name": "MessageThreadSpacing",
|
|
13662
|
+
"attributes": {
|
|
13663
|
+
"category": "message-thread",
|
|
13664
|
+
"type": "spacing"
|
|
13665
|
+
},
|
|
13666
|
+
"path": [
|
|
13667
|
+
"message-thread",
|
|
13668
|
+
"spacing"
|
|
13669
|
+
]
|
|
13670
|
+
}
|
|
13671
|
+
},
|
|
13653
13672
|
"text": {
|
|
13654
13673
|
"color": {
|
|
13655
13674
|
"default": {
|
|
@@ -16251,38 +16270,38 @@
|
|
|
16251
16270
|
}
|
|
16252
16271
|
},
|
|
16253
16272
|
"link": {
|
|
16254
|
-
"
|
|
16255
|
-
"value": "
|
|
16273
|
+
"line-height": {
|
|
16274
|
+
"value": "calc(1rem * 1.5)",
|
|
16256
16275
|
"filePath": "src/navigation/link.yml",
|
|
16257
16276
|
"isSource": true,
|
|
16258
16277
|
"original": {
|
|
16259
|
-
"value": "{
|
|
16278
|
+
"value": "{line-height.m}"
|
|
16260
16279
|
},
|
|
16261
|
-
"name": "
|
|
16280
|
+
"name": "LinkLineHeight",
|
|
16262
16281
|
"attributes": {
|
|
16263
16282
|
"category": "link",
|
|
16264
|
-
"type": "
|
|
16283
|
+
"type": "line-height"
|
|
16265
16284
|
},
|
|
16266
16285
|
"path": [
|
|
16267
16286
|
"link",
|
|
16268
|
-
"
|
|
16287
|
+
"line-height"
|
|
16269
16288
|
]
|
|
16270
16289
|
},
|
|
16271
|
-
"
|
|
16272
|
-
"value": "calc(1rem * 1.
|
|
16290
|
+
"icon-height": {
|
|
16291
|
+
"value": "calc(1rem * 1.25)",
|
|
16273
16292
|
"filePath": "src/navigation/link.yml",
|
|
16274
16293
|
"isSource": true,
|
|
16275
16294
|
"original": {
|
|
16276
|
-
"value": "{
|
|
16295
|
+
"value": "calc({font-size-text.m} * 1.25)"
|
|
16277
16296
|
},
|
|
16278
|
-
"name": "
|
|
16297
|
+
"name": "LinkIconHeight",
|
|
16279
16298
|
"attributes": {
|
|
16280
16299
|
"category": "link",
|
|
16281
|
-
"type": "
|
|
16300
|
+
"type": "icon-height"
|
|
16282
16301
|
},
|
|
16283
16302
|
"path": [
|
|
16284
16303
|
"link",
|
|
16285
|
-
"
|
|
16304
|
+
"icon-height"
|
|
16286
16305
|
]
|
|
16287
16306
|
},
|
|
16288
16307
|
"font-weight": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/flow-design-tokens",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The design tokens used in Flow, mittwald’s design system",
|
|
6
6
|
"homepage": "https://github.com/mittwald/flow/tree/main/packages/design-tokens",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"dist"
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "
|
|
16
|
+
"build": "style-dictionary build -c style-dictionary.config.js",
|
|
17
17
|
"clean": "rimraf dist"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"rimraf": "^6.0.1",
|
|
25
25
|
"style-dictionary": "^4.3.2"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "af68c2778a1dfae94ecba094c0a9f8f5962d90dd"
|
|
28
28
|
}
|