@uncinq/component-tokens 1.1.7 → 1.1.8
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.
|
@@ -18,7 +18,18 @@
|
|
|
18
18
|
--item-color-border: var(--color-border);
|
|
19
19
|
--item-color-text: var(--color-text-muted);
|
|
20
20
|
--item-gap: var(--spacing-sm);
|
|
21
|
+
--item-media-border-radius: var(--item-border-radius);
|
|
22
|
+
--item-media-border-style: var(--item-border-style);
|
|
23
|
+
--item-media-border-width: var(--item-border-width);
|
|
21
24
|
--item-media-color-background: var(--media-color-background);
|
|
25
|
+
--item-media-icon-border-radius: var(--item-media-border-radius);
|
|
26
|
+
--item-media-icon-border-style: var(--item-media-border-style);
|
|
27
|
+
--item-media-icon-border-width: var(--item-media-border-width);
|
|
28
|
+
--item-media-icon-color: var(--item-title-color);
|
|
29
|
+
--item-media-icon-color-background: var(--item-media-color-background);
|
|
30
|
+
--item-media-icon-margin-inline: var(--item-padding-inline);
|
|
31
|
+
--item-media-icon-margin-block: var(--item-padding-block);
|
|
32
|
+
--item-media-icon-size: var(--font-size-fluid-md);
|
|
22
33
|
--item-media-order: -2;
|
|
23
34
|
--item-media-ratio: var(--media-ratio);
|
|
24
35
|
--item-metas-border-end: 0;
|
package/package.json
CHANGED
|
@@ -67,12 +67,66 @@
|
|
|
67
67
|
"$type": "dimension"
|
|
68
68
|
},
|
|
69
69
|
"media": {
|
|
70
|
+
"border": {
|
|
71
|
+
"radius": {
|
|
72
|
+
"$value": "{item.border.radius}",
|
|
73
|
+
"$type": "dimension"
|
|
74
|
+
},
|
|
75
|
+
"style": {
|
|
76
|
+
"$value": "{item.border.style}",
|
|
77
|
+
"$type": "strokeStyle"
|
|
78
|
+
},
|
|
79
|
+
"width": {
|
|
80
|
+
"$value": "{item.border.width}",
|
|
81
|
+
"$type": "dimension"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
70
84
|
"color": {
|
|
71
85
|
"background": {
|
|
72
86
|
"$value": "{media.color.background}",
|
|
73
87
|
"$type": "color"
|
|
74
88
|
}
|
|
75
89
|
},
|
|
90
|
+
"icon": {
|
|
91
|
+
"border": {
|
|
92
|
+
"radius": {
|
|
93
|
+
"$value": "{item.media.border.radius}",
|
|
94
|
+
"$type": "dimension"
|
|
95
|
+
},
|
|
96
|
+
"style": {
|
|
97
|
+
"$value": "{item.media.border.style}",
|
|
98
|
+
"$type": "strokeStyle"
|
|
99
|
+
},
|
|
100
|
+
"width": {
|
|
101
|
+
"$value": "{item.media.border.width}",
|
|
102
|
+
"$type": "dimension"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"color": {
|
|
106
|
+
"default": {
|
|
107
|
+
"$value": "{item.title.color}",
|
|
108
|
+
"$type": "color"
|
|
109
|
+
},
|
|
110
|
+
"background": {
|
|
111
|
+
"$value": "{item.media.color.background}",
|
|
112
|
+
"$type": "color"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"margin": {
|
|
116
|
+
"inline": {
|
|
117
|
+
"$value": "{item.padding.inline}",
|
|
118
|
+
"$type": "dimension"
|
|
119
|
+
},
|
|
120
|
+
"block": {
|
|
121
|
+
"$value": "{item.padding.block}",
|
|
122
|
+
"$type": "dimension"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"size": {
|
|
126
|
+
"$value": "{fontSize.fluid.md}",
|
|
127
|
+
"$type": "dimension"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
76
130
|
"order": {
|
|
77
131
|
"$value": -2,
|
|
78
132
|
"$type": "number"
|