@springbrand/gravel 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/dist/components/ui-base/index.d.ts +1 -0
- package/dist/components/ui-base/responsive-dialog/index.d.ts +55 -0
- package/dist/components/ui-base/responsive-dialog/index.js +116 -0
- package/dist/components/ui-block/background/index.d.ts +8 -0
- package/dist/components/ui-block/background/index.js +51 -0
- package/dist/components/ui-block/cover/index.d.ts +17 -0
- package/dist/components/ui-block/cover/index.js +232 -0
- package/dist/components/ui-block/index.d.ts +4 -0
- package/dist/components/ui-block/sparkles/index.d.ts +13 -0
- package/dist/components/ui-block/sparkles/index.js +287 -0
- package/dist/components/ui-block/spotlight/index.d.ts +13 -0
- package/dist/components/ui-block/spotlight/index.js +158 -0
- package/dist/hooks/use-media-query.d.ts +1 -0
- package/dist/hooks/use-media-query.js +15 -0
- package/dist/hooks/use-prefers-reduced-motion.d.ts +1 -0
- package/dist/hooks/use-prefers-reduced-motion.js +23 -0
- package/dist/hooks/use-scroll-container.d.ts +18 -0
- package/dist/hooks/use-scroll-container.js +25 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +57 -0
- package/dist/utils/css-utils.d.ts +10 -0
- package/dist/utils/css-utils.js +17 -0
- package/dist/utils/index.d.ts +9 -0
- package/dist/utils/index.js +34 -0
- package/dist/utils/storage-qetag.d.ts +22 -0
- package/dist/utils/storage-qetag.js +101 -0
- package/dist/utils/utils-api.d.ts +17 -0
- package/dist/utils/utils-api.js +31 -0
- package/dist/utils/utils-canvas.d.ts +30 -0
- package/dist/utils/utils-canvas.js +54 -0
- package/dist/utils/utils-common.d.ts +6 -0
- package/dist/utils/utils-common.js +15 -0
- package/dist/utils/utils-image.d.ts +33 -0
- package/dist/utils/utils-image.js +57 -0
- package/dist/utils/utils-random.d.ts +1 -0
- package/dist/utils/utils-random.js +6 -0
- package/dist/utils/utils-time.d.ts +49 -0
- package/dist/utils/utils-time.js +112 -0
- package/package.json +386 -0
package/package.json
ADDED
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@springbrand/gravel",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": [
|
|
10
|
+
"*.css",
|
|
11
|
+
"**/dayjs-tz.js"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "vite build && tsc --project tsconfig.build.json",
|
|
15
|
+
"watch": "vite build --watch",
|
|
16
|
+
"lint": "eslint src --ext ts,tsx --max-warnings 0",
|
|
17
|
+
"typecheck": "tsc --noEmit"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"main": "./dist/index.js",
|
|
23
|
+
"module": "./dist/index.js",
|
|
24
|
+
"typings": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
"./package.json": "./package.json",
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./components/ui-block/*": {
|
|
33
|
+
"types": "./dist/components/ui-block/*/index.d.ts",
|
|
34
|
+
"import": "./dist/components/ui-block/*/index.js",
|
|
35
|
+
"default": "./dist/components/ui-block/*/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./components/ui-base/*": {
|
|
38
|
+
"types": "./dist/components/ui-base/*/index.d.ts",
|
|
39
|
+
"import": "./dist/components/ui-base/*/index.js",
|
|
40
|
+
"default": "./dist/components/ui-base/*/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./utils": {
|
|
43
|
+
"types": "./dist/utils/index.d.ts",
|
|
44
|
+
"import": "./dist/utils/index.js",
|
|
45
|
+
"default": "./dist/utils/index.js"
|
|
46
|
+
},
|
|
47
|
+
"./utils/*": {
|
|
48
|
+
"types": "./dist/utils/*.d.ts",
|
|
49
|
+
"import": "./dist/utils/*.js",
|
|
50
|
+
"default": "./dist/utils/*.js"
|
|
51
|
+
},
|
|
52
|
+
"./hooks/*": {
|
|
53
|
+
"types": "./dist/hooks/*.d.ts",
|
|
54
|
+
"import": "./dist/hooks/*.js",
|
|
55
|
+
"default": "./dist/hooks/*.js"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@dnd-kit/core": "^6.3.1",
|
|
60
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
61
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
62
|
+
"@emotion/is-prop-valid": "1.4.0",
|
|
63
|
+
"@relume_io/relume-tailwind": "^1.3.0",
|
|
64
|
+
"@springbrand/site-block": "0.1.0",
|
|
65
|
+
"embla-carousel-autoplay": "8.6.0",
|
|
66
|
+
"react-advanced-cropper": "0.20.1",
|
|
67
|
+
"react-error-boundary": "6.1.1",
|
|
68
|
+
"react-icons": "5.6.0",
|
|
69
|
+
"shadcn": "4.2.0",
|
|
70
|
+
"zod": "4.3.6"
|
|
71
|
+
},
|
|
72
|
+
"peerDependencies": {
|
|
73
|
+
"@base-ui/react": "^1.0.0",
|
|
74
|
+
"@base-ui/utils": "^0.2.0",
|
|
75
|
+
"@date-fns/tz": "^1.0.0",
|
|
76
|
+
"@fluid-tailwind/tailwind-merge": "^0.0.3",
|
|
77
|
+
"@puckeditor/core": "^0.21.0",
|
|
78
|
+
"@radix-ui/primitive": "^1.0.0",
|
|
79
|
+
"@radix-ui/react-compose-refs": "^1.0.0",
|
|
80
|
+
"@radix-ui/react-context": "^1.0.0",
|
|
81
|
+
"@radix-ui/react-dialog": "^1.0.0",
|
|
82
|
+
"@radix-ui/react-direction": "^1.0.0",
|
|
83
|
+
"@radix-ui/react-dismissable-layer": "^1.0.0",
|
|
84
|
+
"@radix-ui/react-focus-guards": "^1.0.0",
|
|
85
|
+
"@radix-ui/react-focus-scope": "^1.0.0",
|
|
86
|
+
"@radix-ui/react-id": "^1.0.0",
|
|
87
|
+
"@radix-ui/react-portal": "^1.0.0",
|
|
88
|
+
"@radix-ui/react-presence": "^1.0.0",
|
|
89
|
+
"@radix-ui/react-primitive": "^2.0.0",
|
|
90
|
+
"@radix-ui/react-roving-focus": "^1.0.0",
|
|
91
|
+
"@radix-ui/react-slot": "^1.0.0",
|
|
92
|
+
"@radix-ui/react-toggle": "^1.0.0",
|
|
93
|
+
"@radix-ui/react-toggle-group": "^1.0.0",
|
|
94
|
+
"@radix-ui/react-use-controllable-state": "^1.0.0",
|
|
95
|
+
"@radix-ui/react-use-effect-event": "^0.0.2",
|
|
96
|
+
"@radix-ui/react-use-layout-effect": "^1.0.0",
|
|
97
|
+
"@tsparticles/engine": "^3.0.0",
|
|
98
|
+
"@tsparticles/react": "^3.0.0",
|
|
99
|
+
"@tsparticles/slim": "^3.0.0",
|
|
100
|
+
"aria-hidden": "^1.0.0",
|
|
101
|
+
"axios": "^1.0.0",
|
|
102
|
+
"class-variance-authority": "^0.7.0",
|
|
103
|
+
"clsx": "^2.0.0",
|
|
104
|
+
"cmdk": "^1.0.0",
|
|
105
|
+
"d3-array": "^3.0.0",
|
|
106
|
+
"d3-ease": "^3.0.0",
|
|
107
|
+
"d3-format": "^3.0.0",
|
|
108
|
+
"d3-interpolate": "^3.0.0",
|
|
109
|
+
"d3-scale": "^4.0.0",
|
|
110
|
+
"d3-shape": "^3.0.0",
|
|
111
|
+
"d3-time": "^3.0.0",
|
|
112
|
+
"d3-time-format": "^4.0.0",
|
|
113
|
+
"d3-timer": "^3.0.0",
|
|
114
|
+
"dayjs": "^1.11.0",
|
|
115
|
+
"decimal.js-light": "^2.5.0",
|
|
116
|
+
"embla-carousel": "^8.0.0",
|
|
117
|
+
"embla-carousel-react": "^8.0.0",
|
|
118
|
+
"embla-carousel-reactive-utils": "^8.0.0",
|
|
119
|
+
"eventemitter3": "^4.0.0",
|
|
120
|
+
"fast-equals": "^5.0.0",
|
|
121
|
+
"file-saver": "^2.0.0",
|
|
122
|
+
"file-type": "^12.0.0",
|
|
123
|
+
"input-otp": "^1.0.0",
|
|
124
|
+
"js-sha1": "^0.6.0",
|
|
125
|
+
"lodash": "^4.17.0",
|
|
126
|
+
"lodash-es": "^4.17.0",
|
|
127
|
+
"lucide-react": ">=0.400.0",
|
|
128
|
+
"motion": ">=12.0.0",
|
|
129
|
+
"nanoid": "^5.0.0",
|
|
130
|
+
"next-themes": "^0.4.0",
|
|
131
|
+
"prop-types": "^15.0.0",
|
|
132
|
+
"radix-ui": "^1.0.0",
|
|
133
|
+
"react": "^19.0.0",
|
|
134
|
+
"react-day-picker": "^9.0.0",
|
|
135
|
+
"react-dom": "^19.0.0",
|
|
136
|
+
"react-easy-crop": "^5.0.0",
|
|
137
|
+
"react-is": "^19.0.0",
|
|
138
|
+
"react-remove-scroll": "^2.0.0",
|
|
139
|
+
"react-resizable-panels": "^2.0.0",
|
|
140
|
+
"react-smooth": "^4.0.0",
|
|
141
|
+
"react-transition-group": "^4.0.0",
|
|
142
|
+
"recharts": "^2.0.0",
|
|
143
|
+
"recharts-scale": "^0.4.0",
|
|
144
|
+
"sonner": "^2.0.0",
|
|
145
|
+
"tailwind-merge": "^3.0.0",
|
|
146
|
+
"tailwindcss": "^4.0.0",
|
|
147
|
+
"tiny-invariant": "^1.0.0",
|
|
148
|
+
"tw-animate-css": "^1.0.0",
|
|
149
|
+
"vaul": "^1.0.0",
|
|
150
|
+
"victory-vendor": "^36.0.0"
|
|
151
|
+
},
|
|
152
|
+
"peerDependenciesMeta": {
|
|
153
|
+
"@base-ui/react": {
|
|
154
|
+
"optional": true
|
|
155
|
+
},
|
|
156
|
+
"@base-ui/utils": {
|
|
157
|
+
"optional": true
|
|
158
|
+
},
|
|
159
|
+
"@date-fns/tz": {
|
|
160
|
+
"optional": true
|
|
161
|
+
},
|
|
162
|
+
"@fluid-tailwind/tailwind-merge": {
|
|
163
|
+
"optional": true
|
|
164
|
+
},
|
|
165
|
+
"@puckeditor/core": {
|
|
166
|
+
"optional": true
|
|
167
|
+
},
|
|
168
|
+
"@radix-ui/primitive": {
|
|
169
|
+
"optional": true
|
|
170
|
+
},
|
|
171
|
+
"@radix-ui/react-compose-refs": {
|
|
172
|
+
"optional": true
|
|
173
|
+
},
|
|
174
|
+
"@radix-ui/react-context": {
|
|
175
|
+
"optional": true
|
|
176
|
+
},
|
|
177
|
+
"@radix-ui/react-dialog": {
|
|
178
|
+
"optional": true
|
|
179
|
+
},
|
|
180
|
+
"@radix-ui/react-direction": {
|
|
181
|
+
"optional": true
|
|
182
|
+
},
|
|
183
|
+
"@radix-ui/react-dismissable-layer": {
|
|
184
|
+
"optional": true
|
|
185
|
+
},
|
|
186
|
+
"@radix-ui/react-focus-guards": {
|
|
187
|
+
"optional": true
|
|
188
|
+
},
|
|
189
|
+
"@radix-ui/react-focus-scope": {
|
|
190
|
+
"optional": true
|
|
191
|
+
},
|
|
192
|
+
"@radix-ui/react-id": {
|
|
193
|
+
"optional": true
|
|
194
|
+
},
|
|
195
|
+
"@radix-ui/react-portal": {
|
|
196
|
+
"optional": true
|
|
197
|
+
},
|
|
198
|
+
"@radix-ui/react-presence": {
|
|
199
|
+
"optional": true
|
|
200
|
+
},
|
|
201
|
+
"@radix-ui/react-primitive": {
|
|
202
|
+
"optional": true
|
|
203
|
+
},
|
|
204
|
+
"@radix-ui/react-roving-focus": {
|
|
205
|
+
"optional": true
|
|
206
|
+
},
|
|
207
|
+
"@radix-ui/react-slot": {
|
|
208
|
+
"optional": true
|
|
209
|
+
},
|
|
210
|
+
"@radix-ui/react-toggle": {
|
|
211
|
+
"optional": true
|
|
212
|
+
},
|
|
213
|
+
"@radix-ui/react-toggle-group": {
|
|
214
|
+
"optional": true
|
|
215
|
+
},
|
|
216
|
+
"@radix-ui/react-use-controllable-state": {
|
|
217
|
+
"optional": true
|
|
218
|
+
},
|
|
219
|
+
"@radix-ui/react-use-effect-event": {
|
|
220
|
+
"optional": true
|
|
221
|
+
},
|
|
222
|
+
"@radix-ui/react-use-layout-effect": {
|
|
223
|
+
"optional": true
|
|
224
|
+
},
|
|
225
|
+
"@tsparticles/engine": {
|
|
226
|
+
"optional": true
|
|
227
|
+
},
|
|
228
|
+
"@tsparticles/react": {
|
|
229
|
+
"optional": true
|
|
230
|
+
},
|
|
231
|
+
"@tsparticles/slim": {
|
|
232
|
+
"optional": true
|
|
233
|
+
},
|
|
234
|
+
"aria-hidden": {
|
|
235
|
+
"optional": true
|
|
236
|
+
},
|
|
237
|
+
"axios": {
|
|
238
|
+
"optional": true
|
|
239
|
+
},
|
|
240
|
+
"class-variance-authority": {
|
|
241
|
+
"optional": true
|
|
242
|
+
},
|
|
243
|
+
"clsx": {
|
|
244
|
+
"optional": true
|
|
245
|
+
},
|
|
246
|
+
"cmdk": {
|
|
247
|
+
"optional": true
|
|
248
|
+
},
|
|
249
|
+
"d3-array": {
|
|
250
|
+
"optional": true
|
|
251
|
+
},
|
|
252
|
+
"d3-ease": {
|
|
253
|
+
"optional": true
|
|
254
|
+
},
|
|
255
|
+
"d3-format": {
|
|
256
|
+
"optional": true
|
|
257
|
+
},
|
|
258
|
+
"d3-interpolate": {
|
|
259
|
+
"optional": true
|
|
260
|
+
},
|
|
261
|
+
"d3-scale": {
|
|
262
|
+
"optional": true
|
|
263
|
+
},
|
|
264
|
+
"d3-shape": {
|
|
265
|
+
"optional": true
|
|
266
|
+
},
|
|
267
|
+
"d3-time": {
|
|
268
|
+
"optional": true
|
|
269
|
+
},
|
|
270
|
+
"d3-time-format": {
|
|
271
|
+
"optional": true
|
|
272
|
+
},
|
|
273
|
+
"d3-timer": {
|
|
274
|
+
"optional": true
|
|
275
|
+
},
|
|
276
|
+
"dayjs": {
|
|
277
|
+
"optional": true
|
|
278
|
+
},
|
|
279
|
+
"decimal.js-light": {
|
|
280
|
+
"optional": true
|
|
281
|
+
},
|
|
282
|
+
"embla-carousel": {
|
|
283
|
+
"optional": true
|
|
284
|
+
},
|
|
285
|
+
"embla-carousel-react": {
|
|
286
|
+
"optional": true
|
|
287
|
+
},
|
|
288
|
+
"embla-carousel-reactive-utils": {
|
|
289
|
+
"optional": true
|
|
290
|
+
},
|
|
291
|
+
"eventemitter3": {
|
|
292
|
+
"optional": true
|
|
293
|
+
},
|
|
294
|
+
"fast-equals": {
|
|
295
|
+
"optional": true
|
|
296
|
+
},
|
|
297
|
+
"file-saver": {
|
|
298
|
+
"optional": true
|
|
299
|
+
},
|
|
300
|
+
"file-type": {
|
|
301
|
+
"optional": true
|
|
302
|
+
},
|
|
303
|
+
"input-otp": {
|
|
304
|
+
"optional": true
|
|
305
|
+
},
|
|
306
|
+
"js-sha1": {
|
|
307
|
+
"optional": true
|
|
308
|
+
},
|
|
309
|
+
"lodash": {
|
|
310
|
+
"optional": true
|
|
311
|
+
},
|
|
312
|
+
"lodash-es": {
|
|
313
|
+
"optional": true
|
|
314
|
+
},
|
|
315
|
+
"lucide-react": {
|
|
316
|
+
"optional": true
|
|
317
|
+
},
|
|
318
|
+
"motion": {
|
|
319
|
+
"optional": true
|
|
320
|
+
},
|
|
321
|
+
"nanoid": {
|
|
322
|
+
"optional": true
|
|
323
|
+
},
|
|
324
|
+
"next-themes": {
|
|
325
|
+
"optional": true
|
|
326
|
+
},
|
|
327
|
+
"prop-types": {
|
|
328
|
+
"optional": true
|
|
329
|
+
},
|
|
330
|
+
"radix-ui": {
|
|
331
|
+
"optional": true
|
|
332
|
+
},
|
|
333
|
+
"react-day-picker": {
|
|
334
|
+
"optional": true
|
|
335
|
+
},
|
|
336
|
+
"react-easy-crop": {
|
|
337
|
+
"optional": true
|
|
338
|
+
},
|
|
339
|
+
"react-error-boundary": {
|
|
340
|
+
"optional": true
|
|
341
|
+
},
|
|
342
|
+
"react-is": {
|
|
343
|
+
"optional": true
|
|
344
|
+
},
|
|
345
|
+
"react-remove-scroll": {
|
|
346
|
+
"optional": true
|
|
347
|
+
},
|
|
348
|
+
"react-resizable-panels": {
|
|
349
|
+
"optional": true
|
|
350
|
+
},
|
|
351
|
+
"react-smooth": {
|
|
352
|
+
"optional": true
|
|
353
|
+
},
|
|
354
|
+
"react-transition-group": {
|
|
355
|
+
"optional": true
|
|
356
|
+
},
|
|
357
|
+
"recharts": {
|
|
358
|
+
"optional": true
|
|
359
|
+
},
|
|
360
|
+
"recharts-scale": {
|
|
361
|
+
"optional": true
|
|
362
|
+
},
|
|
363
|
+
"sonner": {
|
|
364
|
+
"optional": true
|
|
365
|
+
},
|
|
366
|
+
"tailwind-merge": {
|
|
367
|
+
"optional": true
|
|
368
|
+
},
|
|
369
|
+
"tailwindcss": {
|
|
370
|
+
"optional": true
|
|
371
|
+
},
|
|
372
|
+
"tiny-invariant": {
|
|
373
|
+
"optional": true
|
|
374
|
+
},
|
|
375
|
+
"tw-animate-css": {
|
|
376
|
+
"optional": true
|
|
377
|
+
},
|
|
378
|
+
"vaul": {
|
|
379
|
+
"optional": true
|
|
380
|
+
},
|
|
381
|
+
"victory-vendor": {
|
|
382
|
+
"optional": true
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"gitHead": "2cdd3f78e11ced73fb109ba9d4718476370829c7"
|
|
386
|
+
}
|