@versini/ui-styles 8.3.1 → 8.3.2

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.
Files changed (2) hide show
  1. package/dist/index.js +17 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- @versini/ui-styles v8.3.1
2
+ @versini/ui-styles v8.3.2
3
3
  © 2026 gizmette.com
4
4
  */
5
5
 
@@ -13,7 +13,22 @@ import colors from "tailwindcss/colors";
13
13
 
14
14
 
15
15
  /* export default */ const spinner = ({
16
- "@keyframes blink": {
16
+ /**
17
+ * Spin animation for circular spinner.
18
+ * This ensures the animation is always available even if Tailwind's
19
+ * default keyframes are not generated (e.g., due to CSS purging or
20
+ * class scanning issues in consuming apps).
21
+ */ "@keyframes spin": {
22
+ to: {
23
+ transform: "rotate(360deg)"
24
+ }
25
+ },
26
+ ".animate-spin": {
27
+ animation: "spin 1s linear infinite"
28
+ },
29
+ /**
30
+ * Blink animation for dots spinner.
31
+ */ "@keyframes blink": {
17
32
  "50%": {
18
33
  fill: "transparent"
19
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-styles",
3
- "version": "8.3.1",
3
+ "version": "8.3.2",
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": "7c76dd8543839e693f0ad12980f8de01ad2ab123"
52
+ "gitHead": "405b6e7a94a3a17e71f7e49c2456bca4c127832c"
53
53
  }