@mittwald/flow-design-tokens 0.1.0-alpha.422 → 0.1.0-alpha.424
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 +4 -0
- package/dist/variables.json +70 -0
- package/package.json +2 -2
package/dist/variables.css
CHANGED
|
@@ -435,6 +435,7 @@
|
|
|
435
435
|
--heading--font-weight: var(--font-weight--bold);
|
|
436
436
|
--illustrated-message--padding: var(--size-px--m);
|
|
437
437
|
--illustrated-message--spacing: var(--size-rem--m);
|
|
438
|
+
--image--border-style: var(--border-style--default);
|
|
438
439
|
--initials--font-weight: var(--font-weight--bold);
|
|
439
440
|
--label--font-size: var(--font-size-text--s);
|
|
440
441
|
--label--font-weight: var(--font-weight--bold);
|
|
@@ -890,6 +891,8 @@
|
|
|
890
891
|
--illustrated-message--danger-heading-color: var(--danger--color--1000);
|
|
891
892
|
--illustrated-message--dark-icon-color: var(--dark-plain-content-color);
|
|
892
893
|
--illustrated-message--light-icon-color: var(--light-plain-content-color);
|
|
894
|
+
--image--corner-radius: var(--corner-radius--default);
|
|
895
|
+
--image--border-width: var(--border-width--100);
|
|
893
896
|
--label--line-height: var(--line-height--m);
|
|
894
897
|
--label--color--default: var(--neutral--color--800);
|
|
895
898
|
--message--corner-radius: var(--corner-radius--default);
|
|
@@ -1134,6 +1137,7 @@
|
|
|
1134
1137
|
--illustrated-message--primary-heading-color: var(--heading--color);
|
|
1135
1138
|
--illustrated-message--dark-heading-color: var(--heading--color-dark);
|
|
1136
1139
|
--illustrated-message--light-heading-color: var(--heading--color-light);
|
|
1140
|
+
--image--border-color: var(--neutral-outline-border-color);
|
|
1137
1141
|
--label--color--disabled: var(--disabled-plain-content-color);
|
|
1138
1142
|
--text--color--disabled: var(--disabled-plain-content-color);
|
|
1139
1143
|
--text--blockquote-border-color: var(--info-outline-border-color);
|
package/dist/variables.json
CHANGED
|
@@ -13345,6 +13345,76 @@
|
|
|
13345
13345
|
]
|
|
13346
13346
|
}
|
|
13347
13347
|
},
|
|
13348
|
+
"image": {
|
|
13349
|
+
"corner-radius": {
|
|
13350
|
+
"value": "4px",
|
|
13351
|
+
"filePath": "src/content/image.yml",
|
|
13352
|
+
"isSource": true,
|
|
13353
|
+
"original": {
|
|
13354
|
+
"value": "{corner-radius.default}"
|
|
13355
|
+
},
|
|
13356
|
+
"name": "ImageCornerRadius",
|
|
13357
|
+
"attributes": {
|
|
13358
|
+
"category": "image",
|
|
13359
|
+
"type": "corner-radius"
|
|
13360
|
+
},
|
|
13361
|
+
"path": [
|
|
13362
|
+
"image",
|
|
13363
|
+
"corner-radius"
|
|
13364
|
+
]
|
|
13365
|
+
},
|
|
13366
|
+
"border-width": {
|
|
13367
|
+
"value": "1px",
|
|
13368
|
+
"filePath": "src/content/image.yml",
|
|
13369
|
+
"isSource": true,
|
|
13370
|
+
"original": {
|
|
13371
|
+
"value": "{border-width.100}"
|
|
13372
|
+
},
|
|
13373
|
+
"name": "ImageBorderWidth",
|
|
13374
|
+
"attributes": {
|
|
13375
|
+
"category": "image",
|
|
13376
|
+
"type": "border-width"
|
|
13377
|
+
},
|
|
13378
|
+
"path": [
|
|
13379
|
+
"image",
|
|
13380
|
+
"border-width"
|
|
13381
|
+
]
|
|
13382
|
+
},
|
|
13383
|
+
"border-style": {
|
|
13384
|
+
"value": "solid",
|
|
13385
|
+
"filePath": "src/content/image.yml",
|
|
13386
|
+
"isSource": true,
|
|
13387
|
+
"original": {
|
|
13388
|
+
"value": "{border-style.default}"
|
|
13389
|
+
},
|
|
13390
|
+
"name": "ImageBorderStyle",
|
|
13391
|
+
"attributes": {
|
|
13392
|
+
"category": "image",
|
|
13393
|
+
"type": "border-style"
|
|
13394
|
+
},
|
|
13395
|
+
"path": [
|
|
13396
|
+
"image",
|
|
13397
|
+
"border-style"
|
|
13398
|
+
]
|
|
13399
|
+
},
|
|
13400
|
+
"border-color": {
|
|
13401
|
+
"value": "#909090",
|
|
13402
|
+
"filePath": "src/content/image.yml",
|
|
13403
|
+
"isSource": true,
|
|
13404
|
+
"original": {
|
|
13405
|
+
"value": "{neutral-outline-border-color}"
|
|
13406
|
+
},
|
|
13407
|
+
"name": "ImageBorderColor",
|
|
13408
|
+
"attributes": {
|
|
13409
|
+
"category": "image",
|
|
13410
|
+
"type": "border-color"
|
|
13411
|
+
},
|
|
13412
|
+
"path": [
|
|
13413
|
+
"image",
|
|
13414
|
+
"border-color"
|
|
13415
|
+
]
|
|
13416
|
+
}
|
|
13417
|
+
},
|
|
13348
13418
|
"initials": {
|
|
13349
13419
|
"font-weight": {
|
|
13350
13420
|
"value": "bold",
|
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.424",
|
|
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",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"prettier": "^3.4.1",
|
|
23
23
|
"style-dictionary": "^4.2.0"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "1a038d391d2a1c3e6de761c7ce2292eaefc18f1a"
|
|
26
26
|
}
|