@webdevarif/dashui 0.8.0 → 1.1.0
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.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +89 -85
package/package.json
CHANGED
|
@@ -1,86 +1,90 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name":
|
|
3
|
-
"version": "
|
|
4
|
-
"description":
|
|
5
|
-
"keywords":
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"author":
|
|
14
|
-
"license":
|
|
15
|
-
"homepage":
|
|
16
|
-
"repository":
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"main":
|
|
21
|
-
"module":
|
|
22
|
-
"types":
|
|
23
|
-
"exports":
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"files":
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"scripts":
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"peerDependencies":
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"dependencies":
|
|
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
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@webdevarif/dashui",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Universal dashboard UI component library — forms, inputs, media, tables, layouts. Modular categories: primitives, forms, dashboard, media, data, editors, ecommerce, cms.",
|
|
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
|
+
"templates",
|
|
38
|
+
"README.md"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup \u0026\u0026 cpx \"src/styles/**/*.css\" dist/styles \u0026\u0026 cpx \"src/tokens/**/*.css\" dist/tokens",
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
44
|
+
"typecheck": "tsc --noEmit"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"next": "\u003e=14",
|
|
48
|
+
"next-themes": "\u003e=0.2",
|
|
49
|
+
"react": "\u003e=18",
|
|
50
|
+
"react-dom": "\u003e=18"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@radix-ui/react-checkbox": "^1.1.3",
|
|
54
|
+
"@radix-ui/react-dialog": "^1.1.4",
|
|
55
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
56
|
+
"@radix-ui/react-label": "^2.1.1",
|
|
57
|
+
"@radix-ui/react-popover": "^1.1.4",
|
|
58
|
+
"@radix-ui/react-select": "^2.1.4",
|
|
59
|
+
"@radix-ui/react-separator": "^1.1.1",
|
|
60
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
61
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
62
|
+
"@radix-ui/react-switch": "^1.1.2",
|
|
63
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
64
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
65
|
+
"class-variance-authority": "^0.7.1",
|
|
66
|
+
"clsx": "^2.1.1",
|
|
67
|
+
"color": "^5.0.3",
|
|
68
|
+
"lucide-react": "^0.469.0",
|
|
69
|
+
"next-themes": "\u003e=0.2",
|
|
70
|
+
"react-colorful": "^5.6.1",
|
|
71
|
+
"sonner": "^1.7.1",
|
|
72
|
+
"tailwind-merge": "^2.6.0",
|
|
73
|
+
"@tiptap/react": "^2.1.0",
|
|
74
|
+
"@tiptap/starter-kit": "^2.1.0",
|
|
75
|
+
"@tiptap/extension-placeholder": "^2.1.0"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/color": "^4.2.1",
|
|
79
|
+
"@types/react": "^18",
|
|
80
|
+
"@types/react-dom": "^18",
|
|
81
|
+
"cpx2": "^8.0.0",
|
|
82
|
+
"tailwindcss": "^3.4.17",
|
|
83
|
+
"tsup": "^8.3.5",
|
|
84
|
+
"typescript": "^5"
|
|
85
|
+
},
|
|
86
|
+
"publishConfig": {
|
|
87
|
+
"access": "public"
|
|
88
|
+
}
|
|
86
89
|
}
|
|
90
|
+
|