@uncinq/component-tokens 1.1.6 → 1.1.7
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.
|
@@ -13,7 +13,18 @@
|
|
|
13
13
|
--card-color-text: var(--item-color-text);
|
|
14
14
|
--card-color-text-muted: var(--item-color-text-muted);
|
|
15
15
|
--card-gap: var(--item-gap);
|
|
16
|
+
--card-media-border-radius: var(--item-border-radius);
|
|
17
|
+
--card-media-border-style: var(--item-border-style);
|
|
18
|
+
--card-media-border-width: var(--item-border-width);
|
|
16
19
|
--card-media-color-background: var(--item-media-color-background);
|
|
20
|
+
--card-media-icon-border-radius: var(--item-media-border-radius);
|
|
21
|
+
--card-media-icon-border-style: var(--item-media-border-style);
|
|
22
|
+
--card-media-icon-border-width: var(--item-media-border-width);
|
|
23
|
+
--card-media-icon-color: var(--item-title-color);
|
|
24
|
+
--card-media-icon-color-background: var(--item-media-color-background);
|
|
25
|
+
--card-media-icon-margin-inline: var(--item-padding-inline);
|
|
26
|
+
--card-media-icon-margin-block: var(--item-padding-block);
|
|
27
|
+
--card-media-icon-size: var(--font-size-fluid-md);
|
|
17
28
|
--card-media-order: var(--item-media-order);
|
|
18
29
|
--card-media-ratio: var(--item-media-ratio);
|
|
19
30
|
--card-order: var(--item-order);
|
package/package.json
CHANGED
|
@@ -39,12 +39,66 @@
|
|
|
39
39
|
"$type": "dimension"
|
|
40
40
|
},
|
|
41
41
|
"media": {
|
|
42
|
+
"border": {
|
|
43
|
+
"radius": {
|
|
44
|
+
"$value": "{item.border.radius}",
|
|
45
|
+
"$type": "dimension"
|
|
46
|
+
},
|
|
47
|
+
"style": {
|
|
48
|
+
"$value": "{item.border.style}",
|
|
49
|
+
"$type": "strokeStyle"
|
|
50
|
+
},
|
|
51
|
+
"width": {
|
|
52
|
+
"$value": "{item.border.width}",
|
|
53
|
+
"$type": "dimension"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
42
56
|
"color": {
|
|
43
57
|
"background": {
|
|
44
58
|
"$value": "{item.media.color.background}",
|
|
45
59
|
"$type": "color"
|
|
46
60
|
}
|
|
47
61
|
},
|
|
62
|
+
"icon": {
|
|
63
|
+
"border": {
|
|
64
|
+
"radius": {
|
|
65
|
+
"$value": "{item.media.border.radius}",
|
|
66
|
+
"$type": "dimension"
|
|
67
|
+
},
|
|
68
|
+
"style": {
|
|
69
|
+
"$value": "{item.media.border.style}",
|
|
70
|
+
"$type": "strokeStyle"
|
|
71
|
+
},
|
|
72
|
+
"width": {
|
|
73
|
+
"$value": "{item.media.border.width}",
|
|
74
|
+
"$type": "dimension"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"color": {
|
|
78
|
+
"default": {
|
|
79
|
+
"$value": "{item.title.color}",
|
|
80
|
+
"$type": "color"
|
|
81
|
+
},
|
|
82
|
+
"background": {
|
|
83
|
+
"$value": "{item.media.color.background}",
|
|
84
|
+
"$type": "color"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"margin": {
|
|
88
|
+
"inline": {
|
|
89
|
+
"$value": "{item.padding.inline}",
|
|
90
|
+
"$type": "dimension"
|
|
91
|
+
},
|
|
92
|
+
"block": {
|
|
93
|
+
"$value": "{item.padding.block}",
|
|
94
|
+
"$type": "dimension"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"size": {
|
|
98
|
+
"$value": "{fontSize.fluid.md}",
|
|
99
|
+
"$type": "dimension"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
48
102
|
"order": {
|
|
49
103
|
"$value": "{item.media.order}",
|
|
50
104
|
"$type": "number"
|