@versini/ui-styles 9.1.1 → 9.2.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/index.js +17 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-styles v9.
|
|
2
|
+
@versini/ui-styles v9.2.0
|
|
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.
|
|
@@ -268,6 +282,7 @@ const dynamicColors = ()=>{
|
|
|
268
282
|
|
|
269
283
|
|
|
270
284
|
|
|
285
|
+
|
|
271
286
|
/**
|
|
272
287
|
* Adding custom paths to the TailwindCSS build. This is necessary
|
|
273
288
|
* to include the custom components CSS in the final build. It looks
|
|
@@ -294,6 +309,7 @@ const dynamicColors = ()=>{
|
|
|
294
309
|
typographyPlugin,
|
|
295
310
|
container_queries,
|
|
296
311
|
tailwindcss_plugin(function({ addComponents, addVariant }) {
|
|
312
|
+
addComponents(menu);
|
|
297
313
|
addComponents(textInput);
|
|
298
314
|
addComponents(textArea);
|
|
299
315
|
addComponents(spinner);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-styles",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"@tailwindcss/container-queries": "0.1.1",
|
|
45
45
|
"@versini/ui-typography": "2.1.4",
|
|
46
46
|
"culori": "4.0.2",
|
|
47
|
-
"fs-extra": "11.3.
|
|
47
|
+
"fs-extra": "11.3.4",
|
|
48
48
|
"tailwindcss": "4.2.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"rollup-plugin-copy": "3.5.0"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "73c5790eea7f907f78dc530236ecd5984f0b6551"
|
|
54
54
|
}
|