shadcn-vue 2.6.1 → 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-Cs4qqzRd.d.ts → api-DZ7Z_MtF.d.ts} +207 -207
- package/dist/api-DZ7Z_MtF.d.ts.map +1 -0
- package/dist/{get-config-BqGgbrd-.d.ts → get-config-DrAY4347.d.ts} +2 -2
- package/dist/get-config-DrAY4347.d.ts.map +1 -0
- package/dist/{index-BUjzg4yQ.d.ts → index-CZ1rwcGp.d.ts} +598 -598
- package/dist/index-CZ1rwcGp.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +2 -2
- package/dist/{mcp-BOI2btwY.js → mcp-CSdaDjDY.js} +2 -2
- package/dist/{mcp-BOI2btwY.js.map → mcp-CSdaDjDY.js.map} +1 -1
- package/dist/registry/index.d.ts +3 -3
- package/dist/registry/index.js +1 -1
- package/dist/{registry-CMd93ZwM.js → registry-BIOMgIDT.js} +13 -3
- package/dist/registry-BIOMgIDT.js.map +1 -0
- package/dist/schema/index.d.ts +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/package.json +1 -1
- package/dist/api-Cs4qqzRd.d.ts.map +0 -1
- package/dist/get-config-BqGgbrd-.d.ts.map +0 -1
- package/dist/index-BUjzg4yQ.d.ts.map +0 -1
- package/dist/registry-CMd93ZwM.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
|
|
@@ -13,22 +13,22 @@ declare function getRegistry(name: string, options?: {
|
|
|
13
13
|
name: string;
|
|
14
14
|
type: "registry:base";
|
|
15
15
|
config?: {
|
|
16
|
+
style?: string | undefined;
|
|
17
|
+
iconLibrary?: string | undefined;
|
|
18
|
+
font?: string | undefined;
|
|
19
|
+
fontHeading?: string | undefined;
|
|
20
|
+
menuAccent?: "subtle" | "bold" | undefined;
|
|
21
|
+
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
16
22
|
$schema?: string | undefined;
|
|
23
|
+
typescript?: boolean | undefined;
|
|
17
24
|
tailwind?: {
|
|
18
25
|
config?: string | undefined;
|
|
19
|
-
css?: string | undefined;
|
|
20
26
|
baseColor?: string | undefined;
|
|
27
|
+
css?: string | undefined;
|
|
21
28
|
cssVariables?: boolean | undefined;
|
|
22
29
|
prefix?: string | undefined;
|
|
23
30
|
} | undefined;
|
|
24
|
-
style?: string | undefined;
|
|
25
|
-
font?: string | undefined;
|
|
26
|
-
fontHeading?: string | undefined;
|
|
27
|
-
typescript?: boolean | undefined;
|
|
28
|
-
iconLibrary?: string | undefined;
|
|
29
31
|
rtl?: boolean | undefined;
|
|
30
|
-
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
31
|
-
menuAccent?: "subtle" | "bold" | undefined;
|
|
32
32
|
aliases?: {
|
|
33
33
|
components?: string | undefined;
|
|
34
34
|
utils?: string | undefined;
|
|
@@ -45,6 +45,14 @@ declare function getRegistry(name: string, options?: {
|
|
|
45
45
|
} | undefined;
|
|
46
46
|
title?: 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;
|
|
50
58
|
description?: string | undefined;
|
|
@@ -53,7 +61,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
53
61
|
registryDependencies?: string[] | undefined;
|
|
54
62
|
files?: ({
|
|
55
63
|
path: string;
|
|
56
|
-
type: "registry:
|
|
64
|
+
type: "registry:page" | "registry:file";
|
|
57
65
|
target: string;
|
|
58
66
|
content?: string | undefined;
|
|
59
67
|
} | {
|
|
@@ -62,26 +70,17 @@ declare function getRegistry(name: string, options?: {
|
|
|
62
70
|
content?: string | undefined;
|
|
63
71
|
target?: string | undefined;
|
|
64
72
|
})[] | undefined;
|
|
65
|
-
tailwind?: {
|
|
66
|
-
config?: {
|
|
67
|
-
content?: string[] | undefined;
|
|
68
|
-
theme?: Record<string, any> | undefined;
|
|
69
|
-
plugins?: string[] | undefined;
|
|
70
|
-
} | undefined;
|
|
71
|
-
} | undefined;
|
|
72
73
|
cssVars?: {
|
|
73
74
|
theme?: Record<string, string> | undefined;
|
|
74
75
|
light?: Record<string, string> | undefined;
|
|
75
76
|
dark?: Record<string, string> | undefined;
|
|
76
77
|
} | undefined;
|
|
77
|
-
css?: Record<string, any> | undefined;
|
|
78
78
|
envVars?: Record<string, string> | undefined;
|
|
79
79
|
meta?: Record<string, any> | undefined;
|
|
80
80
|
docs?: string | undefined;
|
|
81
81
|
categories?: string[] | undefined;
|
|
82
82
|
} | {
|
|
83
83
|
name: string;
|
|
84
|
-
type: "registry:font";
|
|
85
84
|
font: {
|
|
86
85
|
family: string;
|
|
87
86
|
provider: "google";
|
|
@@ -90,8 +89,17 @@ declare function getRegistry(name: string, options?: {
|
|
|
90
89
|
weight?: string[] | undefined;
|
|
91
90
|
subsets?: string[] | undefined;
|
|
92
91
|
};
|
|
92
|
+
type: "registry:font";
|
|
93
93
|
title?: 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;
|
|
97
105
|
description?: string | undefined;
|
|
@@ -100,7 +108,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
100
108
|
registryDependencies?: string[] | undefined;
|
|
101
109
|
files?: ({
|
|
102
110
|
path: string;
|
|
103
|
-
type: "registry:
|
|
111
|
+
type: "registry:page" | "registry:file";
|
|
104
112
|
target: string;
|
|
105
113
|
content?: string | undefined;
|
|
106
114
|
} | {
|
|
@@ -109,28 +117,28 @@ declare function getRegistry(name: string, options?: {
|
|
|
109
117
|
content?: string | undefined;
|
|
110
118
|
target?: string | undefined;
|
|
111
119
|
})[] | undefined;
|
|
112
|
-
tailwind?: {
|
|
113
|
-
config?: {
|
|
114
|
-
content?: string[] | undefined;
|
|
115
|
-
theme?: Record<string, any> | undefined;
|
|
116
|
-
plugins?: string[] | undefined;
|
|
117
|
-
} | undefined;
|
|
118
|
-
} | undefined;
|
|
119
120
|
cssVars?: {
|
|
120
121
|
theme?: Record<string, string> | undefined;
|
|
121
122
|
light?: Record<string, string> | undefined;
|
|
122
123
|
dark?: Record<string, string> | undefined;
|
|
123
124
|
} | undefined;
|
|
124
|
-
css?: Record<string, any> | undefined;
|
|
125
125
|
envVars?: Record<string, string> | undefined;
|
|
126
126
|
meta?: Record<string, any> | undefined;
|
|
127
127
|
docs?: string | undefined;
|
|
128
128
|
categories?: string[] | undefined;
|
|
129
129
|
} | {
|
|
130
130
|
name: string;
|
|
131
|
-
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";
|
|
132
132
|
title?: 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;
|
|
136
144
|
description?: string | undefined;
|
|
@@ -139,7 +147,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
139
147
|
registryDependencies?: string[] | undefined;
|
|
140
148
|
files?: ({
|
|
141
149
|
path: string;
|
|
142
|
-
type: "registry:
|
|
150
|
+
type: "registry:page" | "registry:file";
|
|
143
151
|
target: string;
|
|
144
152
|
content?: string | undefined;
|
|
145
153
|
} | {
|
|
@@ -148,19 +156,11 @@ declare function getRegistry(name: string, options?: {
|
|
|
148
156
|
content?: string | undefined;
|
|
149
157
|
target?: string | undefined;
|
|
150
158
|
})[] | undefined;
|
|
151
|
-
tailwind?: {
|
|
152
|
-
config?: {
|
|
153
|
-
content?: string[] | undefined;
|
|
154
|
-
theme?: Record<string, any> | undefined;
|
|
155
|
-
plugins?: string[] | undefined;
|
|
156
|
-
} | undefined;
|
|
157
|
-
} | undefined;
|
|
158
159
|
cssVars?: {
|
|
159
160
|
theme?: Record<string, string> | undefined;
|
|
160
161
|
light?: Record<string, string> | undefined;
|
|
161
162
|
dark?: Record<string, string> | undefined;
|
|
162
163
|
} | undefined;
|
|
163
|
-
css?: Record<string, any> | undefined;
|
|
164
164
|
envVars?: Record<string, string> | undefined;
|
|
165
165
|
meta?: Record<string, any> | undefined;
|
|
166
166
|
docs?: string | undefined;
|
|
@@ -174,22 +174,22 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
174
174
|
name: string;
|
|
175
175
|
type: "registry:base";
|
|
176
176
|
config?: {
|
|
177
|
+
style?: string | undefined;
|
|
178
|
+
iconLibrary?: string | undefined;
|
|
179
|
+
font?: string | undefined;
|
|
180
|
+
fontHeading?: string | undefined;
|
|
181
|
+
menuAccent?: "subtle" | "bold" | undefined;
|
|
182
|
+
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
177
183
|
$schema?: string | undefined;
|
|
184
|
+
typescript?: boolean | undefined;
|
|
178
185
|
tailwind?: {
|
|
179
186
|
config?: string | undefined;
|
|
180
|
-
css?: string | undefined;
|
|
181
187
|
baseColor?: string | undefined;
|
|
188
|
+
css?: string | undefined;
|
|
182
189
|
cssVariables?: boolean | undefined;
|
|
183
190
|
prefix?: string | undefined;
|
|
184
191
|
} | undefined;
|
|
185
|
-
style?: string | undefined;
|
|
186
|
-
font?: string | undefined;
|
|
187
|
-
fontHeading?: string | undefined;
|
|
188
|
-
typescript?: boolean | undefined;
|
|
189
|
-
iconLibrary?: string | undefined;
|
|
190
192
|
rtl?: boolean | undefined;
|
|
191
|
-
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
192
|
-
menuAccent?: "subtle" | "bold" | undefined;
|
|
193
193
|
aliases?: {
|
|
194
194
|
components?: string | undefined;
|
|
195
195
|
utils?: string | undefined;
|
|
@@ -206,6 +206,14 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
206
206
|
} | undefined;
|
|
207
207
|
title?: string | undefined;
|
|
208
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;
|
|
209
217
|
extends?: string | undefined;
|
|
210
218
|
author?: string | undefined;
|
|
211
219
|
description?: string | undefined;
|
|
@@ -214,7 +222,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
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,26 +231,17 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
223
231
|
content?: string | undefined;
|
|
224
232
|
target?: string | undefined;
|
|
225
233
|
})[] | undefined;
|
|
226
|
-
tailwind?: {
|
|
227
|
-
config?: {
|
|
228
|
-
content?: string[] | undefined;
|
|
229
|
-
theme?: Record<string, any> | 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;
|
|
242
242
|
categories?: string[] | undefined;
|
|
243
243
|
} | {
|
|
244
244
|
name: string;
|
|
245
|
-
type: "registry:font";
|
|
246
245
|
font: {
|
|
247
246
|
family: string;
|
|
248
247
|
provider: "google";
|
|
@@ -251,8 +250,17 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
251
250
|
weight?: string[] | undefined;
|
|
252
251
|
subsets?: string[] | undefined;
|
|
253
252
|
};
|
|
253
|
+
type: "registry:font";
|
|
254
254
|
title?: string | undefined;
|
|
255
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;
|
|
256
264
|
extends?: string | undefined;
|
|
257
265
|
author?: string | undefined;
|
|
258
266
|
description?: string | undefined;
|
|
@@ -261,7 +269,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
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,28 +278,28 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
270
278
|
content?: string | undefined;
|
|
271
279
|
target?: string | undefined;
|
|
272
280
|
})[] | undefined;
|
|
273
|
-
tailwind?: {
|
|
274
|
-
config?: {
|
|
275
|
-
content?: string[] | undefined;
|
|
276
|
-
theme?: Record<string, any> | 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
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;
|
|
295
303
|
extends?: string | undefined;
|
|
296
304
|
author?: string | undefined;
|
|
297
305
|
description?: string | undefined;
|
|
@@ -300,7 +308,7 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
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
|
-
content?: string[] | undefined;
|
|
315
|
-
theme?: Record<string, any> | 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,24 +352,15 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
344
352
|
content?: string | undefined;
|
|
345
353
|
target?: string | undefined;
|
|
346
354
|
})[] | undefined;
|
|
347
|
-
tailwind?: {
|
|
348
|
-
config?: {
|
|
349
|
-
content?: string[] | undefined;
|
|
350
|
-
theme?: Record<string, any> | 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?: {
|
|
363
363
|
name: string;
|
|
364
|
-
type: "registry:font";
|
|
365
364
|
font: {
|
|
366
365
|
family: string;
|
|
367
366
|
provider: "google";
|
|
@@ -370,8 +369,17 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
370
369
|
weight?: string[] | undefined;
|
|
371
370
|
subsets?: string[] | undefined;
|
|
372
371
|
};
|
|
372
|
+
type: "registry:font";
|
|
373
373
|
title?: string | undefined;
|
|
374
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;
|
|
375
383
|
extends?: string | undefined;
|
|
376
384
|
author?: string | undefined;
|
|
377
385
|
description?: string | undefined;
|
|
@@ -380,7 +388,7 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
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
|
-
content?: string[] | undefined;
|
|
395
|
-
theme?: Record<string, any> | 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;
|
|
@@ -419,22 +419,22 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
419
419
|
name: string;
|
|
420
420
|
type: "registry:base";
|
|
421
421
|
config?: {
|
|
422
|
+
style?: string | undefined;
|
|
423
|
+
iconLibrary?: string | undefined;
|
|
424
|
+
font?: string | undefined;
|
|
425
|
+
fontHeading?: string | undefined;
|
|
426
|
+
menuAccent?: "subtle" | "bold" | undefined;
|
|
427
|
+
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
422
428
|
$schema?: string | undefined;
|
|
429
|
+
typescript?: boolean | undefined;
|
|
423
430
|
tailwind?: {
|
|
424
431
|
config?: string | undefined;
|
|
425
|
-
css?: string | undefined;
|
|
426
432
|
baseColor?: string | undefined;
|
|
433
|
+
css?: string | undefined;
|
|
427
434
|
cssVariables?: boolean | undefined;
|
|
428
435
|
prefix?: string | undefined;
|
|
429
436
|
} | undefined;
|
|
430
|
-
style?: string | undefined;
|
|
431
|
-
font?: string | undefined;
|
|
432
|
-
fontHeading?: string | undefined;
|
|
433
|
-
typescript?: boolean | undefined;
|
|
434
|
-
iconLibrary?: string | undefined;
|
|
435
437
|
rtl?: boolean | undefined;
|
|
436
|
-
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
437
|
-
menuAccent?: "subtle" | "bold" | undefined;
|
|
438
438
|
aliases?: {
|
|
439
439
|
components?: string | undefined;
|
|
440
440
|
utils?: string | undefined;
|
|
@@ -451,6 +451,14 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
451
451
|
} | undefined;
|
|
452
452
|
title?: string | undefined;
|
|
453
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;
|
|
454
462
|
extends?: string | undefined;
|
|
455
463
|
author?: string | undefined;
|
|
456
464
|
description?: string | undefined;
|
|
@@ -459,7 +467,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
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,26 +476,17 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
468
476
|
content?: string | undefined;
|
|
469
477
|
target?: string | undefined;
|
|
470
478
|
})[] | undefined;
|
|
471
|
-
tailwind?: {
|
|
472
|
-
config?: {
|
|
473
|
-
content?: string[] | undefined;
|
|
474
|
-
theme?: Record<string, any> | 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;
|
|
487
487
|
categories?: string[] | undefined;
|
|
488
488
|
} | {
|
|
489
489
|
name: string;
|
|
490
|
-
type: "registry:font";
|
|
491
490
|
font: {
|
|
492
491
|
family: string;
|
|
493
492
|
provider: "google";
|
|
@@ -496,8 +495,17 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
496
495
|
weight?: string[] | undefined;
|
|
497
496
|
subsets?: string[] | undefined;
|
|
498
497
|
};
|
|
498
|
+
type: "registry:font";
|
|
499
499
|
title?: string | undefined;
|
|
500
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;
|
|
501
509
|
extends?: string | undefined;
|
|
502
510
|
author?: string | undefined;
|
|
503
511
|
description?: string | undefined;
|
|
@@ -506,7 +514,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
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,28 +523,28 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
515
523
|
content?: string | undefined;
|
|
516
524
|
target?: string | undefined;
|
|
517
525
|
})[] | undefined;
|
|
518
|
-
tailwind?: {
|
|
519
|
-
config?: {
|
|
520
|
-
content?: string[] | undefined;
|
|
521
|
-
theme?: Record<string, any> | 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
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;
|
|
540
548
|
extends?: string | undefined;
|
|
541
549
|
author?: string | undefined;
|
|
542
550
|
description?: string | undefined;
|
|
@@ -545,7 +553,7 @@ declare function getShadcnRegistryIndex(): Promise<({
|
|
|
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
|
-
content?: string[] | undefined;
|
|
560
|
-
theme?: Record<string, any> | 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;
|
|
@@ -1043,22 +1043,22 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1043
1043
|
name: string;
|
|
1044
1044
|
type: "registry:base";
|
|
1045
1045
|
config?: {
|
|
1046
|
+
style?: string | undefined;
|
|
1047
|
+
iconLibrary?: string | undefined;
|
|
1048
|
+
font?: string | undefined;
|
|
1049
|
+
fontHeading?: string | undefined;
|
|
1050
|
+
menuAccent?: "subtle" | "bold" | undefined;
|
|
1051
|
+
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1046
1052
|
$schema?: string | undefined;
|
|
1053
|
+
typescript?: boolean | undefined;
|
|
1047
1054
|
tailwind?: {
|
|
1048
1055
|
config?: string | undefined;
|
|
1049
|
-
css?: string | undefined;
|
|
1050
1056
|
baseColor?: string | undefined;
|
|
1057
|
+
css?: string | undefined;
|
|
1051
1058
|
cssVariables?: boolean | undefined;
|
|
1052
1059
|
prefix?: string | undefined;
|
|
1053
1060
|
} | undefined;
|
|
1054
|
-
style?: string | undefined;
|
|
1055
|
-
font?: string | undefined;
|
|
1056
|
-
fontHeading?: string | undefined;
|
|
1057
|
-
typescript?: boolean | undefined;
|
|
1058
|
-
iconLibrary?: string | undefined;
|
|
1059
1061
|
rtl?: boolean | undefined;
|
|
1060
|
-
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1061
|
-
menuAccent?: "subtle" | "bold" | undefined;
|
|
1062
1062
|
aliases?: {
|
|
1063
1063
|
components?: string | undefined;
|
|
1064
1064
|
utils?: string | undefined;
|
|
@@ -1075,6 +1075,14 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1075
1075
|
} | undefined;
|
|
1076
1076
|
title?: string | undefined;
|
|
1077
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;
|
|
1078
1086
|
extends?: string | undefined;
|
|
1079
1087
|
author?: string | undefined;
|
|
1080
1088
|
description?: string | undefined;
|
|
@@ -1083,7 +1091,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
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,26 +1100,17 @@ 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
|
-
content?: string[] | undefined;
|
|
1098
|
-
theme?: Record<string, any> | 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;
|
|
1111
1111
|
categories?: string[] | undefined;
|
|
1112
1112
|
} | {
|
|
1113
1113
|
name: string;
|
|
1114
|
-
type: "registry:font";
|
|
1115
1114
|
font: {
|
|
1116
1115
|
family: string;
|
|
1117
1116
|
provider: "google";
|
|
@@ -1120,8 +1119,17 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
1120
1119
|
weight?: string[] | undefined;
|
|
1121
1120
|
subsets?: string[] | undefined;
|
|
1122
1121
|
};
|
|
1122
|
+
type: "registry:font";
|
|
1123
1123
|
title?: string | undefined;
|
|
1124
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;
|
|
1125
1133
|
extends?: string | undefined;
|
|
1126
1134
|
author?: string | undefined;
|
|
1127
1135
|
description?: string | undefined;
|
|
@@ -1130,7 +1138,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
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,28 +1147,28 @@ 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
|
-
content?: string[] | undefined;
|
|
1145
|
-
theme?: Record<string, any> | 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
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;
|
|
1164
1172
|
extends?: string | undefined;
|
|
1165
1173
|
author?: string | undefined;
|
|
1166
1174
|
description?: string | undefined;
|
|
@@ -1169,7 +1177,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
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
|
-
content?: string[] | undefined;
|
|
1184
|
-
theme?: Record<string, any> | 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;
|
|
@@ -1203,22 +1203,22 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1203
1203
|
name: string;
|
|
1204
1204
|
type: "registry:base";
|
|
1205
1205
|
config?: {
|
|
1206
|
+
style?: string | undefined;
|
|
1207
|
+
iconLibrary?: string | undefined;
|
|
1208
|
+
font?: string | undefined;
|
|
1209
|
+
fontHeading?: string | undefined;
|
|
1210
|
+
menuAccent?: "subtle" | "bold" | undefined;
|
|
1211
|
+
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1206
1212
|
$schema?: string | undefined;
|
|
1213
|
+
typescript?: boolean | undefined;
|
|
1207
1214
|
tailwind?: {
|
|
1208
1215
|
config?: string | undefined;
|
|
1209
|
-
css?: string | undefined;
|
|
1210
1216
|
baseColor?: string | undefined;
|
|
1217
|
+
css?: string | undefined;
|
|
1211
1218
|
cssVariables?: boolean | undefined;
|
|
1212
1219
|
prefix?: string | undefined;
|
|
1213
1220
|
} | undefined;
|
|
1214
|
-
style?: string | undefined;
|
|
1215
|
-
font?: string | undefined;
|
|
1216
|
-
fontHeading?: string | undefined;
|
|
1217
|
-
typescript?: boolean | undefined;
|
|
1218
|
-
iconLibrary?: string | undefined;
|
|
1219
1221
|
rtl?: boolean | undefined;
|
|
1220
|
-
menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
|
|
1221
|
-
menuAccent?: "subtle" | "bold" | undefined;
|
|
1222
1222
|
aliases?: {
|
|
1223
1223
|
components?: string | undefined;
|
|
1224
1224
|
utils?: string | undefined;
|
|
@@ -1235,6 +1235,14 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1235
1235
|
} | undefined;
|
|
1236
1236
|
title?: string | undefined;
|
|
1237
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;
|
|
1238
1246
|
extends?: string | undefined;
|
|
1239
1247
|
author?: string | undefined;
|
|
1240
1248
|
description?: string | undefined;
|
|
@@ -1243,7 +1251,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
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,26 +1260,17 @@ 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
|
-
content?: string[] | undefined;
|
|
1258
|
-
theme?: Record<string, any> | 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;
|
|
1271
1271
|
categories?: string[] | undefined;
|
|
1272
1272
|
} | {
|
|
1273
1273
|
name: string;
|
|
1274
|
-
type: "registry:font";
|
|
1275
1274
|
font: {
|
|
1276
1275
|
family: string;
|
|
1277
1276
|
provider: "google";
|
|
@@ -1280,8 +1279,17 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
1280
1279
|
weight?: string[] | undefined;
|
|
1281
1280
|
subsets?: string[] | undefined;
|
|
1282
1281
|
};
|
|
1282
|
+
type: "registry:font";
|
|
1283
1283
|
title?: string | undefined;
|
|
1284
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;
|
|
1285
1293
|
extends?: string | undefined;
|
|
1286
1294
|
author?: string | undefined;
|
|
1287
1295
|
description?: string | undefined;
|
|
@@ -1290,7 +1298,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
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,28 +1307,28 @@ 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
|
-
content?: string[] | undefined;
|
|
1305
|
-
theme?: Record<string, any> | 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
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;
|
|
1324
1332
|
extends?: string | undefined;
|
|
1325
1333
|
author?: string | undefined;
|
|
1326
1334
|
description?: string | undefined;
|
|
@@ -1329,7 +1337,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
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
|
-
content?: string[] | undefined;
|
|
1344
|
-
theme?: Record<string, any> | 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
|