@versini/ui-styles 9.1.2 → 9.2.1
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/index.js +19 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-styles v9.1
|
|
2
|
+
@versini/ui-styles v9.2.1
|
|
3
3
|
© 2026 gizmette.com
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -12,6 +12,20 @@ import colors from "tailwindcss/colors";
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
+
/* export default */ const menu = ({
|
|
16
|
+
"@keyframes av-backdrop-fade-in": {
|
|
17
|
+
from: {
|
|
18
|
+
backgroundColor: "transparent"
|
|
19
|
+
},
|
|
20
|
+
to: {
|
|
21
|
+
backgroundColor: "rgb(0 0 0 / 0.4)"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
".av-backdrop-animate::backdrop": {
|
|
25
|
+
animation: "av-backdrop-fade-in 200ms ease-out forwards"
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
|
|
15
29
|
/* export default */ const spinner = ({
|
|
16
30
|
/**
|
|
17
31
|
* Blink animation for dots spinner.
|
|
@@ -82,6 +96,7 @@ import colors from "tailwindcss/colors";
|
|
|
82
96
|
/**
|
|
83
97
|
* This file was automatically generated.
|
|
84
98
|
* Please do not edit manually.
|
|
99
|
+
* Last update: 2026-03-09T19:27:32.547Z
|
|
85
100
|
*
|
|
86
101
|
* To update this file, run `npm run build:list`.
|
|
87
102
|
*
|
|
@@ -102,6 +117,7 @@ import colors from "tailwindcss/colors";
|
|
|
102
117
|
"@versini/ui-main",
|
|
103
118
|
"@versini/ui-menu",
|
|
104
119
|
"@versini/ui-pill",
|
|
120
|
+
"@versini/ui-responsive-text",
|
|
105
121
|
"@versini/ui-spinner",
|
|
106
122
|
"@versini/ui-styles",
|
|
107
123
|
"@versini/ui-system",
|
|
@@ -268,6 +284,7 @@ const dynamicColors = ()=>{
|
|
|
268
284
|
|
|
269
285
|
|
|
270
286
|
|
|
287
|
+
|
|
271
288
|
/**
|
|
272
289
|
* Adding custom paths to the TailwindCSS build. This is necessary
|
|
273
290
|
* to include the custom components CSS in the final build. It looks
|
|
@@ -294,6 +311,7 @@ const dynamicColors = ()=>{
|
|
|
294
311
|
typographyPlugin,
|
|
295
312
|
container_queries,
|
|
296
313
|
tailwindcss_plugin(function({ addComponents, addVariant }) {
|
|
314
|
+
addComponents(menu);
|
|
297
315
|
addComponents(textInput);
|
|
298
316
|
addComponents(textArea);
|
|
299
317
|
addComponents(spinner);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-styles",
|
|
3
|
-
"version": "9.1
|
|
3
|
+
"version": "9.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"rollup-plugin-copy": "3.5.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "16a8cc24a5f1fd3b8531d026b7efcf5f304b2046"
|
|
54
54
|
}
|