@polastack/design-system 0.1.12 → 0.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polastack/design-system",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Polastack Design System - UI components and design tokens for business applications",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -237,6 +237,7 @@
237
237
  --animate-slide-out-right: slide-out-right var(--duration-slow) var(--ease-in);
238
238
  --animate-slide-in-left: slide-in-left var(--duration-slow) var(--ease-out);
239
239
  --animate-slide-out-left: slide-out-left var(--duration-slow) var(--ease-in);
240
+ --animate-spinner: spinner-fade 0.8s ease-in-out infinite;
240
241
  }
241
242
 
242
243
  /* ============================================================
@@ -328,6 +329,11 @@
328
329
  to { transform: translateX(-100%); }
329
330
  }
330
331
 
332
+ @keyframes spinner-fade {
333
+ 0%, 100% { opacity: 1; }
334
+ 50% { opacity: 0.15; }
335
+ }
336
+
331
337
  /* ============================================================
332
338
  Base Styles
333
339
  ============================================================ */