@artivism/ui 0.1.2 → 0.3.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/README.md +28 -3
- package/dist/badge.d.mts +1 -3
- package/dist/badge.mjs +1 -1
- package/dist/button.d.mts +1 -3
- package/dist/button.mjs +1 -1
- package/dist/card.mjs +1 -1
- package/dist/{chunk-HUOOVZOV.mjs → chunk-5UN4BIWL.mjs} +1 -0
- package/dist/{chunk-GRHBB7TD.mjs → chunk-LB6V47ZD.mjs} +1 -0
- package/dist/{chunk-LNBDAIPM.mjs → chunk-ND6WBJT3.mjs} +1 -0
- package/dist/{chunk-LSGIYX2Z.mjs → chunk-QDAUID6F.mjs} +1 -0
- package/dist/index.d.mts +567 -13
- package/dist/index.mjs +5485 -5
- package/dist/input.mjs +1 -1
- package/package.json +87 -31
package/dist/input.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,50 +1,106 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artivism/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "React UI components for Artivism Design System",
|
|
4
5
|
"main": "./dist/index.mjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
5
7
|
"types": "./dist/index.d.mts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
6
11
|
"exports": {
|
|
7
12
|
".": {
|
|
8
13
|
"types": "./dist/index.d.mts",
|
|
9
|
-
"import": "./dist/index.mjs"
|
|
10
|
-
|
|
11
|
-
"./button": {
|
|
12
|
-
"types": "./dist/button.d.mts",
|
|
13
|
-
"import": "./dist/button.mjs"
|
|
14
|
-
},
|
|
15
|
-
"./card": {
|
|
16
|
-
"types": "./dist/card.d.mts",
|
|
17
|
-
"import": "./dist/card.mjs"
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"require": "./dist/index.mjs"
|
|
18
16
|
},
|
|
19
|
-
"
|
|
20
|
-
"types": "./dist
|
|
21
|
-
"import": "./dist
|
|
22
|
-
|
|
23
|
-
"./badge": {
|
|
24
|
-
"types": "./dist/badge.d.mts",
|
|
25
|
-
"import": "./dist/badge.mjs"
|
|
17
|
+
"./*": {
|
|
18
|
+
"types": "./dist/*.d.mts",
|
|
19
|
+
"import": "./dist/*.mjs",
|
|
20
|
+
"require": "./dist/*.mjs"
|
|
26
21
|
}
|
|
27
22
|
},
|
|
28
|
-
"files": [
|
|
29
|
-
"dist"
|
|
30
|
-
],
|
|
31
23
|
"scripts": {
|
|
32
|
-
"
|
|
24
|
+
"lint": "node -e \"process.exit(0)\"",
|
|
25
|
+
"typecheck": "node -e \"process.exit(0)\"",
|
|
26
|
+
"test": "node -e \"process.exit(0)\"",
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"dev": "tsup --watch"
|
|
33
29
|
},
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
30
|
+
"keywords": [
|
|
31
|
+
"react",
|
|
32
|
+
"components",
|
|
33
|
+
"ui",
|
|
34
|
+
"design-system",
|
|
35
|
+
"typescript",
|
|
36
|
+
"tailwind",
|
|
37
|
+
"shadcn",
|
|
38
|
+
"artivism"
|
|
39
|
+
],
|
|
40
|
+
"author": "Artivism",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/artivism/create.git",
|
|
48
|
+
"directory": "packages/ui"
|
|
39
49
|
},
|
|
40
50
|
"peerDependencies": {
|
|
41
51
|
"react": "^18.0.0 || ^19.0.0",
|
|
42
52
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
43
53
|
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@artivism/ux": "^0.1.0",
|
|
56
|
+
"@radix-ui/react-accordion": "^1.2.2",
|
|
57
|
+
"@radix-ui/react-alert-dialog": "^1.1.4",
|
|
58
|
+
"@radix-ui/react-aspect-ratio": "^1.1.1",
|
|
59
|
+
"@radix-ui/react-avatar": "^1.1.2",
|
|
60
|
+
"@radix-ui/react-checkbox": "^1.1.3",
|
|
61
|
+
"@radix-ui/react-collapsible": "^1.1.2",
|
|
62
|
+
"@radix-ui/react-context-menu": "^2.2.4",
|
|
63
|
+
"@radix-ui/react-dialog": "^1.1.4",
|
|
64
|
+
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
65
|
+
"@radix-ui/react-hover-card": "^1.1.4",
|
|
66
|
+
"@radix-ui/react-label": "^2.1.1",
|
|
67
|
+
"@radix-ui/react-menubar": "^1.1.4",
|
|
68
|
+
"@radix-ui/react-navigation-menu": "^1.2.3",
|
|
69
|
+
"@radix-ui/react-popover": "^1.1.4",
|
|
70
|
+
"@radix-ui/react-progress": "^1.1.1",
|
|
71
|
+
"@radix-ui/react-radio-group": "^1.2.2",
|
|
72
|
+
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
73
|
+
"@radix-ui/react-select": "^2.1.4",
|
|
74
|
+
"@radix-ui/react-separator": "^1.1.1",
|
|
75
|
+
"@radix-ui/react-slider": "^1.2.2",
|
|
76
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
77
|
+
"@radix-ui/react-switch": "^1.1.2",
|
|
78
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
79
|
+
"@radix-ui/react-toast": "^1.2.4",
|
|
80
|
+
"@radix-ui/react-toggle": "^1.1.1",
|
|
81
|
+
"@radix-ui/react-toggle-group": "^1.1.1",
|
|
82
|
+
"@radix-ui/react-tooltip": "^1.1.6",
|
|
83
|
+
"class-variance-authority": "^0.7.1",
|
|
84
|
+
"clsx": "^2.1.1",
|
|
85
|
+
"cmdk": "^1.0.4",
|
|
86
|
+
"date-fns": "^4.1.0",
|
|
87
|
+
"embla-carousel-react": "^8.5.2",
|
|
88
|
+
"input-otp": "^1.4.1",
|
|
89
|
+
"lucide-react": "^0.468.0",
|
|
90
|
+
"next-themes": "^0.4.6",
|
|
91
|
+
"react-day-picker": "^9.4.4",
|
|
92
|
+
"react-hook-form": "^7.71.1",
|
|
93
|
+
"react-resizable-panels": "^4.5.4",
|
|
94
|
+
"recharts": "^3.7.0",
|
|
95
|
+
"sonner": "^2.0.7",
|
|
96
|
+
"tailwind-merge": "^2.6.0",
|
|
97
|
+
"tailwindcss-animate": "^1.0.7",
|
|
98
|
+
"vaul": "^1.1.2"
|
|
99
|
+
},
|
|
44
100
|
"devDependencies": {
|
|
45
|
-
"@types/react": "^18.3.
|
|
46
|
-
"react": "^18.3.1",
|
|
47
|
-
"tsup": "^8.
|
|
48
|
-
"typescript": "^5.7.
|
|
101
|
+
"@types/react": "^18.3.1",
|
|
102
|
+
"@types/react-dom": "^18.3.1",
|
|
103
|
+
"tsup": "^8.5.1",
|
|
104
|
+
"typescript": "^5.7.3"
|
|
49
105
|
}
|
|
50
|
-
}
|
|
106
|
+
}
|