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