@the12company/ui 0.0.1 → 0.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/README.md +11 -23
- package/dist/index.d.ts +747 -5
- package/dist/index.js +3476 -5
- package/dist/index.js.map +1 -1
- package/package.json +58 -12
package/package.json
CHANGED
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the12company/ui",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "UI Kit para projetos Capivara",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"sideEffects": [
|
|
8
|
-
|
|
9
|
-
],
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"src/tokens"
|
|
13
|
-
],
|
|
7
|
+
"sideEffects": ["**/*.css"],
|
|
8
|
+
"files": ["dist", "src/tokens"],
|
|
14
9
|
"main": "./dist/index.js",
|
|
15
10
|
"module": "./dist/index.js",
|
|
16
11
|
"types": "./dist/index.d.ts",
|
|
@@ -32,12 +27,63 @@
|
|
|
32
27
|
"access": "public"
|
|
33
28
|
},
|
|
34
29
|
"peerDependencies": {
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"
|
|
30
|
+
"@hookform/resolvers": ">=3.0.0",
|
|
31
|
+
"@radix-ui/react-accordion": ">=1.0.0",
|
|
32
|
+
"@radix-ui/react-alert-dialog": ">=1.0.0",
|
|
33
|
+
"@radix-ui/react-aspect-ratio": ">=1.0.0",
|
|
34
|
+
"@radix-ui/react-avatar": ">=1.0.0",
|
|
35
|
+
"@radix-ui/react-checkbox": ">=1.0.0",
|
|
36
|
+
"@radix-ui/react-collapsible": ">=1.0.0",
|
|
37
|
+
"@radix-ui/react-context-menu": ">=1.0.0",
|
|
38
|
+
"@radix-ui/react-dialog": ">=1.0.0",
|
|
39
|
+
"@radix-ui/react-dropdown-menu": ">=1.0.0",
|
|
40
|
+
"@radix-ui/react-hover-card": ">=1.0.0",
|
|
41
|
+
"@radix-ui/react-label": ">=1.0.0",
|
|
42
|
+
"@radix-ui/react-menubar": ">=1.0.0",
|
|
43
|
+
"@radix-ui/react-navigation-menu": ">=1.0.0",
|
|
44
|
+
"@radix-ui/react-popover": ">=1.0.0",
|
|
45
|
+
"@radix-ui/react-progress": ">=1.0.0",
|
|
46
|
+
"@radix-ui/react-radio-group": ">=1.0.0",
|
|
47
|
+
"@radix-ui/react-scroll-area": ">=1.0.0",
|
|
48
|
+
"@radix-ui/react-select": ">=1.0.0",
|
|
49
|
+
"@radix-ui/react-separator": ">=1.0.0",
|
|
50
|
+
"@radix-ui/react-slider": ">=1.0.0",
|
|
51
|
+
"@radix-ui/react-slot": ">=1.0.0",
|
|
52
|
+
"@radix-ui/react-switch": ">=1.0.0",
|
|
53
|
+
"@radix-ui/react-tabs": ">=1.0.0",
|
|
54
|
+
"@radix-ui/react-toast": ">=1.0.0",
|
|
55
|
+
"@radix-ui/react-toggle": ">=1.0.0",
|
|
56
|
+
"@radix-ui/react-toggle-group": ">=1.0.0",
|
|
57
|
+
"@radix-ui/react-tooltip": ">=1.0.0",
|
|
58
|
+
"class-variance-authority": ">=0.7.0",
|
|
59
|
+
"clsx": ">=2.0.0",
|
|
60
|
+
"cmdk": ">=1.0.0",
|
|
61
|
+
"embla-carousel-react": ">=8.0.0",
|
|
62
|
+
"input-otp": ">=1.0.0",
|
|
63
|
+
"lucide-react": ">=0.400.0",
|
|
64
|
+
"next-themes": ">=0.3.0",
|
|
38
65
|
"react": "^18.0.0 || ^19.0.0",
|
|
66
|
+
"react-day-picker": ">=8.0.0",
|
|
39
67
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
40
|
-
"
|
|
68
|
+
"react-hook-form": ">=7.0.0",
|
|
69
|
+
"react-resizable-panels": ">=2.0.0",
|
|
70
|
+
"recharts": ">=2.0.0",
|
|
71
|
+
"sonner": ">=1.0.0",
|
|
72
|
+
"tailwind-merge": ">=2.0.0",
|
|
73
|
+
"vaul": ">=0.9.0"
|
|
74
|
+
},
|
|
75
|
+
"peerDependenciesMeta": {
|
|
76
|
+
"@hookform/resolvers": { "optional": true },
|
|
77
|
+
"cmdk": { "optional": true },
|
|
78
|
+
"embla-carousel-react": { "optional": true },
|
|
79
|
+
"input-otp": { "optional": true },
|
|
80
|
+
"next-themes": { "optional": true },
|
|
81
|
+
"react-day-picker": { "optional": true },
|
|
82
|
+
"react-hook-form": { "optional": true },
|
|
83
|
+
"react-resizable-panels": { "optional": true },
|
|
84
|
+
"recharts": { "optional": true },
|
|
85
|
+
"sonner": { "optional": true },
|
|
86
|
+
"vaul": { "optional": true }
|
|
41
87
|
},
|
|
42
88
|
"devDependencies": {
|
|
43
89
|
"@types/react": "^18.3.31",
|