@webdevarif/dashui 0.1.4 → 0.1.6
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.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/styles/globals.css +15 -1
- package/package.json +80 -82
package/dist/styles/globals.css
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
@
|
|
1
|
+
@keyframes dashui-shimmer {
|
|
2
|
+
0% { transform: translateX(-100%); }
|
|
3
|
+
100% { transform: translateX(200%); }
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@keyframes dashui-spin {
|
|
7
|
+
to { transform: rotate(360deg); }
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@keyframes dashui-pulse {
|
|
11
|
+
0%, 100% { opacity: 1; }
|
|
12
|
+
50% { opacity: 0.5; }
|
|
13
|
+
}
|
|
14
|
+
|
|
2
15
|
/* @webdevarif/dashui � All Tokens Combined
|
|
3
16
|
* Import: import '@webdevarif/dashui/styles'
|
|
4
17
|
*/
|
|
@@ -402,3 +415,4 @@
|
|
|
402
415
|
/* Generated dynamically via API: GET /api/theme/{storeId}/styles.css */
|
|
403
416
|
|
|
404
417
|
|
|
418
|
+
|
package/package.json
CHANGED
|
@@ -1,82 +1,80 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
}
|
|
82
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@webdevarif/dashui",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Universal dashboard UI component library with design token system — by webdevarif",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dashboard",
|
|
7
|
+
"ui",
|
|
8
|
+
"components",
|
|
9
|
+
"design-system",
|
|
10
|
+
"react",
|
|
11
|
+
"tailwind"
|
|
12
|
+
],
|
|
13
|
+
"author": "webdevarif",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"homepage": "https://dashui.webdevarif.com",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/webdevarif/dashui"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"module": "./dist/index.mjs",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.mjs",
|
|
27
|
+
"require": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./styles": "./dist/styles/globals.css",
|
|
30
|
+
"./tokens/primitives": "./dist/tokens/primitives.css",
|
|
31
|
+
"./tokens/light": "./dist/tokens/semantic-light.css",
|
|
32
|
+
"./tokens/dark": "./dist/tokens/semantic-dark.css",
|
|
33
|
+
"./tokens/schemes": "./dist/tokens/storefront-schemes.css"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"README.md"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "tsup \u0026\u0026 cpx \"src/styles/**/*.css\" dist/styles \u0026\u0026 cpx \"src/tokens/**/*.css\" dist/tokens",
|
|
41
|
+
"dev": "tsup --watch",
|
|
42
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
43
|
+
"typecheck": "tsc --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"react": "\u003e=18",
|
|
47
|
+
"react-dom": "\u003e=18",
|
|
48
|
+
"next": "\u003e=14"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"next-themes": "^0.4.6",
|
|
52
|
+
"@radix-ui/react-checkbox": "^1.1.3",
|
|
53
|
+
"@radix-ui/react-dialog": "^1.1.4",
|
|
54
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
55
|
+
"@radix-ui/react-label": "^2.1.1",
|
|
56
|
+
"@radix-ui/react-popover": "^1.1.4",
|
|
57
|
+
"@radix-ui/react-select": "^2.1.4",
|
|
58
|
+
"@radix-ui/react-separator": "^1.1.1",
|
|
59
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
60
|
+
"@radix-ui/react-switch": "^1.1.2",
|
|
61
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
62
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
63
|
+
"class-variance-authority": "^0.7.1",
|
|
64
|
+
"clsx": "^2.1.1",
|
|
65
|
+
"lucide-react": "^0.469.0",
|
|
66
|
+
"sonner": "^1.7.1",
|
|
67
|
+
"tailwind-merge": "^2.6.0"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@types/react": "^18",
|
|
71
|
+
"@types/react-dom": "^18",
|
|
72
|
+
"cpx2": "^8.0.0",
|
|
73
|
+
"tailwindcss": "^3.4.17",
|
|
74
|
+
"tsup": "^8.3.5",
|
|
75
|
+
"typescript": "^5"
|
|
76
|
+
},
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"access": "public"
|
|
79
|
+
}
|
|
80
|
+
}
|