@versini/ui-styles 8.1.2 → 8.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 +12 -23
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
@versini/ui-styles v8.
|
|
2
|
+
@versini/ui-styles v8.2.0
|
|
3
3
|
© 2025 gizmette.com
|
|
4
4
|
*/
|
|
5
|
-
try {
|
|
6
|
-
if (!window.__VERSINI_UI_STYLES__) {
|
|
7
|
-
window.__VERSINI_UI_STYLES__ = {
|
|
8
|
-
version: "8.1.2",
|
|
9
|
-
buildTime: "12/21/2025 07:20 PM EST",
|
|
10
|
-
homepage: "https://www.npmjs.com/package/@versini/ui-styles",
|
|
11
|
-
license: "MIT",
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
} catch (error) {
|
|
15
|
-
// nothing to declare officer
|
|
16
|
-
}
|
|
17
5
|
|
|
18
6
|
import container_queries from "@tailwindcss/container-queries";
|
|
19
7
|
import typography from "@tailwindcss/typography";
|
|
@@ -28,7 +16,7 @@ import colors from "tailwindcss/colors";
|
|
|
28
16
|
;// CONCATENATED MODULE: external "tailwindcss/plugin"
|
|
29
17
|
|
|
30
18
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/components/spinner.ts
|
|
31
|
-
/*
|
|
19
|
+
/* export default */ const spinner = ({
|
|
32
20
|
"@keyframes blink": {
|
|
33
21
|
"50%": {
|
|
34
22
|
fill: "transparent"
|
|
@@ -46,7 +34,7 @@ import colors from "tailwindcss/colors";
|
|
|
46
34
|
});
|
|
47
35
|
|
|
48
36
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/components/textArea.ts
|
|
49
|
-
/*
|
|
37
|
+
/* export default */ const textArea = ({
|
|
50
38
|
'.av-text-area-wrapper label[aria-hidden="true"]': {
|
|
51
39
|
/* move the label inline */ transformOrigin: "top left",
|
|
52
40
|
transition: "var(--av-text-area-wrapper-transition, all 0.2s ease-out)"
|
|
@@ -68,7 +56,7 @@ import colors from "tailwindcss/colors";
|
|
|
68
56
|
});
|
|
69
57
|
|
|
70
58
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/components/textInput.ts
|
|
71
|
-
/*
|
|
59
|
+
/* export default */ const textInput = ({
|
|
72
60
|
'.av-text-input-wrapper label[aria-hidden="true"]': {
|
|
73
61
|
/* move the label inline */ transform: "translate(12px, 0) scale(1)",
|
|
74
62
|
transformOrigin: "top left",
|
|
@@ -85,7 +73,7 @@ import colors from "tailwindcss/colors";
|
|
|
85
73
|
});
|
|
86
74
|
|
|
87
75
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/components/tooltip.ts
|
|
88
|
-
/*
|
|
76
|
+
/* export default */ const tooltip = ({
|
|
89
77
|
"@keyframes av-tooltip-fade-in": {
|
|
90
78
|
from: {
|
|
91
79
|
opacity: "0"
|
|
@@ -143,7 +131,7 @@ import colors from "tailwindcss/colors";
|
|
|
143
131
|
|
|
144
132
|
const errorColorLight = "#ff3f3f";
|
|
145
133
|
const accentColor = colors.violet["300"];
|
|
146
|
-
/*
|
|
134
|
+
/* export default */ const tokens = ({
|
|
147
135
|
colors: {
|
|
148
136
|
/**
|
|
149
137
|
* Action tokens.
|
|
@@ -266,7 +254,7 @@ const dynamicColors = ()=>{
|
|
|
266
254
|
});
|
|
267
255
|
return result;
|
|
268
256
|
};
|
|
269
|
-
/*
|
|
257
|
+
/* export default */ const tailwindcss_colors = (dynamicColors());
|
|
270
258
|
|
|
271
259
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/typography.ts
|
|
272
260
|
|
|
@@ -389,12 +377,12 @@ const typography_typography = ({ theme })=>({
|
|
|
389
377
|
}
|
|
390
378
|
}
|
|
391
379
|
});
|
|
392
|
-
/*
|
|
380
|
+
/* export default */ const tailwindcss_typography = (typography_typography);
|
|
393
381
|
|
|
394
382
|
;// CONCATENATED MODULE: ./src/plugins/tailwindcss/theme.ts
|
|
395
383
|
|
|
396
384
|
|
|
397
|
-
/*
|
|
385
|
+
/* export default */ const tailwindcss_theme = ({
|
|
398
386
|
theme: {
|
|
399
387
|
extend: {
|
|
400
388
|
colors: tailwindcss_colors,
|
|
@@ -435,7 +423,7 @@ const typography_typography = ({ theme })=>({
|
|
|
435
423
|
* the custom typography. The custom typography is passed as a second
|
|
436
424
|
* parameter to the plugin function, which is then used to extend the
|
|
437
425
|
* default TailwindCSS theme.
|
|
438
|
-
*/ /* v8 ignore
|
|
426
|
+
*/ /* v8 ignore start */ const customPlugins = [
|
|
439
427
|
typography,
|
|
440
428
|
container_queries,
|
|
441
429
|
tailwindcss_plugin(function({ addComponents, addVariant }) {
|
|
@@ -447,7 +435,7 @@ const typography_typography = ({ theme })=>({
|
|
|
447
435
|
addVariant("last-bubble-left", ".av-bubble-left:not(:has(+ .av-bubble-left)) &");
|
|
448
436
|
}, tailwindcss_theme)
|
|
449
437
|
];
|
|
450
|
-
/**
|
|
438
|
+
/* v8 ignore stop */ /**
|
|
451
439
|
* The plugin "merge" function is used to merge the custom configuration with
|
|
452
440
|
* the default and user TailwindCSS configuration.
|
|
453
441
|
* It's to be used in the "tailwind.config.js" configuration file.
|
|
@@ -475,6 +463,7 @@ const typography_typography = ({ theme })=>({
|
|
|
475
463
|
};
|
|
476
464
|
|
|
477
465
|
;// CONCATENATED MODULE: ./src/plugins/index.ts
|
|
466
|
+
// force new release
|
|
478
467
|
|
|
479
468
|
|
|
480
469
|
export { twPlugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-styles",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.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": "b2ee2e328ecadfbedcb26d14afa896a30f0ab54b"
|
|
53
53
|
}
|