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