shadcn-vue 2.6.2 → 2.7.1
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/{api-DZ7Z_MtF.d.ts → api-910oujEW.d.ts} +171 -166
- package/dist/api-910oujEW.d.ts.map +1 -0
- package/dist/{get-config-DrAY4347.d.ts → get-config-HtUBua2Z.d.ts} +2 -2
- package/dist/get-config-HtUBua2Z.d.ts.map +1 -0
- package/dist/{index-CZ1rwcGp.d.ts → index-DlppMkfr.d.ts} +367 -341
- package/dist/index-DlppMkfr.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +32 -14
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +3 -3
- package/dist/{mcp-CSdaDjDY.js → mcp-CLEmWRoA.js} +2 -2
- package/dist/{mcp-CSdaDjDY.js.map → mcp-CLEmWRoA.js.map} +1 -1
- package/dist/registry/index.d.ts +3 -3
- package/dist/registry/index.js +2 -2
- package/dist/{registry-BIOMgIDT.js → registry-CWYPYAA2.js} +10 -4
- package/dist/{registry-BIOMgIDT.js.map → registry-CWYPYAA2.js.map} +1 -1
- package/dist/schema/index.d.ts +1 -1
- package/dist/schema/index.js +1 -1
- package/dist/{schema-_wQCad_c.js → schema-CjAXtlQ7.js} +2 -1
- package/dist/schema-CjAXtlQ7.js.map +1 -0
- package/dist/utils/index.d.ts +2 -2
- package/package.json +2 -2
- package/dist/api-DZ7Z_MtF.d.ts.map +0 -1
- package/dist/get-config-DrAY4347.d.ts.map +0 -1
- package/dist/index-CZ1rwcGp.d.ts.map +0 -1
- package/dist/schema-_wQCad_c.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as registryItemSchema, g as registryIndexSchema } from "./index-
|
|
2
|
-
import { t as Config } from "./get-config-
|
|
1
|
+
import { C as registryItemSchema, g as registryIndexSchema } from "./index-DlppMkfr.js";
|
|
2
|
+
import { t as Config } from "./get-config-HtUBua2Z.js";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/registry/api.d.ts
|
|
@@ -20,7 +20,6 @@ declare function getRegistry(name: string, options?: {
|
|
|
20
20
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
21
21
|
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
22
22
|
$schema?: string | undefined;
|
|
23
|
-
typescript?: boolean | undefined;
|
|
24
23
|
tailwind?: {
|
|
25
24
|
config?: string | undefined;
|
|
26
25
|
baseColor?: string | undefined;
|
|
@@ -28,7 +27,9 @@ declare function getRegistry(name: string, options?: {
|
|
|
28
27
|
cssVariables?: boolean | undefined;
|
|
29
28
|
prefix?: string | undefined;
|
|
30
29
|
} | undefined;
|
|
30
|
+
typescript?: boolean | undefined;
|
|
31
31
|
rtl?: boolean | undefined;
|
|
32
|
+
pointer?: boolean | undefined;
|
|
32
33
|
aliases?: {
|
|
33
34
|
components?: string | undefined;
|
|
34
35
|
utils?: string | undefined;
|
|
@@ -45,14 +46,6 @@ declare function getRegistry(name: string, options?: {
|
|
|
45
46
|
} | undefined;
|
|
46
47
|
title?: string | undefined;
|
|
47
48
|
$schema?: string | undefined;
|
|
48
|
-
tailwind?: {
|
|
49
|
-
config?: {
|
|
50
|
-
theme?: Record<string, any> | undefined;
|
|
51
|
-
content?: string[] | undefined;
|
|
52
|
-
plugins?: string[] | undefined;
|
|
53
|
-
} | undefined;
|
|
54
|
-
} | undefined;
|
|
55
|
-
css?: Record<string, any> | undefined;
|
|
56
49
|
extends?: string | undefined;
|
|
57
50
|
author?: string | undefined;
|
|
58
51
|
description?: string | undefined;
|
|
@@ -61,7 +54,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
61
54
|
registryDependencies?: string[] | undefined;
|
|
62
55
|
files?: ({
|
|
63
56
|
path: string;
|
|
64
|
-
type: "registry:
|
|
57
|
+
type: "registry:file" | "registry:page";
|
|
65
58
|
target: string;
|
|
66
59
|
content?: string | undefined;
|
|
67
60
|
} | {
|
|
@@ -70,11 +63,19 @@ declare function getRegistry(name: string, options?: {
|
|
|
70
63
|
content?: string | undefined;
|
|
71
64
|
target?: string | undefined;
|
|
72
65
|
})[] | undefined;
|
|
66
|
+
tailwind?: {
|
|
67
|
+
config?: {
|
|
68
|
+
theme?: Record<string, any> | undefined;
|
|
69
|
+
content?: string[] | undefined;
|
|
70
|
+
plugins?: string[] | undefined;
|
|
71
|
+
} | undefined;
|
|
72
|
+
} | undefined;
|
|
73
73
|
cssVars?: {
|
|
74
74
|
theme?: Record<string, string> | undefined;
|
|
75
75
|
light?: Record<string, string> | undefined;
|
|
76
76
|
dark?: Record<string, string> | undefined;
|
|
77
77
|
} | undefined;
|
|
78
|
+
css?: Record<string, any> | undefined;
|
|
78
79
|
envVars?: Record<string, string> | undefined;
|
|
79
80
|
meta?: Record<string, any> | undefined;
|
|
80
81
|
docs?: string | undefined;
|
|
@@ -92,14 +93,6 @@ declare function getRegistry(name: string, options?: {
|
|
|
92
93
|
type: "registry:font";
|
|
93
94
|
title?: string | undefined;
|
|
94
95
|
$schema?: string | undefined;
|
|
95
|
-
tailwind?: {
|
|
96
|
-
config?: {
|
|
97
|
-
theme?: Record<string, any> | undefined;
|
|
98
|
-
content?: string[] | undefined;
|
|
99
|
-
plugins?: string[] | undefined;
|
|
100
|
-
} | undefined;
|
|
101
|
-
} | undefined;
|
|
102
|
-
css?: Record<string, any> | undefined;
|
|
103
96
|
extends?: string | undefined;
|
|
104
97
|
author?: string | undefined;
|
|
105
98
|
description?: string | undefined;
|
|
@@ -108,7 +101,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
108
101
|
registryDependencies?: string[] | undefined;
|
|
109
102
|
files?: ({
|
|
110
103
|
path: string;
|
|
111
|
-
type: "registry:
|
|
104
|
+
type: "registry:file" | "registry:page";
|
|
112
105
|
target: string;
|
|
113
106
|
content?: string | undefined;
|
|
114
107
|
} | {
|
|
@@ -117,28 +110,28 @@ declare function getRegistry(name: string, options?: {
|
|
|
117
110
|
content?: string | undefined;
|
|
118
111
|
target?: string | undefined;
|
|
119
112
|
})[] | undefined;
|
|
113
|
+
tailwind?: {
|
|
114
|
+
config?: {
|
|
115
|
+
theme?: Record<string, any> | undefined;
|
|
116
|
+
content?: string[] | undefined;
|
|
117
|
+
plugins?: string[] | undefined;
|
|
118
|
+
} | undefined;
|
|
119
|
+
} | undefined;
|
|
120
120
|
cssVars?: {
|
|
121
121
|
theme?: Record<string, string> | undefined;
|
|
122
122
|
light?: Record<string, string> | undefined;
|
|
123
123
|
dark?: Record<string, string> | undefined;
|
|
124
124
|
} | undefined;
|
|
125
|
+
css?: Record<string, any> | undefined;
|
|
125
126
|
envVars?: Record<string, string> | undefined;
|
|
126
127
|
meta?: Record<string, any> | undefined;
|
|
127
128
|
docs?: string | undefined;
|
|
128
129
|
categories?: string[] | undefined;
|
|
129
130
|
} | {
|
|
130
131
|
name: string;
|
|
131
|
-
type: "registry:
|
|
132
|
+
type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
132
133
|
title?: string | undefined;
|
|
133
134
|
$schema?: string | undefined;
|
|
134
|
-
tailwind?: {
|
|
135
|
-
config?: {
|
|
136
|
-
theme?: Record<string, any> | undefined;
|
|
137
|
-
content?: string[] | undefined;
|
|
138
|
-
plugins?: string[] | undefined;
|
|
139
|
-
} | undefined;
|
|
140
|
-
} | undefined;
|
|
141
|
-
css?: Record<string, any> | undefined;
|
|
142
135
|
extends?: string | undefined;
|
|
143
136
|
author?: string | undefined;
|
|
144
137
|
description?: string | undefined;
|
|
@@ -147,7 +140,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
147
140
|
registryDependencies?: string[] | undefined;
|
|
148
141
|
files?: ({
|
|
149
142
|
path: string;
|
|
150
|
-
type: "registry:
|
|
143
|
+
type: "registry:file" | "registry:page";
|
|
151
144
|
target: string;
|
|
152
145
|
content?: string | undefined;
|
|
153
146
|
} | {
|
|
@@ -156,11 +149,19 @@ declare function getRegistry(name: string, options?: {
|
|
|
156
149
|
content?: string | undefined;
|
|
157
150
|
target?: string | undefined;
|
|
158
151
|
})[] | undefined;
|
|
152
|
+
tailwind?: {
|
|
153
|
+
config?: {
|
|
154
|
+
theme?: Record<string, any> | undefined;
|
|
155
|
+
content?: string[] | undefined;
|
|
156
|
+
plugins?: string[] | undefined;
|
|
157
|
+
} | undefined;
|
|
158
|
+
} | undefined;
|
|
159
159
|
cssVars?: {
|
|
160
160
|
theme?: Record<string, string> | undefined;
|
|
161
161
|
light?: Record<string, string> | undefined;
|
|
162
162
|
dark?: Record<string, string> | undefined;
|
|
163
163
|
} | undefined;
|
|
164
|
+
css?: Record<string, any> | undefined;
|
|
164
165
|
envVars?: Record<string, string> | undefined;
|
|
165
166
|
meta?: Record<string, any> | undefined;
|
|
166
167
|
docs?: string | undefined;
|
|
@@ -181,7 +182,6 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
181
182
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
182
183
|
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
183
184
|
$schema?: string | undefined;
|
|
184
|
-
typescript?: boolean | undefined;
|
|
185
185
|
tailwind?: {
|
|
186
186
|
config?: string | undefined;
|
|
187
187
|
baseColor?: string | undefined;
|
|
@@ -189,7 +189,9 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
189
189
|
cssVariables?: boolean | undefined;
|
|
190
190
|
prefix?: string | undefined;
|
|
191
191
|
} | undefined;
|
|
192
|
+
typescript?: boolean | undefined;
|
|
192
193
|
rtl?: boolean | undefined;
|
|
194
|
+
pointer?: boolean | undefined;
|
|
193
195
|
aliases?: {
|
|
194
196
|
components?: string | undefined;
|
|
195
197
|
utils?: string | undefined;
|
|
@@ -206,14 +208,6 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
206
208
|
} | undefined;
|
|
207
209
|
title?: string | undefined;
|
|
208
210
|
$schema?: string | undefined;
|
|
209
|
-
tailwind?: {
|
|
210
|
-
config?: {
|
|
211
|
-
theme?: Record<string, any> | undefined;
|
|
212
|
-
content?: string[] | undefined;
|
|
213
|
-
plugins?: string[] | undefined;
|
|
214
|
-
} | undefined;
|
|
215
|
-
} | undefined;
|
|
216
|
-
css?: Record<string, any> | undefined;
|
|
217
211
|
extends?: string | undefined;
|
|
218
212
|
author?: string | undefined;
|
|
219
213
|
description?: string | undefined;
|
|
@@ -222,7 +216,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
222
216
|
registryDependencies?: string[] | undefined;
|
|
223
217
|
files?: ({
|
|
224
218
|
path: string;
|
|
225
|
-
type: "registry:
|
|
219
|
+
type: "registry:file" | "registry:page";
|
|
226
220
|
target: string;
|
|
227
221
|
content?: string | undefined;
|
|
228
222
|
} | {
|
|
@@ -231,11 +225,19 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
231
225
|
content?: string | undefined;
|
|
232
226
|
target?: string | undefined;
|
|
233
227
|
})[] | undefined;
|
|
228
|
+
tailwind?: {
|
|
229
|
+
config?: {
|
|
230
|
+
theme?: Record<string, any> | undefined;
|
|
231
|
+
content?: string[] | undefined;
|
|
232
|
+
plugins?: string[] | undefined;
|
|
233
|
+
} | undefined;
|
|
234
|
+
} | undefined;
|
|
234
235
|
cssVars?: {
|
|
235
236
|
theme?: Record<string, string> | undefined;
|
|
236
237
|
light?: Record<string, string> | undefined;
|
|
237
238
|
dark?: Record<string, string> | undefined;
|
|
238
239
|
} | undefined;
|
|
240
|
+
css?: Record<string, any> | undefined;
|
|
239
241
|
envVars?: Record<string, string> | undefined;
|
|
240
242
|
meta?: Record<string, any> | undefined;
|
|
241
243
|
docs?: string | undefined;
|
|
@@ -253,14 +255,6 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
253
255
|
type: "registry:font";
|
|
254
256
|
title?: string | undefined;
|
|
255
257
|
$schema?: string | undefined;
|
|
256
|
-
tailwind?: {
|
|
257
|
-
config?: {
|
|
258
|
-
theme?: Record<string, any> | undefined;
|
|
259
|
-
content?: string[] | undefined;
|
|
260
|
-
plugins?: string[] | undefined;
|
|
261
|
-
} | undefined;
|
|
262
|
-
} | undefined;
|
|
263
|
-
css?: Record<string, any> | undefined;
|
|
264
258
|
extends?: string | undefined;
|
|
265
259
|
author?: string | undefined;
|
|
266
260
|
description?: string | undefined;
|
|
@@ -269,7 +263,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
269
263
|
registryDependencies?: string[] | undefined;
|
|
270
264
|
files?: ({
|
|
271
265
|
path: string;
|
|
272
|
-
type: "registry:
|
|
266
|
+
type: "registry:file" | "registry:page";
|
|
273
267
|
target: string;
|
|
274
268
|
content?: string | undefined;
|
|
275
269
|
} | {
|
|
@@ -278,28 +272,28 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
278
272
|
content?: string | undefined;
|
|
279
273
|
target?: string | undefined;
|
|
280
274
|
})[] | undefined;
|
|
275
|
+
tailwind?: {
|
|
276
|
+
config?: {
|
|
277
|
+
theme?: Record<string, any> | undefined;
|
|
278
|
+
content?: string[] | undefined;
|
|
279
|
+
plugins?: string[] | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
} | undefined;
|
|
281
282
|
cssVars?: {
|
|
282
283
|
theme?: Record<string, string> | undefined;
|
|
283
284
|
light?: Record<string, string> | undefined;
|
|
284
285
|
dark?: Record<string, string> | undefined;
|
|
285
286
|
} | undefined;
|
|
287
|
+
css?: Record<string, any> | undefined;
|
|
286
288
|
envVars?: Record<string, string> | undefined;
|
|
287
289
|
meta?: Record<string, any> | undefined;
|
|
288
290
|
docs?: string | undefined;
|
|
289
291
|
categories?: string[] | undefined;
|
|
290
292
|
} | {
|
|
291
293
|
name: string;
|
|
292
|
-
type: "registry:
|
|
294
|
+
type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
293
295
|
title?: string | undefined;
|
|
294
296
|
$schema?: string | undefined;
|
|
295
|
-
tailwind?: {
|
|
296
|
-
config?: {
|
|
297
|
-
theme?: Record<string, any> | undefined;
|
|
298
|
-
content?: string[] | undefined;
|
|
299
|
-
plugins?: string[] | undefined;
|
|
300
|
-
} | undefined;
|
|
301
|
-
} | undefined;
|
|
302
|
-
css?: Record<string, any> | undefined;
|
|
303
297
|
extends?: string | undefined;
|
|
304
298
|
author?: string | undefined;
|
|
305
299
|
description?: string | undefined;
|
|
@@ -308,7 +302,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
308
302
|
registryDependencies?: string[] | undefined;
|
|
309
303
|
files?: ({
|
|
310
304
|
path: string;
|
|
311
|
-
type: "registry:
|
|
305
|
+
type: "registry:file" | "registry:page";
|
|
312
306
|
target: string;
|
|
313
307
|
content?: string | undefined;
|
|
314
308
|
} | {
|
|
@@ -317,11 +311,19 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
317
311
|
content?: string | undefined;
|
|
318
312
|
target?: string | undefined;
|
|
319
313
|
})[] | undefined;
|
|
314
|
+
tailwind?: {
|
|
315
|
+
config?: {
|
|
316
|
+
theme?: Record<string, any> | undefined;
|
|
317
|
+
content?: string[] | undefined;
|
|
318
|
+
plugins?: string[] | undefined;
|
|
319
|
+
} | undefined;
|
|
320
|
+
} | undefined;
|
|
320
321
|
cssVars?: {
|
|
321
322
|
theme?: Record<string, string> | undefined;
|
|
322
323
|
light?: Record<string, string> | undefined;
|
|
323
324
|
dark?: Record<string, string> | undefined;
|
|
324
325
|
} | undefined;
|
|
326
|
+
css?: Record<string, any> | undefined;
|
|
325
327
|
envVars?: Record<string, string> | undefined;
|
|
326
328
|
meta?: Record<string, any> | undefined;
|
|
327
329
|
docs?: string | undefined;
|
|
@@ -331,19 +333,11 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
331
333
|
config?: Partial<Config>;
|
|
332
334
|
useCache?: boolean;
|
|
333
335
|
}): Promise<{
|
|
334
|
-
tailwind?: {
|
|
335
|
-
config?: {
|
|
336
|
-
theme?: Record<string, any> | undefined;
|
|
337
|
-
content?: string[] | undefined;
|
|
338
|
-
plugins?: string[] | undefined;
|
|
339
|
-
} | undefined;
|
|
340
|
-
} | undefined;
|
|
341
|
-
css?: Record<string, any> | undefined;
|
|
342
336
|
dependencies?: string[] | undefined;
|
|
343
337
|
devDependencies?: string[] | undefined;
|
|
344
338
|
files?: ({
|
|
345
339
|
path: string;
|
|
346
|
-
type: "registry:
|
|
340
|
+
type: "registry:file" | "registry:page";
|
|
347
341
|
target: string;
|
|
348
342
|
content?: string | undefined;
|
|
349
343
|
} | {
|
|
@@ -352,11 +346,19 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
352
346
|
content?: string | undefined;
|
|
353
347
|
target?: string | undefined;
|
|
354
348
|
})[] | undefined;
|
|
349
|
+
tailwind?: {
|
|
350
|
+
config?: {
|
|
351
|
+
theme?: Record<string, any> | undefined;
|
|
352
|
+
content?: string[] | undefined;
|
|
353
|
+
plugins?: string[] | undefined;
|
|
354
|
+
} | undefined;
|
|
355
|
+
} | undefined;
|
|
355
356
|
cssVars?: {
|
|
356
357
|
theme?: Record<string, string> | undefined;
|
|
357
358
|
light?: Record<string, string> | undefined;
|
|
358
359
|
dark?: Record<string, string> | undefined;
|
|
359
360
|
} | undefined;
|
|
361
|
+
css?: Record<string, any> | undefined;
|
|
360
362
|
envVars?: Record<string, string> | undefined;
|
|
361
363
|
docs?: string | undefined;
|
|
362
364
|
fonts?: {
|
|
@@ -372,14 +374,6 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
372
374
|
type: "registry:font";
|
|
373
375
|
title?: string | undefined;
|
|
374
376
|
$schema?: string | undefined;
|
|
375
|
-
tailwind?: {
|
|
376
|
-
config?: {
|
|
377
|
-
theme?: Record<string, any> | undefined;
|
|
378
|
-
content?: string[] | undefined;
|
|
379
|
-
plugins?: string[] | undefined;
|
|
380
|
-
} | undefined;
|
|
381
|
-
} | undefined;
|
|
382
|
-
css?: Record<string, any> | undefined;
|
|
383
377
|
extends?: string | undefined;
|
|
384
378
|
author?: string | undefined;
|
|
385
379
|
description?: string | undefined;
|
|
@@ -388,7 +382,7 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
388
382
|
registryDependencies?: string[] | undefined;
|
|
389
383
|
files?: ({
|
|
390
384
|
path: string;
|
|
391
|
-
type: "registry:
|
|
385
|
+
type: "registry:file" | "registry:page";
|
|
392
386
|
target: string;
|
|
393
387
|
content?: string | undefined;
|
|
394
388
|
} | {
|
|
@@ -397,11 +391,19 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
397
391
|
content?: string | undefined;
|
|
398
392
|
target?: string | undefined;
|
|
399
393
|
})[] | undefined;
|
|
394
|
+
tailwind?: {
|
|
395
|
+
config?: {
|
|
396
|
+
theme?: Record<string, any> | undefined;
|
|
397
|
+
content?: string[] | undefined;
|
|
398
|
+
plugins?: string[] | undefined;
|
|
399
|
+
} | undefined;
|
|
400
|
+
} | undefined;
|
|
400
401
|
cssVars?: {
|
|
401
402
|
theme?: Record<string, string> | undefined;
|
|
402
403
|
light?: Record<string, string> | undefined;
|
|
403
404
|
dark?: Record<string, string> | undefined;
|
|
404
405
|
} | undefined;
|
|
406
|
+
css?: Record<string, any> | undefined;
|
|
405
407
|
envVars?: Record<string, string> | undefined;
|
|
406
408
|
meta?: Record<string, any> | undefined;
|
|
407
409
|
docs?: string | undefined;
|
|
@@ -426,7 +428,6 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
426
428
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
427
429
|
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
428
430
|
$schema?: string | undefined;
|
|
429
|
-
typescript?: boolean | undefined;
|
|
430
431
|
tailwind?: {
|
|
431
432
|
config?: string | undefined;
|
|
432
433
|
baseColor?: string | undefined;
|
|
@@ -434,7 +435,9 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
434
435
|
cssVariables?: boolean | undefined;
|
|
435
436
|
prefix?: string | undefined;
|
|
436
437
|
} | undefined;
|
|
438
|
+
typescript?: boolean | undefined;
|
|
437
439
|
rtl?: boolean | undefined;
|
|
440
|
+
pointer?: boolean | undefined;
|
|
438
441
|
aliases?: {
|
|
439
442
|
components?: string | undefined;
|
|
440
443
|
utils?: string | undefined;
|
|
@@ -451,14 +454,6 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
451
454
|
} | undefined;
|
|
452
455
|
title?: string | undefined;
|
|
453
456
|
$schema?: string | undefined;
|
|
454
|
-
tailwind?: {
|
|
455
|
-
config?: {
|
|
456
|
-
theme?: Record<string, any> | undefined;
|
|
457
|
-
content?: string[] | undefined;
|
|
458
|
-
plugins?: string[] | undefined;
|
|
459
|
-
} | undefined;
|
|
460
|
-
} | undefined;
|
|
461
|
-
css?: Record<string, any> | undefined;
|
|
462
457
|
extends?: string | undefined;
|
|
463
458
|
author?: string | undefined;
|
|
464
459
|
description?: string | undefined;
|
|
@@ -467,7 +462,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
467
462
|
registryDependencies?: string[] | undefined;
|
|
468
463
|
files?: ({
|
|
469
464
|
path: string;
|
|
470
|
-
type: "registry:
|
|
465
|
+
type: "registry:file" | "registry:page";
|
|
471
466
|
target: string;
|
|
472
467
|
content?: string | undefined;
|
|
473
468
|
} | {
|
|
@@ -476,11 +471,19 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
476
471
|
content?: string | undefined;
|
|
477
472
|
target?: string | undefined;
|
|
478
473
|
})[] | undefined;
|
|
474
|
+
tailwind?: {
|
|
475
|
+
config?: {
|
|
476
|
+
theme?: Record<string, any> | undefined;
|
|
477
|
+
content?: string[] | undefined;
|
|
478
|
+
plugins?: string[] | undefined;
|
|
479
|
+
} | undefined;
|
|
480
|
+
} | undefined;
|
|
479
481
|
cssVars?: {
|
|
480
482
|
theme?: Record<string, string> | undefined;
|
|
481
483
|
light?: Record<string, string> | undefined;
|
|
482
484
|
dark?: Record<string, string> | undefined;
|
|
483
485
|
} | undefined;
|
|
486
|
+
css?: Record<string, any> | undefined;
|
|
484
487
|
envVars?: Record<string, string> | undefined;
|
|
485
488
|
meta?: Record<string, any> | undefined;
|
|
486
489
|
docs?: string | undefined;
|
|
@@ -498,14 +501,6 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
498
501
|
type: "registry:font";
|
|
499
502
|
title?: string | undefined;
|
|
500
503
|
$schema?: string | undefined;
|
|
501
|
-
tailwind?: {
|
|
502
|
-
config?: {
|
|
503
|
-
theme?: Record<string, any> | undefined;
|
|
504
|
-
content?: string[] | undefined;
|
|
505
|
-
plugins?: string[] | undefined;
|
|
506
|
-
} | undefined;
|
|
507
|
-
} | undefined;
|
|
508
|
-
css?: Record<string, any> | undefined;
|
|
509
504
|
extends?: string | undefined;
|
|
510
505
|
author?: string | undefined;
|
|
511
506
|
description?: string | undefined;
|
|
@@ -514,7 +509,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
514
509
|
registryDependencies?: string[] | undefined;
|
|
515
510
|
files?: ({
|
|
516
511
|
path: string;
|
|
517
|
-
type: "registry:
|
|
512
|
+
type: "registry:file" | "registry:page";
|
|
518
513
|
target: string;
|
|
519
514
|
content?: string | undefined;
|
|
520
515
|
} | {
|
|
@@ -523,28 +518,28 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
523
518
|
content?: string | undefined;
|
|
524
519
|
target?: string | undefined;
|
|
525
520
|
})[] | undefined;
|
|
521
|
+
tailwind?: {
|
|
522
|
+
config?: {
|
|
523
|
+
theme?: Record<string, any> | undefined;
|
|
524
|
+
content?: string[] | undefined;
|
|
525
|
+
plugins?: string[] | undefined;
|
|
526
|
+
} | undefined;
|
|
527
|
+
} | undefined;
|
|
526
528
|
cssVars?: {
|
|
527
529
|
theme?: Record<string, string> | undefined;
|
|
528
530
|
light?: Record<string, string> | undefined;
|
|
529
531
|
dark?: Record<string, string> | undefined;
|
|
530
532
|
} | undefined;
|
|
533
|
+
css?: Record<string, any> | undefined;
|
|
531
534
|
envVars?: Record<string, string> | undefined;
|
|
532
535
|
meta?: Record<string, any> | undefined;
|
|
533
536
|
docs?: string | undefined;
|
|
534
537
|
categories?: string[] | undefined;
|
|
535
538
|
} | {
|
|
536
539
|
name: string;
|
|
537
|
-
type: "registry:
|
|
540
|
+
type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
538
541
|
title?: string | undefined;
|
|
539
542
|
$schema?: string | undefined;
|
|
540
|
-
tailwind?: {
|
|
541
|
-
config?: {
|
|
542
|
-
theme?: Record<string, any> | undefined;
|
|
543
|
-
content?: string[] | undefined;
|
|
544
|
-
plugins?: string[] | undefined;
|
|
545
|
-
} | undefined;
|
|
546
|
-
} | undefined;
|
|
547
|
-
css?: Record<string, any> | undefined;
|
|
548
543
|
extends?: string | undefined;
|
|
549
544
|
author?: string | undefined;
|
|
550
545
|
description?: string | undefined;
|
|
@@ -553,7 +548,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
553
548
|
registryDependencies?: string[] | undefined;
|
|
554
549
|
files?: ({
|
|
555
550
|
path: string;
|
|
556
|
-
type: "registry:
|
|
551
|
+
type: "registry:file" | "registry:page";
|
|
557
552
|
target: string;
|
|
558
553
|
content?: string | undefined;
|
|
559
554
|
} | {
|
|
@@ -562,11 +557,19 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
562
557
|
content?: string | undefined;
|
|
563
558
|
target?: string | undefined;
|
|
564
559
|
})[] | undefined;
|
|
560
|
+
tailwind?: {
|
|
561
|
+
config?: {
|
|
562
|
+
theme?: Record<string, any> | undefined;
|
|
563
|
+
content?: string[] | undefined;
|
|
564
|
+
plugins?: string[] | undefined;
|
|
565
|
+
} | undefined;
|
|
566
|
+
} | undefined;
|
|
565
567
|
cssVars?: {
|
|
566
568
|
theme?: Record<string, string> | undefined;
|
|
567
569
|
light?: Record<string, string> | undefined;
|
|
568
570
|
dark?: Record<string, string> | undefined;
|
|
569
571
|
} | undefined;
|
|
572
|
+
css?: Record<string, any> | undefined;
|
|
570
573
|
envVars?: Record<string, string> | undefined;
|
|
571
574
|
meta?: Record<string, any> | undefined;
|
|
572
575
|
docs?: string | undefined;
|
|
@@ -1050,7 +1053,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1050
1053
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
1051
1054
|
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1052
1055
|
$schema?: string | undefined;
|
|
1053
|
-
typescript?: boolean | undefined;
|
|
1054
1056
|
tailwind?: {
|
|
1055
1057
|
config?: string | undefined;
|
|
1056
1058
|
baseColor?: string | undefined;
|
|
@@ -1058,7 +1060,9 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1058
1060
|
cssVariables?: boolean | undefined;
|
|
1059
1061
|
prefix?: string | undefined;
|
|
1060
1062
|
} | undefined;
|
|
1063
|
+
typescript?: boolean | undefined;
|
|
1061
1064
|
rtl?: boolean | undefined;
|
|
1065
|
+
pointer?: boolean | undefined;
|
|
1062
1066
|
aliases?: {
|
|
1063
1067
|
components?: string | undefined;
|
|
1064
1068
|
utils?: string | undefined;
|
|
@@ -1075,14 +1079,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1075
1079
|
} | undefined;
|
|
1076
1080
|
title?: string | undefined;
|
|
1077
1081
|
$schema?: string | undefined;
|
|
1078
|
-
tailwind?: {
|
|
1079
|
-
config?: {
|
|
1080
|
-
theme?: Record<string, any> | undefined;
|
|
1081
|
-
content?: string[] | undefined;
|
|
1082
|
-
plugins?: string[] | undefined;
|
|
1083
|
-
} | undefined;
|
|
1084
|
-
} | undefined;
|
|
1085
|
-
css?: Record<string, any> | undefined;
|
|
1086
1082
|
extends?: string | undefined;
|
|
1087
1083
|
author?: string | undefined;
|
|
1088
1084
|
description?: string | undefined;
|
|
@@ -1091,7 +1087,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1091
1087
|
registryDependencies?: string[] | undefined;
|
|
1092
1088
|
files?: ({
|
|
1093
1089
|
path: string;
|
|
1094
|
-
type: "registry:
|
|
1090
|
+
type: "registry:file" | "registry:page";
|
|
1095
1091
|
target: string;
|
|
1096
1092
|
content?: string | undefined;
|
|
1097
1093
|
} | {
|
|
@@ -1100,11 +1096,19 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1100
1096
|
content?: string | undefined;
|
|
1101
1097
|
target?: string | undefined;
|
|
1102
1098
|
})[] | undefined;
|
|
1099
|
+
tailwind?: {
|
|
1100
|
+
config?: {
|
|
1101
|
+
theme?: Record<string, any> | undefined;
|
|
1102
|
+
content?: string[] | undefined;
|
|
1103
|
+
plugins?: string[] | undefined;
|
|
1104
|
+
} | undefined;
|
|
1105
|
+
} | undefined;
|
|
1103
1106
|
cssVars?: {
|
|
1104
1107
|
theme?: Record<string, string> | undefined;
|
|
1105
1108
|
light?: Record<string, string> | undefined;
|
|
1106
1109
|
dark?: Record<string, string> | undefined;
|
|
1107
1110
|
} | undefined;
|
|
1111
|
+
css?: Record<string, any> | undefined;
|
|
1108
1112
|
envVars?: Record<string, string> | undefined;
|
|
1109
1113
|
meta?: Record<string, any> | undefined;
|
|
1110
1114
|
docs?: string | undefined;
|
|
@@ -1122,14 +1126,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1122
1126
|
type: "registry:font";
|
|
1123
1127
|
title?: string | undefined;
|
|
1124
1128
|
$schema?: string | undefined;
|
|
1125
|
-
tailwind?: {
|
|
1126
|
-
config?: {
|
|
1127
|
-
theme?: Record<string, any> | undefined;
|
|
1128
|
-
content?: string[] | undefined;
|
|
1129
|
-
plugins?: string[] | undefined;
|
|
1130
|
-
} | undefined;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
css?: Record<string, any> | undefined;
|
|
1133
1129
|
extends?: string | undefined;
|
|
1134
1130
|
author?: string | undefined;
|
|
1135
1131
|
description?: string | undefined;
|
|
@@ -1138,7 +1134,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1138
1134
|
registryDependencies?: string[] | undefined;
|
|
1139
1135
|
files?: ({
|
|
1140
1136
|
path: string;
|
|
1141
|
-
type: "registry:
|
|
1137
|
+
type: "registry:file" | "registry:page";
|
|
1142
1138
|
target: string;
|
|
1143
1139
|
content?: string | undefined;
|
|
1144
1140
|
} | {
|
|
@@ -1147,28 +1143,28 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1147
1143
|
content?: string | undefined;
|
|
1148
1144
|
target?: string | undefined;
|
|
1149
1145
|
})[] | undefined;
|
|
1146
|
+
tailwind?: {
|
|
1147
|
+
config?: {
|
|
1148
|
+
theme?: Record<string, any> | undefined;
|
|
1149
|
+
content?: string[] | undefined;
|
|
1150
|
+
plugins?: string[] | undefined;
|
|
1151
|
+
} | undefined;
|
|
1152
|
+
} | undefined;
|
|
1150
1153
|
cssVars?: {
|
|
1151
1154
|
theme?: Record<string, string> | undefined;
|
|
1152
1155
|
light?: Record<string, string> | undefined;
|
|
1153
1156
|
dark?: Record<string, string> | undefined;
|
|
1154
1157
|
} | undefined;
|
|
1158
|
+
css?: Record<string, any> | undefined;
|
|
1155
1159
|
envVars?: Record<string, string> | undefined;
|
|
1156
1160
|
meta?: Record<string, any> | undefined;
|
|
1157
1161
|
docs?: string | undefined;
|
|
1158
1162
|
categories?: string[] | undefined;
|
|
1159
1163
|
} | {
|
|
1160
1164
|
name: string;
|
|
1161
|
-
type: "registry:
|
|
1165
|
+
type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
1162
1166
|
title?: string | undefined;
|
|
1163
1167
|
$schema?: string | undefined;
|
|
1164
|
-
tailwind?: {
|
|
1165
|
-
config?: {
|
|
1166
|
-
theme?: Record<string, any> | undefined;
|
|
1167
|
-
content?: string[] | undefined;
|
|
1168
|
-
plugins?: string[] | undefined;
|
|
1169
|
-
} | undefined;
|
|
1170
|
-
} | undefined;
|
|
1171
|
-
css?: Record<string, any> | undefined;
|
|
1172
1168
|
extends?: string | undefined;
|
|
1173
1169
|
author?: string | undefined;
|
|
1174
1170
|
description?: string | undefined;
|
|
@@ -1177,7 +1173,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1177
1173
|
registryDependencies?: string[] | undefined;
|
|
1178
1174
|
files?: ({
|
|
1179
1175
|
path: string;
|
|
1180
|
-
type: "registry:
|
|
1176
|
+
type: "registry:file" | "registry:page";
|
|
1181
1177
|
target: string;
|
|
1182
1178
|
content?: string | undefined;
|
|
1183
1179
|
} | {
|
|
@@ -1186,11 +1182,19 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1186
1182
|
content?: string | undefined;
|
|
1187
1183
|
target?: string | undefined;
|
|
1188
1184
|
})[] | undefined;
|
|
1185
|
+
tailwind?: {
|
|
1186
|
+
config?: {
|
|
1187
|
+
theme?: Record<string, any> | undefined;
|
|
1188
|
+
content?: string[] | undefined;
|
|
1189
|
+
plugins?: string[] | undefined;
|
|
1190
|
+
} | undefined;
|
|
1191
|
+
} | undefined;
|
|
1189
1192
|
cssVars?: {
|
|
1190
1193
|
theme?: Record<string, string> | undefined;
|
|
1191
1194
|
light?: Record<string, string> | undefined;
|
|
1192
1195
|
dark?: Record<string, string> | undefined;
|
|
1193
1196
|
} | undefined;
|
|
1197
|
+
css?: Record<string, any> | undefined;
|
|
1194
1198
|
envVars?: Record<string, string> | undefined;
|
|
1195
1199
|
meta?: Record<string, any> | undefined;
|
|
1196
1200
|
docs?: string | undefined;
|
|
@@ -1210,7 +1214,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1210
1214
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
1211
1215
|
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1212
1216
|
$schema?: string | undefined;
|
|
1213
|
-
typescript?: boolean | undefined;
|
|
1214
1217
|
tailwind?: {
|
|
1215
1218
|
config?: string | undefined;
|
|
1216
1219
|
baseColor?: string | undefined;
|
|
@@ -1218,7 +1221,9 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1218
1221
|
cssVariables?: boolean | undefined;
|
|
1219
1222
|
prefix?: string | undefined;
|
|
1220
1223
|
} | undefined;
|
|
1224
|
+
typescript?: boolean | undefined;
|
|
1221
1225
|
rtl?: boolean | undefined;
|
|
1226
|
+
pointer?: boolean | undefined;
|
|
1222
1227
|
aliases?: {
|
|
1223
1228
|
components?: string | undefined;
|
|
1224
1229
|
utils?: string | undefined;
|
|
@@ -1235,14 +1240,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1235
1240
|
} | undefined;
|
|
1236
1241
|
title?: string | undefined;
|
|
1237
1242
|
$schema?: string | undefined;
|
|
1238
|
-
tailwind?: {
|
|
1239
|
-
config?: {
|
|
1240
|
-
theme?: Record<string, any> | undefined;
|
|
1241
|
-
content?: string[] | undefined;
|
|
1242
|
-
plugins?: string[] | undefined;
|
|
1243
|
-
} | undefined;
|
|
1244
|
-
} | undefined;
|
|
1245
|
-
css?: Record<string, any> | undefined;
|
|
1246
1243
|
extends?: string | undefined;
|
|
1247
1244
|
author?: string | undefined;
|
|
1248
1245
|
description?: string | undefined;
|
|
@@ -1251,7 +1248,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1251
1248
|
registryDependencies?: string[] | undefined;
|
|
1252
1249
|
files?: ({
|
|
1253
1250
|
path: string;
|
|
1254
|
-
type: "registry:
|
|
1251
|
+
type: "registry:file" | "registry:page";
|
|
1255
1252
|
target: string;
|
|
1256
1253
|
content?: string | undefined;
|
|
1257
1254
|
} | {
|
|
@@ -1260,11 +1257,19 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1260
1257
|
content?: string | undefined;
|
|
1261
1258
|
target?: string | undefined;
|
|
1262
1259
|
})[] | undefined;
|
|
1260
|
+
tailwind?: {
|
|
1261
|
+
config?: {
|
|
1262
|
+
theme?: Record<string, any> | undefined;
|
|
1263
|
+
content?: string[] | undefined;
|
|
1264
|
+
plugins?: string[] | undefined;
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
} | undefined;
|
|
1263
1267
|
cssVars?: {
|
|
1264
1268
|
theme?: Record<string, string> | undefined;
|
|
1265
1269
|
light?: Record<string, string> | undefined;
|
|
1266
1270
|
dark?: Record<string, string> | undefined;
|
|
1267
1271
|
} | undefined;
|
|
1272
|
+
css?: Record<string, any> | undefined;
|
|
1268
1273
|
envVars?: Record<string, string> | undefined;
|
|
1269
1274
|
meta?: Record<string, any> | undefined;
|
|
1270
1275
|
docs?: string | undefined;
|
|
@@ -1282,14 +1287,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1282
1287
|
type: "registry:font";
|
|
1283
1288
|
title?: string | undefined;
|
|
1284
1289
|
$schema?: string | undefined;
|
|
1285
|
-
tailwind?: {
|
|
1286
|
-
config?: {
|
|
1287
|
-
theme?: Record<string, any> | undefined;
|
|
1288
|
-
content?: string[] | undefined;
|
|
1289
|
-
plugins?: string[] | undefined;
|
|
1290
|
-
} | undefined;
|
|
1291
|
-
} | undefined;
|
|
1292
|
-
css?: Record<string, any> | undefined;
|
|
1293
1290
|
extends?: string | undefined;
|
|
1294
1291
|
author?: string | undefined;
|
|
1295
1292
|
description?: string | undefined;
|
|
@@ -1298,7 +1295,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1298
1295
|
registryDependencies?: string[] | undefined;
|
|
1299
1296
|
files?: ({
|
|
1300
1297
|
path: string;
|
|
1301
|
-
type: "registry:
|
|
1298
|
+
type: "registry:file" | "registry:page";
|
|
1302
1299
|
target: string;
|
|
1303
1300
|
content?: string | undefined;
|
|
1304
1301
|
} | {
|
|
@@ -1307,28 +1304,28 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1307
1304
|
content?: string | undefined;
|
|
1308
1305
|
target?: string | undefined;
|
|
1309
1306
|
})[] | undefined;
|
|
1307
|
+
tailwind?: {
|
|
1308
|
+
config?: {
|
|
1309
|
+
theme?: Record<string, any> | undefined;
|
|
1310
|
+
content?: string[] | undefined;
|
|
1311
|
+
plugins?: string[] | undefined;
|
|
1312
|
+
} | undefined;
|
|
1313
|
+
} | undefined;
|
|
1310
1314
|
cssVars?: {
|
|
1311
1315
|
theme?: Record<string, string> | undefined;
|
|
1312
1316
|
light?: Record<string, string> | undefined;
|
|
1313
1317
|
dark?: Record<string, string> | undefined;
|
|
1314
1318
|
} | undefined;
|
|
1319
|
+
css?: Record<string, any> | undefined;
|
|
1315
1320
|
envVars?: Record<string, string> | undefined;
|
|
1316
1321
|
meta?: Record<string, any> | undefined;
|
|
1317
1322
|
docs?: string | undefined;
|
|
1318
1323
|
categories?: string[] | undefined;
|
|
1319
1324
|
} | {
|
|
1320
1325
|
name: string;
|
|
1321
|
-
type: "registry:
|
|
1326
|
+
type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
1322
1327
|
title?: string | undefined;
|
|
1323
1328
|
$schema?: string | undefined;
|
|
1324
|
-
tailwind?: {
|
|
1325
|
-
config?: {
|
|
1326
|
-
theme?: Record<string, any> | undefined;
|
|
1327
|
-
content?: string[] | undefined;
|
|
1328
|
-
plugins?: string[] | undefined;
|
|
1329
|
-
} | undefined;
|
|
1330
|
-
} | undefined;
|
|
1331
|
-
css?: Record<string, any> | undefined;
|
|
1332
1329
|
extends?: string | undefined;
|
|
1333
1330
|
author?: string | undefined;
|
|
1334
1331
|
description?: string | undefined;
|
|
@@ -1337,7 +1334,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1337
1334
|
registryDependencies?: string[] | undefined;
|
|
1338
1335
|
files?: ({
|
|
1339
1336
|
path: string;
|
|
1340
|
-
type: "registry:
|
|
1337
|
+
type: "registry:file" | "registry:page";
|
|
1341
1338
|
target: string;
|
|
1342
1339
|
content?: string | undefined;
|
|
1343
1340
|
} | {
|
|
@@ -1346,11 +1343,19 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1346
1343
|
content?: string | undefined;
|
|
1347
1344
|
target?: string | undefined;
|
|
1348
1345
|
})[] | undefined;
|
|
1346
|
+
tailwind?: {
|
|
1347
|
+
config?: {
|
|
1348
|
+
theme?: Record<string, any> | undefined;
|
|
1349
|
+
content?: string[] | undefined;
|
|
1350
|
+
plugins?: string[] | undefined;
|
|
1351
|
+
} | undefined;
|
|
1352
|
+
} | undefined;
|
|
1349
1353
|
cssVars?: {
|
|
1350
1354
|
theme?: Record<string, string> | undefined;
|
|
1351
1355
|
light?: Record<string, string> | undefined;
|
|
1352
1356
|
dark?: Record<string, string> | undefined;
|
|
1353
1357
|
} | undefined;
|
|
1358
|
+
css?: Record<string, any> | undefined;
|
|
1354
1359
|
envVars?: Record<string, string> | undefined;
|
|
1355
1360
|
meta?: Record<string, any> | undefined;
|
|
1356
1361
|
docs?: string | undefined;
|
|
@@ -1365,4 +1370,4 @@ declare function getRegistriesIndex(options?: {
|
|
|
1365
1370
|
}): Promise<Record<string, string>>;
|
|
1366
1371
|
//#endregion
|
|
1367
1372
|
export { resolveTree as C, resolveRegistryItems as S, getRegistryPresets as _, getRegistry as a, getRegistryVisualStyles as b, getRegistryBaseColors as c, getRegistryFonts as d, getRegistryIconLibraries as f, getRegistryPreset as g, getRegistryItems as h, getRegistriesIndex as i, getRegistryBases as l, getRegistryIcons as m, getItemTargetPath as n, getRegistryBase as o, getRegistryIconLibrary as p, getRegistriesConfig as r, getRegistryBaseColor as s, fetchTree as t, getRegistryFont as u, getRegistryStyles as v, getShadcnRegistryIndex as x, getRegistryVisualStyle as y };
|
|
1368
|
-
//# sourceMappingURL=api-
|
|
1373
|
+
//# sourceMappingURL=api-910oujEW.d.ts.map
|