@versini/ui-styles 8.3.3 → 8.4.0
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/cli/tokens.ts +7 -0
- package/dist/index.js +6 -2
- package/package.json +2 -2
package/dist/cli/tokens.ts
CHANGED
|
@@ -13,6 +13,7 @@ export default {
|
|
|
13
13
|
*/
|
|
14
14
|
"action-dark": colors.slate[600],
|
|
15
15
|
"action-dark-hover": colors.slate[700],
|
|
16
|
+
"action-darker-hover": colors.slate[800],
|
|
16
17
|
"action-dark-active": colors.slate[800],
|
|
17
18
|
|
|
18
19
|
"action-light": accentColor,
|
|
@@ -40,6 +41,7 @@ export default {
|
|
|
40
41
|
"surface-darker": colors.slate[900],
|
|
41
42
|
"surface-dark": colors.slate[700],
|
|
42
43
|
"surface-medium": colors.slate[500],
|
|
44
|
+
"surface-medium-light": colors.slate[400],
|
|
43
45
|
"surface-light": colors.slate[300],
|
|
44
46
|
"surface-lighter": colors.slate[200],
|
|
45
47
|
"surface-lightest": colors.slate[100],
|
|
@@ -117,6 +119,9 @@ export default {
|
|
|
117
119
|
*/
|
|
118
120
|
"focus-dark": colors.slate[400],
|
|
119
121
|
"focus-light": colors.slate[400],
|
|
122
|
+
|
|
123
|
+
"focus-medium": colors.slate[500],
|
|
124
|
+
|
|
120
125
|
"focus-error-dark": colors.red[700],
|
|
121
126
|
"focus-error-light": errorColorLight,
|
|
122
127
|
|
|
@@ -140,5 +145,7 @@ export default {
|
|
|
140
145
|
|
|
141
146
|
"table-active-light": colors.red[700],
|
|
142
147
|
"table-active-dark": colors.red[500],
|
|
148
|
+
|
|
149
|
+
"table-medium": colors.gray[500],
|
|
143
150
|
},
|
|
144
151
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-styles v8.
|
|
2
|
+
@versini/ui-styles v8.4.0
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -131,6 +131,7 @@ const accentColor = colors.violet["300"];
|
|
|
131
131
|
* @example bg-action-dark, hover:bg-action-dark-hover
|
|
132
132
|
*/ "action-dark": colors.slate["600"],
|
|
133
133
|
"action-dark-hover": colors.slate["700"],
|
|
134
|
+
"action-darker-hover": colors.slate["800"],
|
|
134
135
|
"action-dark-active": colors.slate["800"],
|
|
135
136
|
"action-light": accentColor,
|
|
136
137
|
"action-light-hover": colors.violet["400"],
|
|
@@ -152,6 +153,7 @@ const accentColor = colors.violet["300"];
|
|
|
152
153
|
"surface-darker": colors.slate["900"],
|
|
153
154
|
"surface-dark": colors.slate["700"],
|
|
154
155
|
"surface-medium": colors.slate["500"],
|
|
156
|
+
"surface-medium-light": colors.slate["400"],
|
|
155
157
|
"surface-light": colors.slate["300"],
|
|
156
158
|
"surface-lighter": colors.slate["200"],
|
|
157
159
|
"surface-lightest": colors.slate["100"],
|
|
@@ -212,6 +214,7 @@ const accentColor = colors.violet["300"];
|
|
|
212
214
|
* @example outline-focus-dark, focus:ring-focus-dark
|
|
213
215
|
*/ "focus-dark": colors.slate["400"],
|
|
214
216
|
"focus-light": colors.slate["400"],
|
|
217
|
+
"focus-medium": colors.slate["500"],
|
|
215
218
|
"focus-error-dark": colors.red["700"],
|
|
216
219
|
"focus-error-light": errorColorLight,
|
|
217
220
|
/**
|
|
@@ -229,7 +232,8 @@ const accentColor = colors.violet["300"];
|
|
|
229
232
|
"table-light-odd": colors.gray["200"],
|
|
230
233
|
"table-light-even": colors.gray["300"],
|
|
231
234
|
"table-active-light": colors.red["700"],
|
|
232
|
-
"table-active-dark": colors.red["500"]
|
|
235
|
+
"table-active-dark": colors.red["500"],
|
|
236
|
+
"table-medium": colors.gray["500"]
|
|
233
237
|
}
|
|
234
238
|
});
|
|
235
239
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-styles",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"rollup-plugin-copy": "3.5.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "17220b771f97115901ce34188fe98b911b75cfdc"
|
|
53
53
|
}
|