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