velocis 1.0.0 → 1.0.1
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/tailwind-v4.css +37 -0
- package/package.json +14 -8
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Tailwind CSS v4 theme tokens for Velocis.
|
|
3
|
+
* Import after velocis/styles.css in your global CSS:
|
|
4
|
+
*
|
|
5
|
+
* @import "tailwindcss";
|
|
6
|
+
* @import "velocis/styles.css";
|
|
7
|
+
* @import "velocis/tailwind-v4.css";
|
|
8
|
+
* @source "../node_modules/velocis/dist";
|
|
9
|
+
*/
|
|
10
|
+
@theme inline {
|
|
11
|
+
--color-velocis-primary: var(--velocis-color-primary);
|
|
12
|
+
--color-velocis-secondary: var(--velocis-color-secondary);
|
|
13
|
+
--color-velocis-accent: var(--velocis-color-accent);
|
|
14
|
+
--color-velocis-background: var(--velocis-color-background);
|
|
15
|
+
--color-velocis-foreground: var(--velocis-color-foreground);
|
|
16
|
+
--color-velocis-muted: var(--velocis-color-muted);
|
|
17
|
+
--color-velocis-border: var(--velocis-color-border);
|
|
18
|
+
|
|
19
|
+
--radius-velocis-sm: var(--velocis-radius-sm);
|
|
20
|
+
--radius-velocis-md: var(--velocis-radius-md);
|
|
21
|
+
--radius-velocis-lg: var(--velocis-radius-lg);
|
|
22
|
+
--radius-velocis-xl: var(--velocis-radius-xl);
|
|
23
|
+
|
|
24
|
+
--font-velocis: var(--velocis-font-sans);
|
|
25
|
+
|
|
26
|
+
--shadow-velocis-sm: var(--velocis-shadow-sm);
|
|
27
|
+
--shadow-velocis-md: var(--velocis-shadow-md);
|
|
28
|
+
--shadow-velocis-lg: var(--velocis-shadow-lg);
|
|
29
|
+
|
|
30
|
+
--duration-velocis-fast: var(--velocis-motion-duration-fast);
|
|
31
|
+
--duration-velocis-normal: var(--velocis-motion-duration-normal);
|
|
32
|
+
--duration-velocis-slow: var(--velocis-motion-duration-slow);
|
|
33
|
+
|
|
34
|
+
--z-index-velocis-dropdown: var(--velocis-z-dropdown);
|
|
35
|
+
--z-index-velocis-modal: var(--velocis-z-modal);
|
|
36
|
+
--z-index-velocis-tooltip: var(--velocis-z-tooltip);
|
|
37
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "velocis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Extremely dynamic RTL/LTR React UI component library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -62,6 +62,7 @@
|
|
|
62
62
|
"require": "./dist/navigation.cjs"
|
|
63
63
|
},
|
|
64
64
|
"./styles.css": "./dist/velocis.css",
|
|
65
|
+
"./tailwind-v4.css": "./dist/tailwind-v4.css",
|
|
65
66
|
"./tailwind-preset": {
|
|
66
67
|
"types": "./dist/tailwind-preset.d.ts",
|
|
67
68
|
"import": "./dist/tailwind-preset.js",
|
|
@@ -74,18 +75,23 @@
|
|
|
74
75
|
"peerDependencies": {
|
|
75
76
|
"react": "^18.2.0 || ^19.0.0",
|
|
76
77
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
77
|
-
"tailwindcss": "
|
|
78
|
+
"tailwindcss": ">=3.4.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"tailwindcss": {
|
|
82
|
+
"optional": true
|
|
83
|
+
}
|
|
78
84
|
},
|
|
79
85
|
"dependencies": {
|
|
80
86
|
"@velocis/card": "0.1.0",
|
|
81
|
-
"@velocis/feedback": "0.1.0",
|
|
82
|
-
"@velocis/core": "0.1.0",
|
|
83
|
-
"@velocis/navigation": "0.1.0",
|
|
84
87
|
"@velocis/forms": "0.1.0",
|
|
88
|
+
"@velocis/core": "0.1.0",
|
|
89
|
+
"@velocis/feedback": "0.1.1",
|
|
90
|
+
"@velocis/navigation": "0.1.1",
|
|
85
91
|
"@velocis/hero": "0.1.0",
|
|
86
|
-
"@velocis/
|
|
87
|
-
"@velocis/table": "0.1.
|
|
88
|
-
"@velocis/
|
|
92
|
+
"@velocis/list": "0.1.1",
|
|
93
|
+
"@velocis/table": "0.1.1",
|
|
94
|
+
"@velocis/theme": "0.1.1"
|
|
89
95
|
},
|
|
90
96
|
"devDependencies": {
|
|
91
97
|
"tsup": "^8.3.5",
|