@polastack/design-system 0.1.21 → 0.1.23
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/README.md +4 -3
- package/dist/index.d.ts +35 -1
- package/dist/index.js +615 -313
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/src/styles/base.css +6 -0
- package/src/styles/tokens.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polastack/design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Polastack Design System - UI components and design tokens for business applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
55
55
|
"@radix-ui/react-label": "^2.1.8",
|
|
56
56
|
"@radix-ui/react-popover": "^1.1.15",
|
|
57
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
57
58
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
58
59
|
"@radix-ui/react-select": "^2.2.6",
|
|
59
60
|
"@radix-ui/react-switch": "^1.2.6",
|
package/src/styles/base.css
CHANGED
|
@@ -44,6 +44,12 @@
|
|
|
44
44
|
50% { opacity: 0.15; }
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
@keyframes progress-indeterminate {
|
|
48
|
+
0% { transform: translateX(-100%); }
|
|
49
|
+
50% { transform: translateX(100%); }
|
|
50
|
+
100% { transform: translateX(200%); }
|
|
51
|
+
}
|
|
52
|
+
|
|
47
53
|
/* --------------------------------------------------------
|
|
48
54
|
Base Layer
|
|
49
55
|
-------------------------------------------------------- */
|
package/src/styles/tokens.css
CHANGED
|
@@ -232,4 +232,5 @@
|
|
|
232
232
|
--animate-slide-in-left: slide-in-left var(--duration-slow) var(--ease-out);
|
|
233
233
|
--animate-slide-out-left: slide-out-left var(--duration-slow) var(--ease-in);
|
|
234
234
|
--animate-spinner: spinner-fade 0.8s ease-in-out infinite;
|
|
235
|
+
--animate-progress-indeterminate: progress-indeterminate 2s ease-in-out infinite;
|
|
235
236
|
}
|