@iclips/ui 0.0.19 → 1.0.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/{LICENSE → LICENSE/Code-component-19-1703.tsx} +1 -1
- package/LICENSE/Code-component-19-1719.tsx +21 -0
- package/README.md +14 -14
- package/dist/index.cjs +6976 -4271
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1370 -552
- package/dist/index.d.ts +1370 -552
- package/dist/index.js +6862 -4197
- package/dist/index.js.map +1 -1
- package/package.json +42 -13
- package/styles/globals.css +694 -0
- package/dist/index.css +0 -8973
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iclips/ui",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "
|
|
5
|
-
"author": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Design System iClips - Componentes React com Tailwind CSS 4.0 e identidade visual #7F26BF",
|
|
5
|
+
"author": "Equipe iClips <contato@iclips.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist/index.cjs",
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
"import": "./dist/index.js",
|
|
15
15
|
"require": "./dist/index.cjs"
|
|
16
16
|
},
|
|
17
|
-
"./styles.css": "./
|
|
18
|
-
"./dist/index.css": "./dist/index.css",
|
|
17
|
+
"./styles.css": "./styles/globals.css",
|
|
19
18
|
"./package.json": "./package.json"
|
|
20
19
|
},
|
|
21
20
|
"files": [
|
|
22
21
|
"dist",
|
|
22
|
+
"styles",
|
|
23
23
|
"README.md",
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
27
|
"dev": "vite",
|
|
28
28
|
"build": "tsc && vite build",
|
|
29
|
-
"build:lib": "tsup
|
|
29
|
+
"build:lib": "tsup",
|
|
30
30
|
"preview": "vite preview",
|
|
31
31
|
"typecheck": "tsc --noEmit",
|
|
32
32
|
"prepublishOnly": "npm run build:lib"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"react": "^18.0.0 || ^19.0.0",
|
|
36
36
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
37
|
-
"tailwindcss": "^
|
|
37
|
+
"tailwindcss": "^4.0.0"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
@@ -63,43 +63,72 @@
|
|
|
63
63
|
"@radix-ui/react-toggle": "^1.1.1",
|
|
64
64
|
"@radix-ui/react-toggle-group": "^1.1.1",
|
|
65
65
|
"@radix-ui/react-tooltip": "^1.1.6",
|
|
66
|
+
"@tiptap/extension-color": "^2.10.5",
|
|
67
|
+
"@tiptap/extension-image": "^2.10.5",
|
|
68
|
+
"@tiptap/extension-link": "^2.10.5",
|
|
69
|
+
"@tiptap/extension-mention": "^2.10.5",
|
|
70
|
+
"@tiptap/extension-placeholder": "^2.10.5",
|
|
71
|
+
"@tiptap/extension-text-align": "^2.10.5",
|
|
72
|
+
"@tiptap/extension-text-style": "^2.10.5",
|
|
73
|
+
"@tiptap/extension-underline": "^2.10.5",
|
|
74
|
+
"@tiptap/react": "^2.10.5",
|
|
75
|
+
"@tiptap/starter-kit": "^2.10.5",
|
|
66
76
|
"class-variance-authority": "^0.7.1",
|
|
67
77
|
"clsx": "^2.1.1",
|
|
68
78
|
"cmdk": "^1.0.4",
|
|
69
79
|
"date-fns": "^4.1.0",
|
|
70
80
|
"embla-carousel-react": "^8.5.2",
|
|
81
|
+
"emoji-picker-react": "^4.12.0",
|
|
82
|
+
"gantt-task-react": "^0.3.9",
|
|
71
83
|
"input-otp": "^1.4.1",
|
|
72
84
|
"lucide-react": "^0.469.0",
|
|
85
|
+
"next-themes": "^0.4.4",
|
|
73
86
|
"react-colorful": "^5.6.1",
|
|
74
87
|
"react-day-picker": "^9.4.3",
|
|
88
|
+
"react-dnd": "^16.0.1",
|
|
89
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
90
|
+
"react-hook-form": "^7.55.0",
|
|
75
91
|
"react-resizable-panels": "^2.1.7",
|
|
76
92
|
"recharts": "^2.15.0",
|
|
77
93
|
"sonner": "^2.0.3",
|
|
78
94
|
"tailwind-merge": "^2.6.0",
|
|
79
95
|
"tailwindcss-animate": "^1.0.7",
|
|
96
|
+
"tippy.js": "^6.3.7",
|
|
80
97
|
"vaul": "^1.1.2"
|
|
81
98
|
},
|
|
82
99
|
"devDependencies": {
|
|
83
100
|
"@tailwindcss/postcss": "^4.0.0",
|
|
84
101
|
"@types/node": "^22.10.2",
|
|
85
|
-
"@types/react": "^18.
|
|
86
|
-
"@types/react-dom": "^18.
|
|
102
|
+
"@types/react": "^18.3.18",
|
|
103
|
+
"@types/react-dom": "^18.3.5",
|
|
87
104
|
"@vitejs/plugin-react": "^4.3.4",
|
|
88
105
|
"autoprefixer": "^10.4.20",
|
|
89
106
|
"postcss": "^8.4.49",
|
|
90
107
|
"react": "^19.0.0",
|
|
91
108
|
"react-dom": "^19.0.0",
|
|
92
109
|
"tailwindcss": "^4.0.0",
|
|
110
|
+
"tsup": "^8.3.5",
|
|
93
111
|
"typescript": "^5.7.2",
|
|
94
112
|
"vite": "^6.0.5",
|
|
95
113
|
"vite-plugin-dts": "^4.3.0"
|
|
96
114
|
},
|
|
97
115
|
"repository": {
|
|
98
116
|
"type": "git",
|
|
99
|
-
"url": "
|
|
117
|
+
"url": "https://github.com/iclips/design-system.git"
|
|
100
118
|
},
|
|
101
119
|
"bugs": {
|
|
102
|
-
"url": "https://github.com/
|
|
120
|
+
"url": "https://github.com/iclips/design-system/issues"
|
|
103
121
|
},
|
|
104
|
-
"homepage": "https://github.com/
|
|
105
|
-
|
|
122
|
+
"homepage": "https://github.com/iclips/design-system#readme",
|
|
123
|
+
"keywords": [
|
|
124
|
+
"react",
|
|
125
|
+
"components",
|
|
126
|
+
"design-system",
|
|
127
|
+
"tailwind",
|
|
128
|
+
"ui",
|
|
129
|
+
"iclips",
|
|
130
|
+
"typescript",
|
|
131
|
+
"shadcn",
|
|
132
|
+
"radix-ui"
|
|
133
|
+
]
|
|
134
|
+
}
|