@classytic/fluid 0.4.0 → 0.4.2
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/client/color-picker.d.mts +78 -0
- package/dist/client/color-picker.mjs +344 -0
- package/dist/client/gallery.d.mts +175 -0
- package/dist/client/gallery.mjs +545 -0
- package/dist/client/spreadsheet.d.mts +210 -0
- package/dist/client/spreadsheet.mjs +611 -0
- package/dist/forms.mjs +3 -3
- package/package.json +40 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@classytic/fluid",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Fluid UI - Custom components built on shadcn/ui and base ui by Classytic",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -35,6 +35,18 @@
|
|
|
35
35
|
"types": "./dist/client/calendar.d.mts",
|
|
36
36
|
"default": "./dist/client/calendar.mjs"
|
|
37
37
|
},
|
|
38
|
+
"./client/spreadsheet": {
|
|
39
|
+
"types": "./dist/client/spreadsheet.d.mts",
|
|
40
|
+
"default": "./dist/client/spreadsheet.mjs"
|
|
41
|
+
},
|
|
42
|
+
"./client/color-picker": {
|
|
43
|
+
"types": "./dist/client/color-picker.d.mts",
|
|
44
|
+
"default": "./dist/client/color-picker.mjs"
|
|
45
|
+
},
|
|
46
|
+
"./client/gallery": {
|
|
47
|
+
"types": "./dist/client/gallery.d.mts",
|
|
48
|
+
"default": "./dist/client/gallery.mjs"
|
|
49
|
+
},
|
|
38
50
|
"./forms": {
|
|
39
51
|
"types": "./dist/forms.d.mts",
|
|
40
52
|
"default": "./dist/forms.mjs"
|
|
@@ -71,30 +83,36 @@
|
|
|
71
83
|
"scripts": {
|
|
72
84
|
"build": "tsdown",
|
|
73
85
|
"dev": "tsdown --watch",
|
|
86
|
+
"test": "vitest run",
|
|
87
|
+
"test:watch": "vitest",
|
|
74
88
|
"typecheck": "tsc --noEmit",
|
|
75
89
|
"lint": "tsc --noEmit",
|
|
76
90
|
"clean": "rimraf dist",
|
|
77
|
-
"prepublishOnly": "npm run clean && npm run build"
|
|
91
|
+
"prepublishOnly": "npm run typecheck && npm test && npm run clean && npm run build"
|
|
78
92
|
},
|
|
79
93
|
"peerDependencies": {
|
|
80
|
-
"@tanstack/react-table": "
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
94
|
+
"@tanstack/react-table": ">=8.21.0",
|
|
95
|
+
"@tanstack/react-virtual": ">=3.11.2",
|
|
96
|
+
"class-variance-authority": ">=0.7.0",
|
|
97
|
+
"clsx": ">=2.1.0",
|
|
98
|
+
"date-fns": ">=4.1.0",
|
|
84
99
|
"lucide-react": ">=0.460.0",
|
|
85
|
-
"next": "
|
|
86
|
-
"next-themes": "
|
|
87
|
-
"react": "
|
|
88
|
-
"react-dom": "
|
|
89
|
-
"react-error-boundary": "
|
|
90
|
-
"react-hook-form": "
|
|
91
|
-
"tailwind-merge": "
|
|
92
|
-
"vaul": "
|
|
100
|
+
"next": ">=16.0.0",
|
|
101
|
+
"next-themes": ">=0.4.0",
|
|
102
|
+
"react": ">=19.0.0",
|
|
103
|
+
"react-dom": ">=19.0.0",
|
|
104
|
+
"react-error-boundary": ">=6.0.0",
|
|
105
|
+
"react-hook-form": ">=7.54.0",
|
|
106
|
+
"tailwind-merge": ">=2.2.0",
|
|
107
|
+
"vaul": ">=1.0.0"
|
|
93
108
|
},
|
|
94
109
|
"peerDependenciesMeta": {
|
|
95
110
|
"@tanstack/react-table": {
|
|
96
111
|
"optional": true
|
|
97
112
|
},
|
|
113
|
+
"@tanstack/react-virtual": {
|
|
114
|
+
"optional": true
|
|
115
|
+
},
|
|
98
116
|
"next-themes": {
|
|
99
117
|
"optional": true
|
|
100
118
|
},
|
|
@@ -113,12 +131,18 @@
|
|
|
113
131
|
},
|
|
114
132
|
"devDependencies": {
|
|
115
133
|
"@tanstack/react-table": "^8.21.0",
|
|
134
|
+
"@tanstack/react-virtual": "^3.13.23",
|
|
135
|
+
"@testing-library/dom": "^10.4.1",
|
|
136
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
137
|
+
"@testing-library/react": "^16.3.2",
|
|
138
|
+
"@testing-library/user-event": "^14.6.1",
|
|
116
139
|
"@types/node": "^22.0.0",
|
|
117
140
|
"@types/react": "^19.0.0",
|
|
118
141
|
"@types/react-dom": "^19.0.0",
|
|
119
142
|
"class-variance-authority": "^0.7.0",
|
|
120
143
|
"clsx": "^2.1.0",
|
|
121
144
|
"date-fns": "^4.1.0",
|
|
145
|
+
"jsdom": "^29.0.0",
|
|
122
146
|
"lucide-react": "^0.460.0",
|
|
123
147
|
"next-themes": "^0.4.0",
|
|
124
148
|
"react": "^19.0.0",
|
|
@@ -128,7 +152,8 @@
|
|
|
128
152
|
"rimraf": "^5.0.0",
|
|
129
153
|
"tailwind-merge": "^3.5.0",
|
|
130
154
|
"tsdown": "^0.21.0-beta.2",
|
|
131
|
-
"typescript": "^5.7.0"
|
|
155
|
+
"typescript": "^5.7.0",
|
|
156
|
+
"vitest": "^4.1.0"
|
|
132
157
|
},
|
|
133
158
|
"publishConfig": {
|
|
134
159
|
"access": "public"
|