shadcn-vue 2.5.1 → 2.5.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/{api-CZg0j5Cq.d.ts → api-DeEl1PAz.d.ts} +181 -181
- package/dist/api-DeEl1PAz.d.ts.map +1 -0
- package/dist/{get-config-C_76heH9.d.ts → get-config-xVIS83XY.d.ts} +2 -2
- package/dist/get-config-xVIS83XY.d.ts.map +1 -0
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/{index-CZsBVEJ6.d.ts → index-bYDEHyKV.d.ts} +401 -401
- package/dist/{index-CZsBVEJ6.d.ts.map → index-bYDEHyKV.d.ts.map} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +185 -338
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +2 -2
- package/dist/{mcp-DdGsinaO.js → mcp-CdrgZ16R.js} +2 -2
- package/dist/{mcp-DdGsinaO.js.map → mcp-CdrgZ16R.js.map} +1 -1
- package/dist/registry/index.d.ts +3 -3
- package/dist/registry/index.js +1 -1
- package/dist/{registry-MpSC1wlI.js → registry-D3TD67q0.js} +2 -2
- package/dist/{registry-MpSC1wlI.js.map → registry-D3TD67q0.js.map} +1 -1
- package/dist/schema/index.d.ts +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/package.json +2 -1
- package/dist/api-CZg0j5Cq.d.ts.map +0 -1
- package/dist/get-config-C_76heH9.d.ts.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-bYDEHyKV.js";
|
|
2
|
+
import { t as Config } from "./get-config-xVIS83XY.js";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
|
|
5
5
|
//#region src/registry/api.d.ts
|
|
@@ -14,6 +14,10 @@ declare function getRegistry(name: string, options?: {
|
|
|
14
14
|
type: "registry:base";
|
|
15
15
|
config?: {
|
|
16
16
|
$schema?: string | undefined;
|
|
17
|
+
style?: string | undefined;
|
|
18
|
+
base?: string | undefined;
|
|
19
|
+
font?: string | undefined;
|
|
20
|
+
typescript?: boolean | undefined;
|
|
17
21
|
tailwind?: {
|
|
18
22
|
config?: string | undefined;
|
|
19
23
|
css?: string | undefined;
|
|
@@ -21,10 +25,6 @@ declare function getRegistry(name: string, options?: {
|
|
|
21
25
|
cssVariables?: boolean | undefined;
|
|
22
26
|
prefix?: string | undefined;
|
|
23
27
|
} | undefined;
|
|
24
|
-
style?: string | undefined;
|
|
25
|
-
base?: string | undefined;
|
|
26
|
-
font?: string | undefined;
|
|
27
|
-
typescript?: boolean | undefined;
|
|
28
28
|
iconLibrary?: string | undefined;
|
|
29
29
|
menuColor?: "default" | "inverted" | undefined;
|
|
30
30
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
@@ -44,6 +44,14 @@ declare function getRegistry(name: string, options?: {
|
|
|
44
44
|
} | undefined;
|
|
45
45
|
title?: string | undefined;
|
|
46
46
|
$schema?: string | undefined;
|
|
47
|
+
tailwind?: {
|
|
48
|
+
config?: {
|
|
49
|
+
content?: string[] | undefined;
|
|
50
|
+
theme?: Record<string, any> | undefined;
|
|
51
|
+
plugins?: string[] | undefined;
|
|
52
|
+
} | undefined;
|
|
53
|
+
} | undefined;
|
|
54
|
+
css?: Record<string, any> | undefined;
|
|
47
55
|
extends?: string | undefined;
|
|
48
56
|
author?: string | undefined;
|
|
49
57
|
description?: string | undefined;
|
|
@@ -52,7 +60,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
52
60
|
registryDependencies?: string[] | undefined;
|
|
53
61
|
files?: ({
|
|
54
62
|
path: string;
|
|
55
|
-
type: "registry:
|
|
63
|
+
type: "registry:page" | "registry:file";
|
|
56
64
|
target: string;
|
|
57
65
|
content?: string | undefined;
|
|
58
66
|
} | {
|
|
@@ -61,19 +69,11 @@ declare function getRegistry(name: string, options?: {
|
|
|
61
69
|
content?: string | undefined;
|
|
62
70
|
target?: string | undefined;
|
|
63
71
|
})[] | undefined;
|
|
64
|
-
tailwind?: {
|
|
65
|
-
config?: {
|
|
66
|
-
content?: string[] | undefined;
|
|
67
|
-
theme?: Record<string, any> | undefined;
|
|
68
|
-
plugins?: string[] | undefined;
|
|
69
|
-
} | undefined;
|
|
70
|
-
} | undefined;
|
|
71
72
|
cssVars?: {
|
|
72
73
|
theme?: Record<string, string> | undefined;
|
|
73
74
|
light?: Record<string, string> | undefined;
|
|
74
75
|
dark?: Record<string, string> | undefined;
|
|
75
76
|
} | undefined;
|
|
76
|
-
css?: Record<string, any> | undefined;
|
|
77
77
|
envVars?: Record<string, string> | undefined;
|
|
78
78
|
meta?: Record<string, any> | undefined;
|
|
79
79
|
docs?: string | undefined;
|
|
@@ -91,6 +91,14 @@ declare function getRegistry(name: string, options?: {
|
|
|
91
91
|
};
|
|
92
92
|
title?: string | undefined;
|
|
93
93
|
$schema?: string | undefined;
|
|
94
|
+
tailwind?: {
|
|
95
|
+
config?: {
|
|
96
|
+
content?: string[] | undefined;
|
|
97
|
+
theme?: Record<string, any> | undefined;
|
|
98
|
+
plugins?: string[] | undefined;
|
|
99
|
+
} | undefined;
|
|
100
|
+
} | undefined;
|
|
101
|
+
css?: Record<string, any> | undefined;
|
|
94
102
|
extends?: string | undefined;
|
|
95
103
|
author?: string | undefined;
|
|
96
104
|
description?: string | undefined;
|
|
@@ -99,7 +107,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
99
107
|
registryDependencies?: string[] | undefined;
|
|
100
108
|
files?: ({
|
|
101
109
|
path: string;
|
|
102
|
-
type: "registry:
|
|
110
|
+
type: "registry:page" | "registry:file";
|
|
103
111
|
target: string;
|
|
104
112
|
content?: string | undefined;
|
|
105
113
|
} | {
|
|
@@ -108,28 +116,28 @@ declare function getRegistry(name: string, options?: {
|
|
|
108
116
|
content?: string | undefined;
|
|
109
117
|
target?: string | undefined;
|
|
110
118
|
})[] | undefined;
|
|
111
|
-
tailwind?: {
|
|
112
|
-
config?: {
|
|
113
|
-
content?: string[] | undefined;
|
|
114
|
-
theme?: Record<string, any> | undefined;
|
|
115
|
-
plugins?: string[] | undefined;
|
|
116
|
-
} | undefined;
|
|
117
|
-
} | undefined;
|
|
118
119
|
cssVars?: {
|
|
119
120
|
theme?: Record<string, string> | undefined;
|
|
120
121
|
light?: Record<string, string> | undefined;
|
|
121
122
|
dark?: Record<string, string> | undefined;
|
|
122
123
|
} | undefined;
|
|
123
|
-
css?: Record<string, any> | undefined;
|
|
124
124
|
envVars?: Record<string, string> | undefined;
|
|
125
125
|
meta?: Record<string, any> | undefined;
|
|
126
126
|
docs?: string | undefined;
|
|
127
127
|
categories?: string[] | undefined;
|
|
128
128
|
} | {
|
|
129
129
|
name: string;
|
|
130
|
-
type: "registry:
|
|
130
|
+
type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
131
131
|
title?: string | undefined;
|
|
132
132
|
$schema?: string | undefined;
|
|
133
|
+
tailwind?: {
|
|
134
|
+
config?: {
|
|
135
|
+
content?: string[] | undefined;
|
|
136
|
+
theme?: Record<string, any> | undefined;
|
|
137
|
+
plugins?: string[] | undefined;
|
|
138
|
+
} | undefined;
|
|
139
|
+
} | undefined;
|
|
140
|
+
css?: Record<string, any> | undefined;
|
|
133
141
|
extends?: string | undefined;
|
|
134
142
|
author?: string | undefined;
|
|
135
143
|
description?: string | undefined;
|
|
@@ -138,7 +146,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
138
146
|
registryDependencies?: string[] | undefined;
|
|
139
147
|
files?: ({
|
|
140
148
|
path: string;
|
|
141
|
-
type: "registry:
|
|
149
|
+
type: "registry:page" | "registry:file";
|
|
142
150
|
target: string;
|
|
143
151
|
content?: string | undefined;
|
|
144
152
|
} | {
|
|
@@ -147,19 +155,11 @@ declare function getRegistry(name: string, options?: {
|
|
|
147
155
|
content?: string | undefined;
|
|
148
156
|
target?: string | undefined;
|
|
149
157
|
})[] | undefined;
|
|
150
|
-
tailwind?: {
|
|
151
|
-
config?: {
|
|
152
|
-
content?: string[] | undefined;
|
|
153
|
-
theme?: Record<string, any> | undefined;
|
|
154
|
-
plugins?: string[] | undefined;
|
|
155
|
-
} | undefined;
|
|
156
|
-
} | undefined;
|
|
157
158
|
cssVars?: {
|
|
158
159
|
theme?: Record<string, string> | undefined;
|
|
159
160
|
light?: Record<string, string> | undefined;
|
|
160
161
|
dark?: Record<string, string> | undefined;
|
|
161
162
|
} | undefined;
|
|
162
|
-
css?: Record<string, any> | undefined;
|
|
163
163
|
envVars?: Record<string, string> | undefined;
|
|
164
164
|
meta?: Record<string, any> | undefined;
|
|
165
165
|
docs?: string | undefined;
|
|
@@ -174,6 +174,10 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
174
174
|
type: "registry:base";
|
|
175
175
|
config?: {
|
|
176
176
|
$schema?: string | undefined;
|
|
177
|
+
style?: string | undefined;
|
|
178
|
+
base?: string | undefined;
|
|
179
|
+
font?: string | undefined;
|
|
180
|
+
typescript?: boolean | undefined;
|
|
177
181
|
tailwind?: {
|
|
178
182
|
config?: string | undefined;
|
|
179
183
|
css?: string | undefined;
|
|
@@ -181,10 +185,6 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
181
185
|
cssVariables?: boolean | undefined;
|
|
182
186
|
prefix?: string | undefined;
|
|
183
187
|
} | undefined;
|
|
184
|
-
style?: string | undefined;
|
|
185
|
-
base?: string | undefined;
|
|
186
|
-
font?: string | undefined;
|
|
187
|
-
typescript?: boolean | undefined;
|
|
188
188
|
iconLibrary?: string | undefined;
|
|
189
189
|
menuColor?: "default" | "inverted" | undefined;
|
|
190
190
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
@@ -204,6 +204,14 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
204
204
|
} | undefined;
|
|
205
205
|
title?: string | undefined;
|
|
206
206
|
$schema?: string | undefined;
|
|
207
|
+
tailwind?: {
|
|
208
|
+
config?: {
|
|
209
|
+
content?: string[] | undefined;
|
|
210
|
+
theme?: Record<string, any> | undefined;
|
|
211
|
+
plugins?: string[] | undefined;
|
|
212
|
+
} | undefined;
|
|
213
|
+
} | undefined;
|
|
214
|
+
css?: Record<string, any> | undefined;
|
|
207
215
|
extends?: string | undefined;
|
|
208
216
|
author?: string | undefined;
|
|
209
217
|
description?: string | undefined;
|
|
@@ -212,7 +220,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
212
220
|
registryDependencies?: string[] | undefined;
|
|
213
221
|
files?: ({
|
|
214
222
|
path: string;
|
|
215
|
-
type: "registry:
|
|
223
|
+
type: "registry:page" | "registry:file";
|
|
216
224
|
target: string;
|
|
217
225
|
content?: string | undefined;
|
|
218
226
|
} | {
|
|
@@ -221,19 +229,11 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
221
229
|
content?: string | undefined;
|
|
222
230
|
target?: string | undefined;
|
|
223
231
|
})[] | undefined;
|
|
224
|
-
tailwind?: {
|
|
225
|
-
config?: {
|
|
226
|
-
content?: string[] | undefined;
|
|
227
|
-
theme?: Record<string, any> | undefined;
|
|
228
|
-
plugins?: string[] | undefined;
|
|
229
|
-
} | undefined;
|
|
230
|
-
} | undefined;
|
|
231
232
|
cssVars?: {
|
|
232
233
|
theme?: Record<string, string> | undefined;
|
|
233
234
|
light?: Record<string, string> | undefined;
|
|
234
235
|
dark?: Record<string, string> | undefined;
|
|
235
236
|
} | undefined;
|
|
236
|
-
css?: Record<string, any> | undefined;
|
|
237
237
|
envVars?: Record<string, string> | undefined;
|
|
238
238
|
meta?: Record<string, any> | undefined;
|
|
239
239
|
docs?: string | undefined;
|
|
@@ -251,6 +251,14 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
251
251
|
};
|
|
252
252
|
title?: string | undefined;
|
|
253
253
|
$schema?: string | undefined;
|
|
254
|
+
tailwind?: {
|
|
255
|
+
config?: {
|
|
256
|
+
content?: string[] | undefined;
|
|
257
|
+
theme?: Record<string, any> | undefined;
|
|
258
|
+
plugins?: string[] | undefined;
|
|
259
|
+
} | undefined;
|
|
260
|
+
} | undefined;
|
|
261
|
+
css?: Record<string, any> | undefined;
|
|
254
262
|
extends?: string | undefined;
|
|
255
263
|
author?: string | undefined;
|
|
256
264
|
description?: string | undefined;
|
|
@@ -259,7 +267,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
259
267
|
registryDependencies?: string[] | undefined;
|
|
260
268
|
files?: ({
|
|
261
269
|
path: string;
|
|
262
|
-
type: "registry:
|
|
270
|
+
type: "registry:page" | "registry:file";
|
|
263
271
|
target: string;
|
|
264
272
|
content?: string | undefined;
|
|
265
273
|
} | {
|
|
@@ -268,28 +276,28 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
268
276
|
content?: string | undefined;
|
|
269
277
|
target?: string | undefined;
|
|
270
278
|
})[] | undefined;
|
|
271
|
-
tailwind?: {
|
|
272
|
-
config?: {
|
|
273
|
-
content?: string[] | undefined;
|
|
274
|
-
theme?: Record<string, any> | undefined;
|
|
275
|
-
plugins?: string[] | undefined;
|
|
276
|
-
} | undefined;
|
|
277
|
-
} | undefined;
|
|
278
279
|
cssVars?: {
|
|
279
280
|
theme?: Record<string, string> | undefined;
|
|
280
281
|
light?: Record<string, string> | undefined;
|
|
281
282
|
dark?: Record<string, string> | undefined;
|
|
282
283
|
} | undefined;
|
|
283
|
-
css?: Record<string, any> | undefined;
|
|
284
284
|
envVars?: Record<string, string> | undefined;
|
|
285
285
|
meta?: Record<string, any> | undefined;
|
|
286
286
|
docs?: string | undefined;
|
|
287
287
|
categories?: string[] | undefined;
|
|
288
288
|
} | {
|
|
289
289
|
name: string;
|
|
290
|
-
type: "registry:
|
|
290
|
+
type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
291
291
|
title?: string | undefined;
|
|
292
292
|
$schema?: string | undefined;
|
|
293
|
+
tailwind?: {
|
|
294
|
+
config?: {
|
|
295
|
+
content?: string[] | undefined;
|
|
296
|
+
theme?: Record<string, any> | undefined;
|
|
297
|
+
plugins?: string[] | undefined;
|
|
298
|
+
} | undefined;
|
|
299
|
+
} | undefined;
|
|
300
|
+
css?: Record<string, any> | undefined;
|
|
293
301
|
extends?: string | undefined;
|
|
294
302
|
author?: string | undefined;
|
|
295
303
|
description?: string | undefined;
|
|
@@ -298,7 +306,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
298
306
|
registryDependencies?: string[] | undefined;
|
|
299
307
|
files?: ({
|
|
300
308
|
path: string;
|
|
301
|
-
type: "registry:
|
|
309
|
+
type: "registry:page" | "registry:file";
|
|
302
310
|
target: string;
|
|
303
311
|
content?: string | undefined;
|
|
304
312
|
} | {
|
|
@@ -307,19 +315,11 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
307
315
|
content?: string | undefined;
|
|
308
316
|
target?: string | undefined;
|
|
309
317
|
})[] | undefined;
|
|
310
|
-
tailwind?: {
|
|
311
|
-
config?: {
|
|
312
|
-
content?: string[] | undefined;
|
|
313
|
-
theme?: Record<string, any> | undefined;
|
|
314
|
-
plugins?: string[] | undefined;
|
|
315
|
-
} | undefined;
|
|
316
|
-
} | undefined;
|
|
317
318
|
cssVars?: {
|
|
318
319
|
theme?: Record<string, string> | undefined;
|
|
319
320
|
light?: Record<string, string> | undefined;
|
|
320
321
|
dark?: Record<string, string> | undefined;
|
|
321
322
|
} | undefined;
|
|
322
|
-
css?: Record<string, any> | undefined;
|
|
323
323
|
envVars?: Record<string, string> | undefined;
|
|
324
324
|
meta?: Record<string, any> | undefined;
|
|
325
325
|
docs?: string | undefined;
|
|
@@ -329,11 +329,19 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
329
329
|
config?: Partial<Config>;
|
|
330
330
|
useCache?: boolean;
|
|
331
331
|
}): Promise<{
|
|
332
|
+
tailwind?: {
|
|
333
|
+
config?: {
|
|
334
|
+
content?: string[] | undefined;
|
|
335
|
+
theme?: Record<string, any> | undefined;
|
|
336
|
+
plugins?: string[] | undefined;
|
|
337
|
+
} | undefined;
|
|
338
|
+
} | undefined;
|
|
339
|
+
css?: Record<string, any> | undefined;
|
|
332
340
|
dependencies?: string[] | undefined;
|
|
333
341
|
devDependencies?: string[] | undefined;
|
|
334
342
|
files?: ({
|
|
335
343
|
path: string;
|
|
336
|
-
type: "registry:
|
|
344
|
+
type: "registry:page" | "registry:file";
|
|
337
345
|
target: string;
|
|
338
346
|
content?: string | undefined;
|
|
339
347
|
} | {
|
|
@@ -342,19 +350,11 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
342
350
|
content?: string | undefined;
|
|
343
351
|
target?: string | undefined;
|
|
344
352
|
})[] | undefined;
|
|
345
|
-
tailwind?: {
|
|
346
|
-
config?: {
|
|
347
|
-
content?: string[] | undefined;
|
|
348
|
-
theme?: Record<string, any> | undefined;
|
|
349
|
-
plugins?: string[] | undefined;
|
|
350
|
-
} | undefined;
|
|
351
|
-
} | undefined;
|
|
352
353
|
cssVars?: {
|
|
353
354
|
theme?: Record<string, string> | undefined;
|
|
354
355
|
light?: Record<string, string> | undefined;
|
|
355
356
|
dark?: Record<string, string> | undefined;
|
|
356
357
|
} | undefined;
|
|
357
|
-
css?: Record<string, any> | undefined;
|
|
358
358
|
envVars?: Record<string, string> | undefined;
|
|
359
359
|
docs?: string | undefined;
|
|
360
360
|
fonts?: {
|
|
@@ -370,6 +370,14 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
370
370
|
};
|
|
371
371
|
title?: string | undefined;
|
|
372
372
|
$schema?: string | undefined;
|
|
373
|
+
tailwind?: {
|
|
374
|
+
config?: {
|
|
375
|
+
content?: string[] | undefined;
|
|
376
|
+
theme?: Record<string, any> | undefined;
|
|
377
|
+
plugins?: string[] | undefined;
|
|
378
|
+
} | undefined;
|
|
379
|
+
} | undefined;
|
|
380
|
+
css?: Record<string, any> | undefined;
|
|
373
381
|
extends?: string | undefined;
|
|
374
382
|
author?: string | undefined;
|
|
375
383
|
description?: string | undefined;
|
|
@@ -378,7 +386,7 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
378
386
|
registryDependencies?: string[] | undefined;
|
|
379
387
|
files?: ({
|
|
380
388
|
path: string;
|
|
381
|
-
type: "registry:
|
|
389
|
+
type: "registry:page" | "registry:file";
|
|
382
390
|
target: string;
|
|
383
391
|
content?: string | undefined;
|
|
384
392
|
} | {
|
|
@@ -387,19 +395,11 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
387
395
|
content?: string | undefined;
|
|
388
396
|
target?: string | undefined;
|
|
389
397
|
})[] | undefined;
|
|
390
|
-
tailwind?: {
|
|
391
|
-
config?: {
|
|
392
|
-
content?: string[] | undefined;
|
|
393
|
-
theme?: Record<string, any> | undefined;
|
|
394
|
-
plugins?: string[] | undefined;
|
|
395
|
-
} | undefined;
|
|
396
|
-
} | undefined;
|
|
397
398
|
cssVars?: {
|
|
398
399
|
theme?: Record<string, string> | undefined;
|
|
399
400
|
light?: Record<string, string> | undefined;
|
|
400
401
|
dark?: Record<string, string> | undefined;
|
|
401
402
|
} | undefined;
|
|
402
|
-
css?: Record<string, any> | undefined;
|
|
403
403
|
envVars?: Record<string, string> | undefined;
|
|
404
404
|
meta?: Record<string, any> | undefined;
|
|
405
405
|
docs?: string | undefined;
|
|
@@ -418,6 +418,10 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
418
418
|
type: "registry:base";
|
|
419
419
|
config?: {
|
|
420
420
|
$schema?: string | undefined;
|
|
421
|
+
style?: string | undefined;
|
|
422
|
+
base?: string | undefined;
|
|
423
|
+
font?: string | undefined;
|
|
424
|
+
typescript?: boolean | undefined;
|
|
421
425
|
tailwind?: {
|
|
422
426
|
config?: string | undefined;
|
|
423
427
|
css?: string | undefined;
|
|
@@ -425,10 +429,6 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
425
429
|
cssVariables?: boolean | undefined;
|
|
426
430
|
prefix?: string | undefined;
|
|
427
431
|
} | undefined;
|
|
428
|
-
style?: string | undefined;
|
|
429
|
-
base?: string | undefined;
|
|
430
|
-
font?: string | undefined;
|
|
431
|
-
typescript?: boolean | undefined;
|
|
432
432
|
iconLibrary?: string | undefined;
|
|
433
433
|
menuColor?: "default" | "inverted" | undefined;
|
|
434
434
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
@@ -448,6 +448,14 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
448
448
|
} | undefined;
|
|
449
449
|
title?: string | undefined;
|
|
450
450
|
$schema?: string | undefined;
|
|
451
|
+
tailwind?: {
|
|
452
|
+
config?: {
|
|
453
|
+
content?: string[] | undefined;
|
|
454
|
+
theme?: Record<string, any> | undefined;
|
|
455
|
+
plugins?: string[] | undefined;
|
|
456
|
+
} | undefined;
|
|
457
|
+
} | undefined;
|
|
458
|
+
css?: Record<string, any> | undefined;
|
|
451
459
|
extends?: string | undefined;
|
|
452
460
|
author?: string | undefined;
|
|
453
461
|
description?: string | undefined;
|
|
@@ -456,7 +464,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
456
464
|
registryDependencies?: string[] | undefined;
|
|
457
465
|
files?: ({
|
|
458
466
|
path: string;
|
|
459
|
-
type: "registry:
|
|
467
|
+
type: "registry:page" | "registry:file";
|
|
460
468
|
target: string;
|
|
461
469
|
content?: string | undefined;
|
|
462
470
|
} | {
|
|
@@ -465,19 +473,11 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
465
473
|
content?: string | undefined;
|
|
466
474
|
target?: string | undefined;
|
|
467
475
|
})[] | undefined;
|
|
468
|
-
tailwind?: {
|
|
469
|
-
config?: {
|
|
470
|
-
content?: string[] | undefined;
|
|
471
|
-
theme?: Record<string, any> | undefined;
|
|
472
|
-
plugins?: string[] | undefined;
|
|
473
|
-
} | undefined;
|
|
474
|
-
} | undefined;
|
|
475
476
|
cssVars?: {
|
|
476
477
|
theme?: Record<string, string> | undefined;
|
|
477
478
|
light?: Record<string, string> | undefined;
|
|
478
479
|
dark?: Record<string, string> | undefined;
|
|
479
480
|
} | undefined;
|
|
480
|
-
css?: Record<string, any> | undefined;
|
|
481
481
|
envVars?: Record<string, string> | undefined;
|
|
482
482
|
meta?: Record<string, any> | undefined;
|
|
483
483
|
docs?: string | undefined;
|
|
@@ -495,6 +495,14 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
495
495
|
};
|
|
496
496
|
title?: string | undefined;
|
|
497
497
|
$schema?: string | undefined;
|
|
498
|
+
tailwind?: {
|
|
499
|
+
config?: {
|
|
500
|
+
content?: string[] | undefined;
|
|
501
|
+
theme?: Record<string, any> | undefined;
|
|
502
|
+
plugins?: string[] | undefined;
|
|
503
|
+
} | undefined;
|
|
504
|
+
} | undefined;
|
|
505
|
+
css?: Record<string, any> | undefined;
|
|
498
506
|
extends?: string | undefined;
|
|
499
507
|
author?: string | undefined;
|
|
500
508
|
description?: string | undefined;
|
|
@@ -503,7 +511,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
503
511
|
registryDependencies?: string[] | undefined;
|
|
504
512
|
files?: ({
|
|
505
513
|
path: string;
|
|
506
|
-
type: "registry:
|
|
514
|
+
type: "registry:page" | "registry:file";
|
|
507
515
|
target: string;
|
|
508
516
|
content?: string | undefined;
|
|
509
517
|
} | {
|
|
@@ -512,28 +520,28 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
512
520
|
content?: string | undefined;
|
|
513
521
|
target?: string | undefined;
|
|
514
522
|
})[] | undefined;
|
|
515
|
-
tailwind?: {
|
|
516
|
-
config?: {
|
|
517
|
-
content?: string[] | undefined;
|
|
518
|
-
theme?: Record<string, any> | undefined;
|
|
519
|
-
plugins?: string[] | undefined;
|
|
520
|
-
} | undefined;
|
|
521
|
-
} | undefined;
|
|
522
523
|
cssVars?: {
|
|
523
524
|
theme?: Record<string, string> | undefined;
|
|
524
525
|
light?: Record<string, string> | undefined;
|
|
525
526
|
dark?: Record<string, string> | undefined;
|
|
526
527
|
} | undefined;
|
|
527
|
-
css?: Record<string, any> | undefined;
|
|
528
528
|
envVars?: Record<string, string> | undefined;
|
|
529
529
|
meta?: Record<string, any> | undefined;
|
|
530
530
|
docs?: string | undefined;
|
|
531
531
|
categories?: string[] | undefined;
|
|
532
532
|
} | {
|
|
533
533
|
name: string;
|
|
534
|
-
type: "registry:
|
|
534
|
+
type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
535
535
|
title?: string | undefined;
|
|
536
536
|
$schema?: string | undefined;
|
|
537
|
+
tailwind?: {
|
|
538
|
+
config?: {
|
|
539
|
+
content?: string[] | undefined;
|
|
540
|
+
theme?: Record<string, any> | undefined;
|
|
541
|
+
plugins?: string[] | undefined;
|
|
542
|
+
} | undefined;
|
|
543
|
+
} | undefined;
|
|
544
|
+
css?: Record<string, any> | undefined;
|
|
537
545
|
extends?: string | undefined;
|
|
538
546
|
author?: string | undefined;
|
|
539
547
|
description?: string | undefined;
|
|
@@ -542,7 +550,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
542
550
|
registryDependencies?: string[] | undefined;
|
|
543
551
|
files?: ({
|
|
544
552
|
path: string;
|
|
545
|
-
type: "registry:
|
|
553
|
+
type: "registry:page" | "registry:file";
|
|
546
554
|
target: string;
|
|
547
555
|
content?: string | undefined;
|
|
548
556
|
} | {
|
|
@@ -551,19 +559,11 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
551
559
|
content?: string | undefined;
|
|
552
560
|
target?: string | undefined;
|
|
553
561
|
})[] | undefined;
|
|
554
|
-
tailwind?: {
|
|
555
|
-
config?: {
|
|
556
|
-
content?: string[] | undefined;
|
|
557
|
-
theme?: Record<string, any> | undefined;
|
|
558
|
-
plugins?: string[] | undefined;
|
|
559
|
-
} | undefined;
|
|
560
|
-
} | undefined;
|
|
561
562
|
cssVars?: {
|
|
562
563
|
theme?: Record<string, string> | undefined;
|
|
563
564
|
light?: Record<string, string> | undefined;
|
|
564
565
|
dark?: Record<string, string> | undefined;
|
|
565
566
|
} | undefined;
|
|
566
|
-
css?: Record<string, any> | undefined;
|
|
567
567
|
envVars?: Record<string, string> | undefined;
|
|
568
568
|
meta?: Record<string, any> | undefined;
|
|
569
569
|
docs?: string | undefined;
|
|
@@ -990,6 +990,10 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
990
990
|
type: "registry:base";
|
|
991
991
|
config?: {
|
|
992
992
|
$schema?: string | undefined;
|
|
993
|
+
style?: string | undefined;
|
|
994
|
+
base?: string | undefined;
|
|
995
|
+
font?: string | undefined;
|
|
996
|
+
typescript?: boolean | undefined;
|
|
993
997
|
tailwind?: {
|
|
994
998
|
config?: string | undefined;
|
|
995
999
|
css?: string | undefined;
|
|
@@ -997,10 +1001,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
997
1001
|
cssVariables?: boolean | undefined;
|
|
998
1002
|
prefix?: string | undefined;
|
|
999
1003
|
} | undefined;
|
|
1000
|
-
style?: string | undefined;
|
|
1001
|
-
base?: string | undefined;
|
|
1002
|
-
font?: string | undefined;
|
|
1003
|
-
typescript?: boolean | undefined;
|
|
1004
1004
|
iconLibrary?: string | undefined;
|
|
1005
1005
|
menuColor?: "default" | "inverted" | undefined;
|
|
1006
1006
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
@@ -1020,6 +1020,14 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1020
1020
|
} | undefined;
|
|
1021
1021
|
title?: string | undefined;
|
|
1022
1022
|
$schema?: string | undefined;
|
|
1023
|
+
tailwind?: {
|
|
1024
|
+
config?: {
|
|
1025
|
+
content?: string[] | undefined;
|
|
1026
|
+
theme?: Record<string, any> | undefined;
|
|
1027
|
+
plugins?: string[] | undefined;
|
|
1028
|
+
} | undefined;
|
|
1029
|
+
} | undefined;
|
|
1030
|
+
css?: Record<string, any> | undefined;
|
|
1023
1031
|
extends?: string | undefined;
|
|
1024
1032
|
author?: string | undefined;
|
|
1025
1033
|
description?: string | undefined;
|
|
@@ -1028,7 +1036,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1028
1036
|
registryDependencies?: string[] | undefined;
|
|
1029
1037
|
files?: ({
|
|
1030
1038
|
path: string;
|
|
1031
|
-
type: "registry:
|
|
1039
|
+
type: "registry:page" | "registry:file";
|
|
1032
1040
|
target: string;
|
|
1033
1041
|
content?: string | undefined;
|
|
1034
1042
|
} | {
|
|
@@ -1037,19 +1045,11 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1037
1045
|
content?: string | undefined;
|
|
1038
1046
|
target?: string | undefined;
|
|
1039
1047
|
})[] | undefined;
|
|
1040
|
-
tailwind?: {
|
|
1041
|
-
config?: {
|
|
1042
|
-
content?: string[] | undefined;
|
|
1043
|
-
theme?: Record<string, any> | undefined;
|
|
1044
|
-
plugins?: string[] | undefined;
|
|
1045
|
-
} | undefined;
|
|
1046
|
-
} | undefined;
|
|
1047
1048
|
cssVars?: {
|
|
1048
1049
|
theme?: Record<string, string> | undefined;
|
|
1049
1050
|
light?: Record<string, string> | undefined;
|
|
1050
1051
|
dark?: Record<string, string> | undefined;
|
|
1051
1052
|
} | undefined;
|
|
1052
|
-
css?: Record<string, any> | undefined;
|
|
1053
1053
|
envVars?: Record<string, string> | undefined;
|
|
1054
1054
|
meta?: Record<string, any> | undefined;
|
|
1055
1055
|
docs?: string | undefined;
|
|
@@ -1067,6 +1067,14 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1067
1067
|
};
|
|
1068
1068
|
title?: string | undefined;
|
|
1069
1069
|
$schema?: string | undefined;
|
|
1070
|
+
tailwind?: {
|
|
1071
|
+
config?: {
|
|
1072
|
+
content?: string[] | undefined;
|
|
1073
|
+
theme?: Record<string, any> | undefined;
|
|
1074
|
+
plugins?: string[] | undefined;
|
|
1075
|
+
} | undefined;
|
|
1076
|
+
} | undefined;
|
|
1077
|
+
css?: Record<string, any> | undefined;
|
|
1070
1078
|
extends?: string | undefined;
|
|
1071
1079
|
author?: string | undefined;
|
|
1072
1080
|
description?: string | undefined;
|
|
@@ -1075,7 +1083,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1075
1083
|
registryDependencies?: string[] | undefined;
|
|
1076
1084
|
files?: ({
|
|
1077
1085
|
path: string;
|
|
1078
|
-
type: "registry:
|
|
1086
|
+
type: "registry:page" | "registry:file";
|
|
1079
1087
|
target: string;
|
|
1080
1088
|
content?: string | undefined;
|
|
1081
1089
|
} | {
|
|
@@ -1084,28 +1092,28 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1084
1092
|
content?: string | undefined;
|
|
1085
1093
|
target?: string | undefined;
|
|
1086
1094
|
})[] | undefined;
|
|
1087
|
-
tailwind?: {
|
|
1088
|
-
config?: {
|
|
1089
|
-
content?: string[] | undefined;
|
|
1090
|
-
theme?: Record<string, any> | undefined;
|
|
1091
|
-
plugins?: string[] | undefined;
|
|
1092
|
-
} | undefined;
|
|
1093
|
-
} | undefined;
|
|
1094
1095
|
cssVars?: {
|
|
1095
1096
|
theme?: Record<string, string> | undefined;
|
|
1096
1097
|
light?: Record<string, string> | undefined;
|
|
1097
1098
|
dark?: Record<string, string> | undefined;
|
|
1098
1099
|
} | undefined;
|
|
1099
|
-
css?: Record<string, any> | undefined;
|
|
1100
1100
|
envVars?: Record<string, string> | undefined;
|
|
1101
1101
|
meta?: Record<string, any> | undefined;
|
|
1102
1102
|
docs?: string | undefined;
|
|
1103
1103
|
categories?: string[] | undefined;
|
|
1104
1104
|
} | {
|
|
1105
1105
|
name: string;
|
|
1106
|
-
type: "registry:
|
|
1106
|
+
type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
1107
1107
|
title?: string | undefined;
|
|
1108
1108
|
$schema?: string | undefined;
|
|
1109
|
+
tailwind?: {
|
|
1110
|
+
config?: {
|
|
1111
|
+
content?: string[] | undefined;
|
|
1112
|
+
theme?: Record<string, any> | undefined;
|
|
1113
|
+
plugins?: string[] | undefined;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
} | undefined;
|
|
1116
|
+
css?: Record<string, any> | undefined;
|
|
1109
1117
|
extends?: string | undefined;
|
|
1110
1118
|
author?: string | undefined;
|
|
1111
1119
|
description?: string | undefined;
|
|
@@ -1114,7 +1122,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1114
1122
|
registryDependencies?: string[] | undefined;
|
|
1115
1123
|
files?: ({
|
|
1116
1124
|
path: string;
|
|
1117
|
-
type: "registry:
|
|
1125
|
+
type: "registry:page" | "registry:file";
|
|
1118
1126
|
target: string;
|
|
1119
1127
|
content?: string | undefined;
|
|
1120
1128
|
} | {
|
|
@@ -1123,19 +1131,11 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1123
1131
|
content?: string | undefined;
|
|
1124
1132
|
target?: string | undefined;
|
|
1125
1133
|
})[] | undefined;
|
|
1126
|
-
tailwind?: {
|
|
1127
|
-
config?: {
|
|
1128
|
-
content?: string[] | undefined;
|
|
1129
|
-
theme?: Record<string, any> | undefined;
|
|
1130
|
-
plugins?: string[] | undefined;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
} | undefined;
|
|
1133
1134
|
cssVars?: {
|
|
1134
1135
|
theme?: Record<string, string> | undefined;
|
|
1135
1136
|
light?: Record<string, string> | undefined;
|
|
1136
1137
|
dark?: Record<string, string> | undefined;
|
|
1137
1138
|
} | undefined;
|
|
1138
|
-
css?: Record<string, any> | undefined;
|
|
1139
1139
|
envVars?: Record<string, string> | undefined;
|
|
1140
1140
|
meta?: Record<string, any> | undefined;
|
|
1141
1141
|
docs?: string | undefined;
|
|
@@ -1149,6 +1149,10 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1149
1149
|
type: "registry:base";
|
|
1150
1150
|
config?: {
|
|
1151
1151
|
$schema?: string | undefined;
|
|
1152
|
+
style?: string | undefined;
|
|
1153
|
+
base?: string | undefined;
|
|
1154
|
+
font?: string | undefined;
|
|
1155
|
+
typescript?: boolean | undefined;
|
|
1152
1156
|
tailwind?: {
|
|
1153
1157
|
config?: string | undefined;
|
|
1154
1158
|
css?: string | undefined;
|
|
@@ -1156,10 +1160,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1156
1160
|
cssVariables?: boolean | undefined;
|
|
1157
1161
|
prefix?: string | undefined;
|
|
1158
1162
|
} | undefined;
|
|
1159
|
-
style?: string | undefined;
|
|
1160
|
-
base?: string | undefined;
|
|
1161
|
-
font?: string | undefined;
|
|
1162
|
-
typescript?: boolean | undefined;
|
|
1163
1163
|
iconLibrary?: string | undefined;
|
|
1164
1164
|
menuColor?: "default" | "inverted" | undefined;
|
|
1165
1165
|
menuAccent?: "subtle" | "bold" | undefined;
|
|
@@ -1179,6 +1179,14 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1179
1179
|
} | undefined;
|
|
1180
1180
|
title?: string | undefined;
|
|
1181
1181
|
$schema?: string | undefined;
|
|
1182
|
+
tailwind?: {
|
|
1183
|
+
config?: {
|
|
1184
|
+
content?: string[] | undefined;
|
|
1185
|
+
theme?: Record<string, any> | undefined;
|
|
1186
|
+
plugins?: string[] | undefined;
|
|
1187
|
+
} | undefined;
|
|
1188
|
+
} | undefined;
|
|
1189
|
+
css?: Record<string, any> | undefined;
|
|
1182
1190
|
extends?: string | undefined;
|
|
1183
1191
|
author?: string | undefined;
|
|
1184
1192
|
description?: string | undefined;
|
|
@@ -1187,7 +1195,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1187
1195
|
registryDependencies?: string[] | undefined;
|
|
1188
1196
|
files?: ({
|
|
1189
1197
|
path: string;
|
|
1190
|
-
type: "registry:
|
|
1198
|
+
type: "registry:page" | "registry:file";
|
|
1191
1199
|
target: string;
|
|
1192
1200
|
content?: string | undefined;
|
|
1193
1201
|
} | {
|
|
@@ -1196,19 +1204,11 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1196
1204
|
content?: string | undefined;
|
|
1197
1205
|
target?: string | undefined;
|
|
1198
1206
|
})[] | undefined;
|
|
1199
|
-
tailwind?: {
|
|
1200
|
-
config?: {
|
|
1201
|
-
content?: string[] | undefined;
|
|
1202
|
-
theme?: Record<string, any> | undefined;
|
|
1203
|
-
plugins?: string[] | undefined;
|
|
1204
|
-
} | undefined;
|
|
1205
|
-
} | undefined;
|
|
1206
1207
|
cssVars?: {
|
|
1207
1208
|
theme?: Record<string, string> | undefined;
|
|
1208
1209
|
light?: Record<string, string> | undefined;
|
|
1209
1210
|
dark?: Record<string, string> | undefined;
|
|
1210
1211
|
} | undefined;
|
|
1211
|
-
css?: Record<string, any> | undefined;
|
|
1212
1212
|
envVars?: Record<string, string> | undefined;
|
|
1213
1213
|
meta?: Record<string, any> | undefined;
|
|
1214
1214
|
docs?: string | undefined;
|
|
@@ -1226,6 +1226,14 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1226
1226
|
};
|
|
1227
1227
|
title?: string | undefined;
|
|
1228
1228
|
$schema?: string | undefined;
|
|
1229
|
+
tailwind?: {
|
|
1230
|
+
config?: {
|
|
1231
|
+
content?: string[] | undefined;
|
|
1232
|
+
theme?: Record<string, any> | undefined;
|
|
1233
|
+
plugins?: string[] | undefined;
|
|
1234
|
+
} | undefined;
|
|
1235
|
+
} | undefined;
|
|
1236
|
+
css?: Record<string, any> | undefined;
|
|
1229
1237
|
extends?: string | undefined;
|
|
1230
1238
|
author?: string | undefined;
|
|
1231
1239
|
description?: string | undefined;
|
|
@@ -1234,7 +1242,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1234
1242
|
registryDependencies?: string[] | undefined;
|
|
1235
1243
|
files?: ({
|
|
1236
1244
|
path: string;
|
|
1237
|
-
type: "registry:
|
|
1245
|
+
type: "registry:page" | "registry:file";
|
|
1238
1246
|
target: string;
|
|
1239
1247
|
content?: string | undefined;
|
|
1240
1248
|
} | {
|
|
@@ -1243,28 +1251,28 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1243
1251
|
content?: string | undefined;
|
|
1244
1252
|
target?: string | undefined;
|
|
1245
1253
|
})[] | undefined;
|
|
1246
|
-
tailwind?: {
|
|
1247
|
-
config?: {
|
|
1248
|
-
content?: string[] | undefined;
|
|
1249
|
-
theme?: Record<string, any> | undefined;
|
|
1250
|
-
plugins?: string[] | undefined;
|
|
1251
|
-
} | undefined;
|
|
1252
|
-
} | undefined;
|
|
1253
1254
|
cssVars?: {
|
|
1254
1255
|
theme?: Record<string, string> | undefined;
|
|
1255
1256
|
light?: Record<string, string> | undefined;
|
|
1256
1257
|
dark?: Record<string, string> | undefined;
|
|
1257
1258
|
} | undefined;
|
|
1258
|
-
css?: Record<string, any> | undefined;
|
|
1259
1259
|
envVars?: Record<string, string> | undefined;
|
|
1260
1260
|
meta?: Record<string, any> | undefined;
|
|
1261
1261
|
docs?: string | undefined;
|
|
1262
1262
|
categories?: string[] | undefined;
|
|
1263
1263
|
} | {
|
|
1264
1264
|
name: string;
|
|
1265
|
-
type: "registry:
|
|
1265
|
+
type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
1266
1266
|
title?: string | undefined;
|
|
1267
1267
|
$schema?: string | undefined;
|
|
1268
|
+
tailwind?: {
|
|
1269
|
+
config?: {
|
|
1270
|
+
content?: string[] | undefined;
|
|
1271
|
+
theme?: Record<string, any> | undefined;
|
|
1272
|
+
plugins?: string[] | undefined;
|
|
1273
|
+
} | undefined;
|
|
1274
|
+
} | undefined;
|
|
1275
|
+
css?: Record<string, any> | undefined;
|
|
1268
1276
|
extends?: string | undefined;
|
|
1269
1277
|
author?: string | undefined;
|
|
1270
1278
|
description?: string | undefined;
|
|
@@ -1273,7 +1281,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1273
1281
|
registryDependencies?: string[] | undefined;
|
|
1274
1282
|
files?: ({
|
|
1275
1283
|
path: string;
|
|
1276
|
-
type: "registry:
|
|
1284
|
+
type: "registry:page" | "registry:file";
|
|
1277
1285
|
target: string;
|
|
1278
1286
|
content?: string | undefined;
|
|
1279
1287
|
} | {
|
|
@@ -1282,19 +1290,11 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1282
1290
|
content?: string | undefined;
|
|
1283
1291
|
target?: string | undefined;
|
|
1284
1292
|
})[] | undefined;
|
|
1285
|
-
tailwind?: {
|
|
1286
|
-
config?: {
|
|
1287
|
-
content?: string[] | undefined;
|
|
1288
|
-
theme?: Record<string, any> | undefined;
|
|
1289
|
-
plugins?: string[] | undefined;
|
|
1290
|
-
} | undefined;
|
|
1291
|
-
} | undefined;
|
|
1292
1293
|
cssVars?: {
|
|
1293
1294
|
theme?: Record<string, string> | undefined;
|
|
1294
1295
|
light?: Record<string, string> | undefined;
|
|
1295
1296
|
dark?: Record<string, string> | undefined;
|
|
1296
1297
|
} | undefined;
|
|
1297
|
-
css?: Record<string, any> | undefined;
|
|
1298
1298
|
envVars?: Record<string, string> | undefined;
|
|
1299
1299
|
meta?: Record<string, any> | undefined;
|
|
1300
1300
|
docs?: string | undefined;
|
|
@@ -1309,4 +1309,4 @@ declare function getRegistriesIndex(options?: {
|
|
|
1309
1309
|
}): Promise<Record<string, string>>;
|
|
1310
1310
|
//#endregion
|
|
1311
1311
|
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 };
|
|
1312
|
-
//# sourceMappingURL=api-
|
|
1312
|
+
//# sourceMappingURL=api-DeEl1PAz.d.ts.map
|