@versini/ui-styles 8.2.1 → 8.3.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 -1
- package/dist/index.js +8 -5
- package/package.json +2 -2
package/dist/cli/tokens.ts
CHANGED
|
@@ -125,13 +125,19 @@ export default {
|
|
|
125
125
|
* @example bg-table-dark-odd
|
|
126
126
|
*/
|
|
127
127
|
"table-head-dark": colors.gray[950],
|
|
128
|
+
"table-head-light": colors.gray[100],
|
|
129
|
+
|
|
128
130
|
"table-dark": colors.gray[700],
|
|
131
|
+
"table-dark-hover": colors.slate[700],
|
|
129
132
|
"table-dark-odd": colors.gray[800],
|
|
130
133
|
"table-dark-even": colors.gray[900],
|
|
131
134
|
|
|
132
|
-
"table-head-light": colors.gray[100],
|
|
133
135
|
"table-light": colors.gray[100],
|
|
136
|
+
"table-light-hover": colors.slate[300],
|
|
134
137
|
"table-light-odd": colors.gray[200],
|
|
135
138
|
"table-light-even": colors.gray[300],
|
|
139
|
+
|
|
140
|
+
"table-active-light": colors.red[700],
|
|
141
|
+
"table-active-dark": colors.red[500],
|
|
136
142
|
},
|
|
137
143
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-styles v8.
|
|
3
|
-
©
|
|
2
|
+
@versini/ui-styles v8.3.0
|
|
3
|
+
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import container_queries from "@tailwindcss/container-queries";
|
|
@@ -106,7 +106,6 @@ import colors from "tailwindcss/colors";
|
|
|
106
106
|
"@versini/ui-icons",
|
|
107
107
|
"@versini/ui-liveregion",
|
|
108
108
|
"@versini/ui-main",
|
|
109
|
-
"@versini/ui-modal",
|
|
110
109
|
"@versini/ui-panel",
|
|
111
110
|
"@versini/ui-pill",
|
|
112
111
|
"@versini/ui-spinner",
|
|
@@ -227,13 +226,17 @@ const accentColor = colors.violet["300"];
|
|
|
227
226
|
* To be used for table row and header backgrounds.
|
|
228
227
|
* @example bg-table-dark-odd
|
|
229
228
|
*/ "table-head-dark": colors.gray["950"],
|
|
229
|
+
"table-head-light": colors.gray["100"],
|
|
230
230
|
"table-dark": colors.gray["700"],
|
|
231
|
+
"table-dark-hover": colors.slate["700"],
|
|
231
232
|
"table-dark-odd": colors.gray["800"],
|
|
232
233
|
"table-dark-even": colors.gray["900"],
|
|
233
|
-
"table-head-light": colors.gray["100"],
|
|
234
234
|
"table-light": colors.gray["100"],
|
|
235
|
+
"table-light-hover": colors.slate["300"],
|
|
235
236
|
"table-light-odd": colors.gray["200"],
|
|
236
|
-
"table-light-even": colors.gray["300"]
|
|
237
|
+
"table-light-even": colors.gray["300"],
|
|
238
|
+
"table-active-light": colors.red["700"],
|
|
239
|
+
"table-active-dark": colors.red["500"]
|
|
237
240
|
}
|
|
238
241
|
});
|
|
239
242
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-styles",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.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": "bd6eff3f29dfa61a45b389362fff5d0e65080828"
|
|
53
53
|
}
|