shadcn-vue 2.5.3 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/{api-DeEl1PAz.d.ts → api-Cs4qqzRd.d.ts} +429 -373
  2. package/dist/api-Cs4qqzRd.d.ts.map +1 -0
  3. package/dist/{get-config-xVIS83XY.d.ts → get-config-BqGgbrd-.d.ts} +2 -2
  4. package/dist/get-config-BqGgbrd-.d.ts.map +1 -0
  5. package/dist/{index-bYDEHyKV.d.ts → index-BUjzg4yQ.d.ts} +485 -459
  6. package/dist/index-BUjzg4yQ.d.ts.map +1 -0
  7. package/dist/index.d.ts +3 -3
  8. package/dist/index.js +790 -730
  9. package/dist/index.js.map +1 -1
  10. package/dist/mcp/index.js +4 -4
  11. package/dist/{mcp-CdrgZ16R.js → mcp-BOI2btwY.js} +2 -2
  12. package/dist/{mcp-CdrgZ16R.js.map → mcp-BOI2btwY.js.map} +1 -1
  13. package/dist/preset/index.d.ts +37 -0
  14. package/dist/preset/index.d.ts.map +1 -0
  15. package/dist/preset/index.js +3 -0
  16. package/dist/preset-DK0fGW7r.js +210 -0
  17. package/dist/preset-DK0fGW7r.js.map +1 -0
  18. package/dist/registry/index.d.ts +3 -3
  19. package/dist/registry/index.js +3 -3
  20. package/dist/{registry-D3TD67q0.js → registry-CMd93ZwM.js} +797 -271
  21. package/dist/registry-CMd93ZwM.js.map +1 -0
  22. package/dist/schema/index.d.ts +1 -1
  23. package/dist/schema/index.js +1 -1
  24. package/dist/{schema-DANtXGPk.js → schema-_wQCad_c.js} +15 -4
  25. package/dist/schema-_wQCad_c.js.map +1 -0
  26. package/dist/tailwind.css +98 -0
  27. package/dist/tailwind.css.map +1 -0
  28. package/dist/tailwind.js +1 -0
  29. package/dist/{transform-menu-CfHtcBZK.js → transform-menu-CdBnB1yA.js} +116 -109
  30. package/dist/transform-menu-CdBnB1yA.js.map +1 -0
  31. package/dist/utils/index.d.ts +2 -2
  32. package/dist/utils/index.d.ts.map +1 -1
  33. package/dist/utils/index.js +1 -1
  34. package/package.json +5 -1
  35. package/dist/api-DeEl1PAz.d.ts.map +0 -1
  36. package/dist/get-config-xVIS83XY.d.ts.map +0 -1
  37. package/dist/index-bYDEHyKV.d.ts.map +0 -1
  38. package/dist/registry-D3TD67q0.js.map +0 -1
  39. package/dist/schema-DANtXGPk.js.map +0 -1
  40. package/dist/transform-menu-CfHtcBZK.js.map +0 -1
@@ -1,5 +1,5 @@
1
- import { C as registryItemSchema, g as registryIndexSchema } from "./index-bYDEHyKV.js";
2
- import { t as Config } from "./get-config-xVIS83XY.js";
1
+ import { C as registryItemSchema, g as registryIndexSchema } from "./index-BUjzg4yQ.js";
2
+ import { t as Config } from "./get-config-BqGgbrd-.js";
3
3
  import { z } from "zod";
4
4
 
5
5
  //#region src/registry/api.d.ts
@@ -14,10 +14,6 @@ declare function getRegistry(name: string, options?: {
14
14
  type: "registry:base";
15
15
  config?: {
16
16
  $schema?: string | undefined;
17
- style?: string | undefined;
18
- base?: string | undefined;
19
- font?: string | undefined;
20
- typescript?: boolean | undefined;
21
17
  tailwind?: {
22
18
  config?: string | undefined;
23
19
  css?: string | undefined;
@@ -25,8 +21,13 @@ declare function getRegistry(name: string, options?: {
25
21
  cssVariables?: boolean | undefined;
26
22
  prefix?: string | undefined;
27
23
  } | undefined;
24
+ style?: string | undefined;
25
+ font?: string | undefined;
26
+ fontHeading?: string | undefined;
27
+ typescript?: boolean | undefined;
28
28
  iconLibrary?: string | undefined;
29
- menuColor?: "default" | "inverted" | undefined;
29
+ rtl?: boolean | undefined;
30
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
30
31
  menuAccent?: "subtle" | "bold" | undefined;
31
32
  aliases?: {
32
33
  components?: string | undefined;
@@ -44,14 +45,6 @@ declare function getRegistry(name: string, options?: {
44
45
  } | undefined;
45
46
  title?: string | undefined;
46
47
  $schema?: string | undefined;
47
- tailwind?: {
48
- config?: {
49
- content?: string[] | undefined;
50
- theme?: Record<string, any> | undefined;
51
- plugins?: string[] | undefined;
52
- } | undefined;
53
- } | undefined;
54
- css?: Record<string, any> | undefined;
55
48
  extends?: string | undefined;
56
49
  author?: string | undefined;
57
50
  description?: string | undefined;
@@ -60,7 +53,7 @@ declare function getRegistry(name: string, options?: {
60
53
  registryDependencies?: string[] | undefined;
61
54
  files?: ({
62
55
  path: string;
63
- type: "registry:page" | "registry:file";
56
+ type: "registry:file" | "registry:page";
64
57
  target: string;
65
58
  content?: string | undefined;
66
59
  } | {
@@ -69,11 +62,19 @@ declare function getRegistry(name: string, options?: {
69
62
  content?: string | undefined;
70
63
  target?: string | undefined;
71
64
  })[] | undefined;
65
+ tailwind?: {
66
+ config?: {
67
+ content?: string[] | undefined;
68
+ theme?: Record<string, any> | undefined;
69
+ plugins?: string[] | undefined;
70
+ } | undefined;
71
+ } | undefined;
72
72
  cssVars?: {
73
73
  theme?: Record<string, string> | undefined;
74
74
  light?: Record<string, string> | undefined;
75
75
  dark?: Record<string, string> | undefined;
76
76
  } | undefined;
77
+ css?: Record<string, any> | undefined;
77
78
  envVars?: Record<string, string> | undefined;
78
79
  meta?: Record<string, any> | undefined;
79
80
  docs?: string | undefined;
@@ -91,14 +92,6 @@ declare function getRegistry(name: string, options?: {
91
92
  };
92
93
  title?: string | undefined;
93
94
  $schema?: string | undefined;
94
- tailwind?: {
95
- config?: {
96
- content?: string[] | undefined;
97
- theme?: Record<string, any> | undefined;
98
- plugins?: string[] | undefined;
99
- } | undefined;
100
- } | undefined;
101
- css?: Record<string, any> | undefined;
102
95
  extends?: string | undefined;
103
96
  author?: string | undefined;
104
97
  description?: string | undefined;
@@ -107,7 +100,7 @@ declare function getRegistry(name: string, options?: {
107
100
  registryDependencies?: string[] | undefined;
108
101
  files?: ({
109
102
  path: string;
110
- type: "registry:page" | "registry:file";
103
+ type: "registry:file" | "registry:page";
111
104
  target: string;
112
105
  content?: string | undefined;
113
106
  } | {
@@ -116,28 +109,28 @@ declare function getRegistry(name: string, options?: {
116
109
  content?: string | undefined;
117
110
  target?: string | undefined;
118
111
  })[] | undefined;
112
+ tailwind?: {
113
+ config?: {
114
+ content?: string[] | undefined;
115
+ theme?: Record<string, any> | undefined;
116
+ plugins?: string[] | undefined;
117
+ } | undefined;
118
+ } | undefined;
119
119
  cssVars?: {
120
120
  theme?: Record<string, string> | undefined;
121
121
  light?: Record<string, string> | undefined;
122
122
  dark?: Record<string, string> | undefined;
123
123
  } | undefined;
124
+ 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: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
+ type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
131
132
  title?: string | undefined;
132
133
  $schema?: string | undefined;
133
- tailwind?: {
134
- config?: {
135
- content?: string[] | undefined;
136
- theme?: Record<string, any> | undefined;
137
- plugins?: string[] | undefined;
138
- } | undefined;
139
- } | undefined;
140
- css?: Record<string, any> | undefined;
141
134
  extends?: string | undefined;
142
135
  author?: string | undefined;
143
136
  description?: string | undefined;
@@ -146,7 +139,7 @@ declare function getRegistry(name: string, options?: {
146
139
  registryDependencies?: string[] | undefined;
147
140
  files?: ({
148
141
  path: string;
149
- type: "registry:page" | "registry:file";
142
+ type: "registry:file" | "registry:page";
150
143
  target: string;
151
144
  content?: string | undefined;
152
145
  } | {
@@ -155,11 +148,19 @@ declare function getRegistry(name: string, options?: {
155
148
  content?: string | undefined;
156
149
  target?: string | undefined;
157
150
  })[] | undefined;
151
+ tailwind?: {
152
+ config?: {
153
+ content?: string[] | undefined;
154
+ theme?: Record<string, any> | undefined;
155
+ plugins?: string[] | undefined;
156
+ } | undefined;
157
+ } | undefined;
158
158
  cssVars?: {
159
159
  theme?: Record<string, string> | undefined;
160
160
  light?: Record<string, string> | undefined;
161
161
  dark?: Record<string, string> | undefined;
162
162
  } | undefined;
163
+ css?: Record<string, any> | undefined;
163
164
  envVars?: Record<string, string> | undefined;
164
165
  meta?: Record<string, any> | undefined;
165
166
  docs?: string | undefined;
@@ -174,10 +175,6 @@ declare function getRegistryItems(items: string[], options?: {
174
175
  type: "registry:base";
175
176
  config?: {
176
177
  $schema?: string | undefined;
177
- style?: string | undefined;
178
- base?: string | undefined;
179
- font?: string | undefined;
180
- typescript?: boolean | undefined;
181
178
  tailwind?: {
182
179
  config?: string | undefined;
183
180
  css?: string | undefined;
@@ -185,8 +182,13 @@ declare function getRegistryItems(items: string[], options?: {
185
182
  cssVariables?: boolean | undefined;
186
183
  prefix?: string | undefined;
187
184
  } | undefined;
185
+ style?: string | undefined;
186
+ font?: string | undefined;
187
+ fontHeading?: string | undefined;
188
+ typescript?: boolean | undefined;
188
189
  iconLibrary?: string | undefined;
189
- menuColor?: "default" | "inverted" | undefined;
190
+ rtl?: boolean | undefined;
191
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
190
192
  menuAccent?: "subtle" | "bold" | undefined;
191
193
  aliases?: {
192
194
  components?: string | undefined;
@@ -204,14 +206,6 @@ declare function getRegistryItems(items: string[], options?: {
204
206
  } | undefined;
205
207
  title?: string | undefined;
206
208
  $schema?: string | undefined;
207
- tailwind?: {
208
- config?: {
209
- content?: string[] | undefined;
210
- theme?: Record<string, any> | undefined;
211
- plugins?: string[] | undefined;
212
- } | undefined;
213
- } | undefined;
214
- css?: Record<string, any> | undefined;
215
209
  extends?: string | undefined;
216
210
  author?: string | undefined;
217
211
  description?: string | undefined;
@@ -220,7 +214,7 @@ declare function getRegistryItems(items: string[], options?: {
220
214
  registryDependencies?: string[] | undefined;
221
215
  files?: ({
222
216
  path: string;
223
- type: "registry:page" | "registry:file";
217
+ type: "registry:file" | "registry:page";
224
218
  target: string;
225
219
  content?: string | undefined;
226
220
  } | {
@@ -229,11 +223,19 @@ declare function getRegistryItems(items: string[], options?: {
229
223
  content?: string | undefined;
230
224
  target?: string | undefined;
231
225
  })[] | undefined;
226
+ tailwind?: {
227
+ config?: {
228
+ content?: string[] | undefined;
229
+ theme?: Record<string, any> | undefined;
230
+ plugins?: string[] | undefined;
231
+ } | undefined;
232
+ } | undefined;
232
233
  cssVars?: {
233
234
  theme?: Record<string, string> | undefined;
234
235
  light?: Record<string, string> | undefined;
235
236
  dark?: Record<string, string> | undefined;
236
237
  } | undefined;
238
+ css?: Record<string, any> | undefined;
237
239
  envVars?: Record<string, string> | undefined;
238
240
  meta?: Record<string, any> | undefined;
239
241
  docs?: string | undefined;
@@ -251,14 +253,6 @@ declare function getRegistryItems(items: string[], options?: {
251
253
  };
252
254
  title?: string | undefined;
253
255
  $schema?: string | undefined;
254
- tailwind?: {
255
- config?: {
256
- content?: string[] | undefined;
257
- theme?: Record<string, any> | undefined;
258
- plugins?: string[] | undefined;
259
- } | undefined;
260
- } | undefined;
261
- css?: Record<string, any> | undefined;
262
256
  extends?: string | undefined;
263
257
  author?: string | undefined;
264
258
  description?: string | undefined;
@@ -267,7 +261,7 @@ declare function getRegistryItems(items: string[], options?: {
267
261
  registryDependencies?: string[] | undefined;
268
262
  files?: ({
269
263
  path: string;
270
- type: "registry:page" | "registry:file";
264
+ type: "registry:file" | "registry:page";
271
265
  target: string;
272
266
  content?: string | undefined;
273
267
  } | {
@@ -276,28 +270,28 @@ declare function getRegistryItems(items: string[], options?: {
276
270
  content?: string | undefined;
277
271
  target?: string | undefined;
278
272
  })[] | undefined;
273
+ tailwind?: {
274
+ config?: {
275
+ content?: string[] | undefined;
276
+ theme?: Record<string, any> | undefined;
277
+ plugins?: string[] | undefined;
278
+ } | undefined;
279
+ } | undefined;
279
280
  cssVars?: {
280
281
  theme?: Record<string, string> | undefined;
281
282
  light?: Record<string, string> | undefined;
282
283
  dark?: Record<string, string> | undefined;
283
284
  } | undefined;
285
+ css?: Record<string, any> | undefined;
284
286
  envVars?: Record<string, string> | undefined;
285
287
  meta?: Record<string, any> | undefined;
286
288
  docs?: string | undefined;
287
289
  categories?: string[] | undefined;
288
290
  } | {
289
291
  name: string;
290
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
292
+ type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
291
293
  title?: string | undefined;
292
294
  $schema?: string | undefined;
293
- tailwind?: {
294
- config?: {
295
- content?: string[] | undefined;
296
- theme?: Record<string, any> | undefined;
297
- plugins?: string[] | undefined;
298
- } | undefined;
299
- } | undefined;
300
- css?: Record<string, any> | undefined;
301
295
  extends?: string | undefined;
302
296
  author?: string | undefined;
303
297
  description?: string | undefined;
@@ -306,7 +300,7 @@ declare function getRegistryItems(items: string[], options?: {
306
300
  registryDependencies?: string[] | undefined;
307
301
  files?: ({
308
302
  path: string;
309
- type: "registry:page" | "registry:file";
303
+ type: "registry:file" | "registry:page";
310
304
  target: string;
311
305
  content?: string | undefined;
312
306
  } | {
@@ -315,11 +309,19 @@ declare function getRegistryItems(items: string[], options?: {
315
309
  content?: string | undefined;
316
310
  target?: string | undefined;
317
311
  })[] | undefined;
312
+ tailwind?: {
313
+ config?: {
314
+ content?: string[] | undefined;
315
+ theme?: Record<string, any> | undefined;
316
+ plugins?: string[] | undefined;
317
+ } | undefined;
318
+ } | undefined;
318
319
  cssVars?: {
319
320
  theme?: Record<string, string> | undefined;
320
321
  light?: Record<string, string> | undefined;
321
322
  dark?: Record<string, string> | undefined;
322
323
  } | undefined;
324
+ css?: Record<string, any> | undefined;
323
325
  envVars?: Record<string, string> | undefined;
324
326
  meta?: Record<string, any> | undefined;
325
327
  docs?: string | undefined;
@@ -329,19 +331,11 @@ declare function resolveRegistryItems(items: string[], options?: {
329
331
  config?: Partial<Config>;
330
332
  useCache?: boolean;
331
333
  }): Promise<{
332
- tailwind?: {
333
- config?: {
334
- content?: string[] | undefined;
335
- theme?: Record<string, any> | undefined;
336
- plugins?: string[] | undefined;
337
- } | undefined;
338
- } | undefined;
339
- css?: Record<string, any> | undefined;
340
334
  dependencies?: string[] | undefined;
341
335
  devDependencies?: string[] | undefined;
342
336
  files?: ({
343
337
  path: string;
344
- type: "registry:page" | "registry:file";
338
+ type: "registry:file" | "registry:page";
345
339
  target: string;
346
340
  content?: string | undefined;
347
341
  } | {
@@ -350,11 +344,19 @@ declare function resolveRegistryItems(items: string[], options?: {
350
344
  content?: string | undefined;
351
345
  target?: string | undefined;
352
346
  })[] | undefined;
347
+ tailwind?: {
348
+ config?: {
349
+ content?: string[] | undefined;
350
+ theme?: Record<string, any> | undefined;
351
+ plugins?: string[] | undefined;
352
+ } | undefined;
353
+ } | undefined;
353
354
  cssVars?: {
354
355
  theme?: Record<string, string> | undefined;
355
356
  light?: Record<string, string> | undefined;
356
357
  dark?: Record<string, string> | undefined;
357
358
  } | undefined;
359
+ css?: Record<string, any> | undefined;
358
360
  envVars?: Record<string, string> | undefined;
359
361
  docs?: string | undefined;
360
362
  fonts?: {
@@ -370,14 +372,6 @@ declare function resolveRegistryItems(items: string[], options?: {
370
372
  };
371
373
  title?: string | undefined;
372
374
  $schema?: string | undefined;
373
- tailwind?: {
374
- config?: {
375
- content?: string[] | undefined;
376
- theme?: Record<string, any> | undefined;
377
- plugins?: string[] | undefined;
378
- } | undefined;
379
- } | undefined;
380
- css?: Record<string, any> | undefined;
381
375
  extends?: string | undefined;
382
376
  author?: string | undefined;
383
377
  description?: string | undefined;
@@ -386,7 +380,7 @@ declare function resolveRegistryItems(items: string[], options?: {
386
380
  registryDependencies?: string[] | undefined;
387
381
  files?: ({
388
382
  path: string;
389
- type: "registry:page" | "registry:file";
383
+ type: "registry:file" | "registry:page";
390
384
  target: string;
391
385
  content?: string | undefined;
392
386
  } | {
@@ -395,11 +389,19 @@ declare function resolveRegistryItems(items: string[], options?: {
395
389
  content?: string | undefined;
396
390
  target?: string | undefined;
397
391
  })[] | undefined;
392
+ tailwind?: {
393
+ config?: {
394
+ content?: string[] | undefined;
395
+ theme?: Record<string, any> | undefined;
396
+ plugins?: string[] | undefined;
397
+ } | undefined;
398
+ } | undefined;
398
399
  cssVars?: {
399
400
  theme?: Record<string, string> | undefined;
400
401
  light?: Record<string, string> | undefined;
401
402
  dark?: Record<string, string> | undefined;
402
403
  } | undefined;
404
+ css?: Record<string, any> | undefined;
403
405
  envVars?: Record<string, string> | undefined;
404
406
  meta?: Record<string, any> | undefined;
405
407
  docs?: string | undefined;
@@ -418,10 +420,6 @@ declare function getShadcnRegistryIndex(): Promise<({
418
420
  type: "registry:base";
419
421
  config?: {
420
422
  $schema?: string | undefined;
421
- style?: string | undefined;
422
- base?: string | undefined;
423
- font?: string | undefined;
424
- typescript?: boolean | undefined;
425
423
  tailwind?: {
426
424
  config?: string | undefined;
427
425
  css?: string | undefined;
@@ -429,8 +427,13 @@ declare function getShadcnRegistryIndex(): Promise<({
429
427
  cssVariables?: boolean | undefined;
430
428
  prefix?: string | undefined;
431
429
  } | undefined;
430
+ style?: string | undefined;
431
+ font?: string | undefined;
432
+ fontHeading?: string | undefined;
433
+ typescript?: boolean | undefined;
432
434
  iconLibrary?: string | undefined;
433
- menuColor?: "default" | "inverted" | undefined;
435
+ rtl?: boolean | undefined;
436
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
434
437
  menuAccent?: "subtle" | "bold" | undefined;
435
438
  aliases?: {
436
439
  components?: string | undefined;
@@ -448,14 +451,6 @@ declare function getShadcnRegistryIndex(): Promise<({
448
451
  } | undefined;
449
452
  title?: string | undefined;
450
453
  $schema?: string | undefined;
451
- tailwind?: {
452
- config?: {
453
- content?: string[] | undefined;
454
- theme?: Record<string, any> | undefined;
455
- plugins?: string[] | undefined;
456
- } | undefined;
457
- } | undefined;
458
- css?: Record<string, any> | undefined;
459
454
  extends?: string | undefined;
460
455
  author?: string | undefined;
461
456
  description?: string | undefined;
@@ -464,7 +459,7 @@ declare function getShadcnRegistryIndex(): Promise<({
464
459
  registryDependencies?: string[] | undefined;
465
460
  files?: ({
466
461
  path: string;
467
- type: "registry:page" | "registry:file";
462
+ type: "registry:file" | "registry:page";
468
463
  target: string;
469
464
  content?: string | undefined;
470
465
  } | {
@@ -473,11 +468,19 @@ declare function getShadcnRegistryIndex(): Promise<({
473
468
  content?: string | undefined;
474
469
  target?: string | undefined;
475
470
  })[] | undefined;
471
+ tailwind?: {
472
+ config?: {
473
+ content?: string[] | undefined;
474
+ theme?: Record<string, any> | undefined;
475
+ plugins?: string[] | undefined;
476
+ } | undefined;
477
+ } | undefined;
476
478
  cssVars?: {
477
479
  theme?: Record<string, string> | undefined;
478
480
  light?: Record<string, string> | undefined;
479
481
  dark?: Record<string, string> | undefined;
480
482
  } | undefined;
483
+ css?: Record<string, any> | undefined;
481
484
  envVars?: Record<string, string> | undefined;
482
485
  meta?: Record<string, any> | undefined;
483
486
  docs?: string | undefined;
@@ -495,14 +498,6 @@ declare function getShadcnRegistryIndex(): Promise<({
495
498
  };
496
499
  title?: string | undefined;
497
500
  $schema?: string | undefined;
498
- tailwind?: {
499
- config?: {
500
- content?: string[] | undefined;
501
- theme?: Record<string, any> | undefined;
502
- plugins?: string[] | undefined;
503
- } | undefined;
504
- } | undefined;
505
- css?: Record<string, any> | undefined;
506
501
  extends?: string | undefined;
507
502
  author?: string | undefined;
508
503
  description?: string | undefined;
@@ -511,7 +506,7 @@ declare function getShadcnRegistryIndex(): Promise<({
511
506
  registryDependencies?: string[] | undefined;
512
507
  files?: ({
513
508
  path: string;
514
- type: "registry:page" | "registry:file";
509
+ type: "registry:file" | "registry:page";
515
510
  target: string;
516
511
  content?: string | undefined;
517
512
  } | {
@@ -520,28 +515,28 @@ declare function getShadcnRegistryIndex(): Promise<({
520
515
  content?: string | undefined;
521
516
  target?: string | undefined;
522
517
  })[] | undefined;
518
+ tailwind?: {
519
+ config?: {
520
+ content?: string[] | undefined;
521
+ theme?: Record<string, any> | undefined;
522
+ plugins?: string[] | undefined;
523
+ } | undefined;
524
+ } | undefined;
523
525
  cssVars?: {
524
526
  theme?: Record<string, string> | undefined;
525
527
  light?: Record<string, string> | undefined;
526
528
  dark?: Record<string, string> | undefined;
527
529
  } | undefined;
530
+ css?: Record<string, any> | undefined;
528
531
  envVars?: Record<string, string> | undefined;
529
532
  meta?: Record<string, any> | undefined;
530
533
  docs?: string | undefined;
531
534
  categories?: string[] | undefined;
532
535
  } | {
533
536
  name: string;
534
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
537
+ type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
535
538
  title?: string | undefined;
536
539
  $schema?: string | undefined;
537
- tailwind?: {
538
- config?: {
539
- content?: string[] | undefined;
540
- theme?: Record<string, any> | undefined;
541
- plugins?: string[] | undefined;
542
- } | undefined;
543
- } | undefined;
544
- css?: Record<string, any> | undefined;
545
540
  extends?: string | undefined;
546
541
  author?: string | undefined;
547
542
  description?: string | undefined;
@@ -550,7 +545,7 @@ declare function getShadcnRegistryIndex(): Promise<({
550
545
  registryDependencies?: string[] | undefined;
551
546
  files?: ({
552
547
  path: string;
553
- type: "registry:page" | "registry:file";
548
+ type: "registry:file" | "registry:page";
554
549
  target: string;
555
550
  content?: string | undefined;
556
551
  } | {
@@ -559,11 +554,19 @@ declare function getShadcnRegistryIndex(): Promise<({
559
554
  content?: string | undefined;
560
555
  target?: string | undefined;
561
556
  })[] | undefined;
557
+ tailwind?: {
558
+ config?: {
559
+ content?: string[] | undefined;
560
+ theme?: Record<string, any> | undefined;
561
+ plugins?: string[] | undefined;
562
+ } | undefined;
563
+ } | undefined;
562
564
  cssVars?: {
563
565
  theme?: Record<string, string> | undefined;
564
566
  light?: Record<string, string> | undefined;
565
567
  dark?: Record<string, string> | undefined;
566
568
  } | undefined;
569
+ css?: Record<string, any> | undefined;
567
570
  envVars?: Record<string, string> | undefined;
568
571
  meta?: Record<string, any> | undefined;
569
572
  docs?: string | undefined;
@@ -578,17 +581,23 @@ declare function getRegistryBaseColors(): Promise<readonly [{
578
581
  readonly name: "neutral";
579
582
  readonly label: "Neutral";
580
583
  }, {
581
- readonly name: "gray";
582
- readonly label: "Gray";
584
+ readonly name: "stone";
585
+ readonly label: "Stone";
583
586
  }, {
584
587
  readonly name: "zinc";
585
588
  readonly label: "Zinc";
586
589
  }, {
587
- readonly name: "stone";
588
- readonly label: "Stone";
590
+ readonly name: "mauve";
591
+ readonly label: "Mauve";
592
+ }, {
593
+ readonly name: "olive";
594
+ readonly label: "Olive";
589
595
  }, {
590
- readonly name: "slate";
591
- readonly label: "Slate";
596
+ readonly name: "mist";
597
+ readonly label: "Mist";
598
+ }, {
599
+ readonly name: "taupe";
600
+ readonly label: "Taupe";
592
601
  }]>;
593
602
  /**
594
603
  * Get available component library bases (e.g., Reka UI).
@@ -662,6 +671,30 @@ declare function getRegistryFonts(): readonly [{
662
671
  readonly import: "@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');";
663
672
  readonly variable: "--font-sans";
664
673
  readonly weight: readonly ["400", "500", "600", "700"];
674
+ }, {
675
+ readonly name: "geist-sans";
676
+ readonly label: "Geist";
677
+ readonly family: "Geist";
678
+ readonly provider: "google";
679
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');";
680
+ readonly variable: "--font-sans";
681
+ readonly weight: readonly ["400", "500", "600", "700"];
682
+ }, {
683
+ readonly name: "noto-sans";
684
+ readonly label: "Noto Sans";
685
+ readonly family: "Noto Sans";
686
+ readonly provider: "google";
687
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');";
688
+ readonly variable: "--font-sans";
689
+ readonly weight: readonly ["400", "500", "600", "700"];
690
+ }, {
691
+ readonly name: "nunito-sans";
692
+ readonly label: "Nunito Sans";
693
+ readonly family: "Nunito Sans";
694
+ readonly provider: "google";
695
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap');";
696
+ readonly variable: "--font-sans";
697
+ readonly weight: readonly ["400", "500", "600", "700"];
665
698
  }, {
666
699
  readonly name: "figtree";
667
700
  readonly label: "Figtree";
@@ -671,27 +704,51 @@ declare function getRegistryFonts(): readonly [{
671
704
  readonly variable: "--font-sans";
672
705
  readonly weight: readonly ["400", "500", "600", "700"];
673
706
  }, {
674
- readonly name: "jetbrains-mono";
675
- readonly label: "JetBrains Mono";
676
- readonly family: "JetBrains Mono";
707
+ readonly name: "roboto";
708
+ readonly label: "Roboto";
709
+ readonly family: "Roboto";
677
710
  readonly provider: "google";
678
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
679
- readonly variable: "--font-mono";
711
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');";
712
+ readonly variable: "--font-sans";
680
713
  readonly weight: readonly ["400", "500", "600", "700"];
681
714
  }, {
682
- readonly name: "geist";
683
- readonly label: "Geist";
684
- readonly family: "Geist";
715
+ readonly name: "raleway";
716
+ readonly label: "Raleway";
717
+ readonly family: "Raleway";
685
718
  readonly provider: "google";
686
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');";
719
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');";
687
720
  readonly variable: "--font-sans";
688
721
  readonly weight: readonly ["400", "500", "600", "700"];
689
722
  }, {
690
- readonly name: "geist-mono";
691
- readonly label: "Geist Mono";
692
- readonly family: "Geist Mono";
723
+ readonly name: "dm-sans";
724
+ readonly label: "DM Sans";
725
+ readonly family: "DM Sans";
693
726
  readonly provider: "google";
694
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600;700&display=swap');";
727
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');";
728
+ readonly variable: "--font-sans";
729
+ readonly weight: readonly ["400", "500", "600", "700"];
730
+ }, {
731
+ readonly name: "public-sans";
732
+ readonly label: "Public Sans";
733
+ readonly family: "Public Sans";
734
+ readonly provider: "google";
735
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');";
736
+ readonly variable: "--font-sans";
737
+ readonly weight: readonly ["400", "500", "600", "700"];
738
+ }, {
739
+ readonly name: "outfit";
740
+ readonly label: "Outfit";
741
+ readonly family: "Outfit";
742
+ readonly provider: "google";
743
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');";
744
+ readonly variable: "--font-sans";
745
+ readonly weight: readonly ["400", "500", "600", "700"];
746
+ }, {
747
+ readonly name: "jetbrains-mono";
748
+ readonly label: "JetBrains Mono";
749
+ readonly family: "JetBrains Mono";
750
+ readonly provider: "google";
751
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
695
752
  readonly variable: "--font-mono";
696
753
  readonly weight: readonly ["400", "500", "600", "700"];
697
754
  }];
@@ -767,6 +824,30 @@ declare function getRegistryFont(name: string): {
767
824
  readonly import: "@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');";
768
825
  readonly variable: "--font-sans";
769
826
  readonly weight: readonly ["400", "500", "600", "700"];
827
+ } | {
828
+ readonly name: "geist-sans";
829
+ readonly label: "Geist";
830
+ readonly family: "Geist";
831
+ readonly provider: "google";
832
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');";
833
+ readonly variable: "--font-sans";
834
+ readonly weight: readonly ["400", "500", "600", "700"];
835
+ } | {
836
+ readonly name: "noto-sans";
837
+ readonly label: "Noto Sans";
838
+ readonly family: "Noto Sans";
839
+ readonly provider: "google";
840
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');";
841
+ readonly variable: "--font-sans";
842
+ readonly weight: readonly ["400", "500", "600", "700"];
843
+ } | {
844
+ readonly name: "nunito-sans";
845
+ readonly label: "Nunito Sans";
846
+ readonly family: "Nunito Sans";
847
+ readonly provider: "google";
848
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700&display=swap');";
849
+ readonly variable: "--font-sans";
850
+ readonly weight: readonly ["400", "500", "600", "700"];
770
851
  } | {
771
852
  readonly name: "figtree";
772
853
  readonly label: "Figtree";
@@ -776,193 +857,166 @@ declare function getRegistryFont(name: string): {
776
857
  readonly variable: "--font-sans";
777
858
  readonly weight: readonly ["400", "500", "600", "700"];
778
859
  } | {
779
- readonly name: "jetbrains-mono";
780
- readonly label: "JetBrains Mono";
781
- readonly family: "JetBrains Mono";
860
+ readonly name: "roboto";
861
+ readonly label: "Roboto";
862
+ readonly family: "Roboto";
782
863
  readonly provider: "google";
783
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
784
- readonly variable: "--font-mono";
864
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');";
865
+ readonly variable: "--font-sans";
785
866
  readonly weight: readonly ["400", "500", "600", "700"];
786
867
  } | {
787
- readonly name: "geist";
788
- readonly label: "Geist";
789
- readonly family: "Geist";
868
+ readonly name: "raleway";
869
+ readonly label: "Raleway";
870
+ readonly family: "Raleway";
790
871
  readonly provider: "google";
791
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');";
872
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');";
873
+ readonly variable: "--font-sans";
874
+ readonly weight: readonly ["400", "500", "600", "700"];
875
+ } | {
876
+ readonly name: "dm-sans";
877
+ readonly label: "DM Sans";
878
+ readonly family: "DM Sans";
879
+ readonly provider: "google";
880
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');";
881
+ readonly variable: "--font-sans";
882
+ readonly weight: readonly ["400", "500", "600", "700"];
883
+ } | {
884
+ readonly name: "public-sans";
885
+ readonly label: "Public Sans";
886
+ readonly family: "Public Sans";
887
+ readonly provider: "google";
888
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');";
792
889
  readonly variable: "--font-sans";
793
890
  readonly weight: readonly ["400", "500", "600", "700"];
794
891
  } | {
795
- readonly name: "geist-mono";
796
- readonly label: "Geist Mono";
797
- readonly family: "Geist Mono";
892
+ readonly name: "outfit";
893
+ readonly label: "Outfit";
894
+ readonly family: "Outfit";
798
895
  readonly provider: "google";
799
- readonly import: "@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600;700&display=swap');";
896
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');";
897
+ readonly variable: "--font-sans";
898
+ readonly weight: readonly ["400", "500", "600", "700"];
899
+ } | {
900
+ readonly name: "jetbrains-mono";
901
+ readonly label: "JetBrains Mono";
902
+ readonly family: "JetBrains Mono";
903
+ readonly provider: "google";
904
+ readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
800
905
  readonly variable: "--font-mono";
801
906
  readonly weight: readonly ["400", "500", "600", "700"];
802
907
  } | undefined;
803
908
  /**
804
909
  * Get available presets (predefined combinations of base, style, icons, and font).
805
910
  */
806
- declare function getRegistryPresets(): readonly [{
807
- readonly name: "reka-vega";
808
- readonly title: "Vega";
809
- readonly description: "Vega / Lucide / Inter";
810
- readonly base: "reka";
811
- readonly style: "vega";
812
- readonly baseColor: "neutral";
813
- readonly theme: "neutral";
814
- readonly iconLibrary: "lucide";
815
- readonly font: "inter";
816
- readonly menuAccent: "subtle";
817
- readonly menuColor: "default";
818
- readonly radius: "default";
819
- }, {
820
- readonly name: "reka-nova";
821
- readonly title: "Nova";
822
- readonly description: "Nova / Hugeicons / Inter";
823
- readonly base: "reka";
824
- readonly style: "nova";
825
- readonly baseColor: "neutral";
826
- readonly theme: "neutral";
827
- readonly iconLibrary: "hugeicons";
828
- readonly font: "inter";
829
- readonly menuAccent: "subtle";
830
- readonly menuColor: "default";
831
- readonly radius: "default";
832
- }, {
833
- readonly name: "reka-maia";
834
- readonly title: "Maia";
835
- readonly description: "Maia / Hugeicons / Figtree";
836
- readonly base: "reka";
837
- readonly style: "maia";
838
- readonly baseColor: "neutral";
839
- readonly theme: "neutral";
840
- readonly iconLibrary: "hugeicons";
841
- readonly font: "figtree";
842
- readonly menuAccent: "subtle";
843
- readonly menuColor: "default";
844
- readonly radius: "default";
845
- }, {
846
- readonly name: "reka-lyra";
847
- readonly title: "Lyra";
848
- readonly description: "Lyra / Hugeicons / JetBrains Mono";
849
- readonly base: "reka";
850
- readonly style: "lyra";
851
- readonly baseColor: "neutral";
852
- readonly theme: "neutral";
853
- readonly iconLibrary: "hugeicons";
854
- readonly font: "jetbrains-mono";
855
- readonly menuAccent: "subtle";
856
- readonly menuColor: "default";
857
- readonly radius: "default";
858
- }, {
859
- readonly name: "reka-mira";
860
- readonly title: "Mira";
861
- readonly description: "Mira / Hugeicons / Inter";
862
- readonly base: "reka";
863
- readonly style: "mira";
864
- readonly baseColor: "neutral";
865
- readonly theme: "neutral";
866
- readonly iconLibrary: "hugeicons";
867
- readonly font: "inter";
868
- readonly menuAccent: "subtle";
869
- readonly menuColor: "default";
870
- readonly radius: "default";
871
- }, {
872
- readonly name: "reka-luma";
873
- readonly title: "Luma";
874
- readonly description: "Luma / Lucide / Inter";
875
- readonly base: "reka";
876
- readonly style: "luma";
877
- readonly baseColor: "neutral";
878
- readonly theme: "neutral";
879
- readonly iconLibrary: "lucide";
880
- readonly font: "inter";
881
- readonly menuAccent: "subtle";
882
- readonly menuColor: "default";
883
- readonly radius: "default";
884
- }];
885
- /**
886
- * Get a specific preset by name.
887
- */
888
- declare function getRegistryPreset(name: string): {
889
- readonly name: "reka-vega";
890
- readonly title: "Vega";
891
- readonly description: "Vega / Lucide / Inter";
892
- readonly base: "reka";
893
- readonly style: "vega";
894
- readonly baseColor: "neutral";
895
- readonly theme: "neutral";
896
- readonly iconLibrary: "lucide";
897
- readonly font: "inter";
898
- readonly menuAccent: "subtle";
899
- readonly menuColor: "default";
900
- readonly radius: "default";
911
+ declare function getRegistryPresets(): ({
912
+ title: string;
913
+ description: string;
914
+ base: string;
915
+ style: string;
916
+ baseColor: string;
917
+ theme: string;
918
+ iconLibrary: string;
919
+ font: string;
920
+ fontHeading: string;
921
+ menuAccent: "subtle";
922
+ menuColor: "default";
923
+ radius: string;
924
+ rtl: boolean;
925
+ name: string;
901
926
  } | {
902
- readonly name: "reka-nova";
903
- readonly title: "Nova";
904
- readonly description: "Nova / Hugeicons / Inter";
905
- readonly base: "reka";
906
- readonly style: "nova";
907
- readonly baseColor: "neutral";
908
- readonly theme: "neutral";
909
- readonly iconLibrary: "hugeicons";
910
- readonly font: "inter";
911
- readonly menuAccent: "subtle";
912
- readonly menuColor: "default";
913
- readonly radius: "default";
927
+ title: string;
928
+ description: string;
929
+ base: string;
930
+ style: string;
931
+ baseColor: string;
932
+ theme: string;
933
+ iconLibrary: string;
934
+ font: string;
935
+ fontHeading: string;
936
+ menuAccent: "subtle";
937
+ menuColor: "default";
938
+ radius: string;
939
+ rtl: boolean;
940
+ name: string;
914
941
  } | {
915
- readonly name: "reka-maia";
916
- readonly title: "Maia";
917
- readonly description: "Maia / Hugeicons / Figtree";
918
- readonly base: "reka";
919
- readonly style: "maia";
920
- readonly baseColor: "neutral";
921
- readonly theme: "neutral";
922
- readonly iconLibrary: "hugeicons";
923
- readonly font: "figtree";
924
- readonly menuAccent: "subtle";
925
- readonly menuColor: "default";
926
- readonly radius: "default";
942
+ title: string;
943
+ description: string;
944
+ base: string;
945
+ style: string;
946
+ baseColor: string;
947
+ theme: string;
948
+ iconLibrary: string;
949
+ font: string;
950
+ fontHeading: string;
951
+ menuAccent: "subtle";
952
+ menuColor: "default";
953
+ radius: string;
954
+ rtl: boolean;
955
+ name: string;
927
956
  } | {
928
- readonly name: "reka-lyra";
929
- readonly title: "Lyra";
930
- readonly description: "Lyra / Hugeicons / JetBrains Mono";
931
- readonly base: "reka";
932
- readonly style: "lyra";
933
- readonly baseColor: "neutral";
934
- readonly theme: "neutral";
935
- readonly iconLibrary: "hugeicons";
936
- readonly font: "jetbrains-mono";
937
- readonly menuAccent: "subtle";
938
- readonly menuColor: "default";
939
- readonly radius: "default";
957
+ title: string;
958
+ description: string;
959
+ base: string;
960
+ style: string;
961
+ baseColor: string;
962
+ theme: string;
963
+ iconLibrary: string;
964
+ font: string;
965
+ fontHeading: string;
966
+ menuAccent: "subtle";
967
+ menuColor: "default";
968
+ radius: string;
969
+ rtl: boolean;
970
+ name: string;
940
971
  } | {
941
- readonly name: "reka-mira";
942
- readonly title: "Mira";
943
- readonly description: "Mira / Hugeicons / Inter";
944
- readonly base: "reka";
945
- readonly style: "mira";
946
- readonly baseColor: "neutral";
947
- readonly theme: "neutral";
948
- readonly iconLibrary: "hugeicons";
949
- readonly font: "inter";
950
- readonly menuAccent: "subtle";
951
- readonly menuColor: "default";
952
- readonly radius: "default";
972
+ title: string;
973
+ description: string;
974
+ base: string;
975
+ style: string;
976
+ baseColor: string;
977
+ theme: string;
978
+ iconLibrary: string;
979
+ font: string;
980
+ fontHeading: string;
981
+ menuAccent: "subtle";
982
+ menuColor: "default";
983
+ radius: string;
984
+ rtl: boolean;
985
+ name: string;
953
986
  } | {
954
- readonly name: "reka-luma";
955
- readonly title: "Luma";
956
- readonly description: "Luma / Lucide / Inter";
957
- readonly base: "reka";
958
- readonly style: "luma";
959
- readonly baseColor: "neutral";
960
- readonly theme: "neutral";
961
- readonly iconLibrary: "lucide";
962
- readonly font: "inter";
963
- readonly menuAccent: "subtle";
964
- readonly menuColor: "default";
965
- readonly radius: "default";
987
+ title: string;
988
+ description: string;
989
+ base: string;
990
+ style: string;
991
+ baseColor: string;
992
+ theme: string;
993
+ iconLibrary: string;
994
+ font: string;
995
+ fontHeading: string;
996
+ menuAccent: "subtle";
997
+ menuColor: "default";
998
+ radius: string;
999
+ rtl: boolean;
1000
+ name: string;
1001
+ })[];
1002
+ /**
1003
+ * Get a specific preset by name.
1004
+ */
1005
+ declare function getRegistryPreset(name: string): {
1006
+ title: string;
1007
+ description: string;
1008
+ base: string;
1009
+ style: string;
1010
+ baseColor: string;
1011
+ theme: string;
1012
+ iconLibrary: string;
1013
+ font: string;
1014
+ fontHeading: string;
1015
+ menuAccent: "subtle";
1016
+ menuColor: "default";
1017
+ radius: string;
1018
+ rtl: boolean;
1019
+ name: string;
966
1020
  } | undefined;
967
1021
  declare function getRegistryBaseColor(baseColor: string): Promise<{
968
1022
  cssVars: {
@@ -990,10 +1044,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
990
1044
  type: "registry:base";
991
1045
  config?: {
992
1046
  $schema?: string | undefined;
993
- style?: string | undefined;
994
- base?: string | undefined;
995
- font?: string | undefined;
996
- typescript?: boolean | undefined;
997
1047
  tailwind?: {
998
1048
  config?: string | undefined;
999
1049
  css?: string | undefined;
@@ -1001,8 +1051,13 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1001
1051
  cssVariables?: boolean | undefined;
1002
1052
  prefix?: string | undefined;
1003
1053
  } | undefined;
1054
+ style?: string | undefined;
1055
+ font?: string | undefined;
1056
+ fontHeading?: string | undefined;
1057
+ typescript?: boolean | undefined;
1004
1058
  iconLibrary?: string | undefined;
1005
- menuColor?: "default" | "inverted" | undefined;
1059
+ rtl?: boolean | undefined;
1060
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1006
1061
  menuAccent?: "subtle" | "bold" | undefined;
1007
1062
  aliases?: {
1008
1063
  components?: string | undefined;
@@ -1020,14 +1075,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1020
1075
  } | undefined;
1021
1076
  title?: string | undefined;
1022
1077
  $schema?: string | undefined;
1023
- tailwind?: {
1024
- config?: {
1025
- content?: string[] | undefined;
1026
- theme?: Record<string, any> | undefined;
1027
- plugins?: string[] | undefined;
1028
- } | undefined;
1029
- } | undefined;
1030
- css?: Record<string, any> | undefined;
1031
1078
  extends?: string | undefined;
1032
1079
  author?: string | undefined;
1033
1080
  description?: string | undefined;
@@ -1036,7 +1083,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1036
1083
  registryDependencies?: string[] | undefined;
1037
1084
  files?: ({
1038
1085
  path: string;
1039
- type: "registry:page" | "registry:file";
1086
+ type: "registry:file" | "registry:page";
1040
1087
  target: string;
1041
1088
  content?: string | undefined;
1042
1089
  } | {
@@ -1045,11 +1092,19 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1045
1092
  content?: string | undefined;
1046
1093
  target?: string | undefined;
1047
1094
  })[] | undefined;
1095
+ tailwind?: {
1096
+ config?: {
1097
+ content?: string[] | undefined;
1098
+ theme?: Record<string, any> | undefined;
1099
+ plugins?: string[] | undefined;
1100
+ } | undefined;
1101
+ } | undefined;
1048
1102
  cssVars?: {
1049
1103
  theme?: Record<string, string> | undefined;
1050
1104
  light?: Record<string, string> | undefined;
1051
1105
  dark?: Record<string, string> | undefined;
1052
1106
  } | undefined;
1107
+ css?: Record<string, any> | undefined;
1053
1108
  envVars?: Record<string, string> | undefined;
1054
1109
  meta?: Record<string, any> | undefined;
1055
1110
  docs?: string | undefined;
@@ -1067,14 +1122,6 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1067
1122
  };
1068
1123
  title?: string | undefined;
1069
1124
  $schema?: string | undefined;
1070
- tailwind?: {
1071
- config?: {
1072
- content?: string[] | undefined;
1073
- theme?: Record<string, any> | undefined;
1074
- plugins?: string[] | undefined;
1075
- } | undefined;
1076
- } | undefined;
1077
- css?: Record<string, any> | undefined;
1078
1125
  extends?: string | undefined;
1079
1126
  author?: string | undefined;
1080
1127
  description?: string | undefined;
@@ -1083,7 +1130,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1083
1130
  registryDependencies?: string[] | undefined;
1084
1131
  files?: ({
1085
1132
  path: string;
1086
- type: "registry:page" | "registry:file";
1133
+ type: "registry:file" | "registry:page";
1087
1134
  target: string;
1088
1135
  content?: string | undefined;
1089
1136
  } | {
@@ -1092,28 +1139,28 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1092
1139
  content?: string | undefined;
1093
1140
  target?: string | undefined;
1094
1141
  })[] | undefined;
1142
+ tailwind?: {
1143
+ config?: {
1144
+ content?: string[] | undefined;
1145
+ theme?: Record<string, any> | undefined;
1146
+ plugins?: string[] | undefined;
1147
+ } | undefined;
1148
+ } | undefined;
1095
1149
  cssVars?: {
1096
1150
  theme?: Record<string, string> | undefined;
1097
1151
  light?: Record<string, string> | undefined;
1098
1152
  dark?: Record<string, string> | undefined;
1099
1153
  } | undefined;
1154
+ css?: Record<string, any> | undefined;
1100
1155
  envVars?: Record<string, string> | undefined;
1101
1156
  meta?: Record<string, any> | undefined;
1102
1157
  docs?: string | undefined;
1103
1158
  categories?: string[] | undefined;
1104
1159
  } | {
1105
1160
  name: string;
1106
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1161
+ type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1107
1162
  title?: string | undefined;
1108
1163
  $schema?: string | undefined;
1109
- tailwind?: {
1110
- config?: {
1111
- content?: string[] | undefined;
1112
- theme?: Record<string, any> | undefined;
1113
- plugins?: string[] | undefined;
1114
- } | undefined;
1115
- } | undefined;
1116
- css?: Record<string, any> | undefined;
1117
1164
  extends?: string | undefined;
1118
1165
  author?: string | undefined;
1119
1166
  description?: string | undefined;
@@ -1122,7 +1169,7 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1122
1169
  registryDependencies?: string[] | undefined;
1123
1170
  files?: ({
1124
1171
  path: string;
1125
- type: "registry:page" | "registry:file";
1172
+ type: "registry:file" | "registry:page";
1126
1173
  target: string;
1127
1174
  content?: string | undefined;
1128
1175
  } | {
@@ -1131,11 +1178,19 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
1131
1178
  content?: string | undefined;
1132
1179
  target?: string | undefined;
1133
1180
  })[] | undefined;
1181
+ tailwind?: {
1182
+ config?: {
1183
+ content?: string[] | undefined;
1184
+ theme?: Record<string, any> | undefined;
1185
+ plugins?: string[] | undefined;
1186
+ } | undefined;
1187
+ } | undefined;
1134
1188
  cssVars?: {
1135
1189
  theme?: Record<string, string> | undefined;
1136
1190
  light?: Record<string, string> | undefined;
1137
1191
  dark?: Record<string, string> | undefined;
1138
1192
  } | undefined;
1193
+ css?: Record<string, any> | undefined;
1139
1194
  envVars?: Record<string, string> | undefined;
1140
1195
  meta?: Record<string, any> | undefined;
1141
1196
  docs?: string | undefined;
@@ -1149,10 +1204,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1149
1204
  type: "registry:base";
1150
1205
  config?: {
1151
1206
  $schema?: string | undefined;
1152
- style?: string | undefined;
1153
- base?: string | undefined;
1154
- font?: string | undefined;
1155
- typescript?: boolean | undefined;
1156
1207
  tailwind?: {
1157
1208
  config?: string | undefined;
1158
1209
  css?: string | undefined;
@@ -1160,8 +1211,13 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1160
1211
  cssVariables?: boolean | undefined;
1161
1212
  prefix?: string | undefined;
1162
1213
  } | undefined;
1214
+ style?: string | undefined;
1215
+ font?: string | undefined;
1216
+ fontHeading?: string | undefined;
1217
+ typescript?: boolean | undefined;
1163
1218
  iconLibrary?: string | undefined;
1164
- menuColor?: "default" | "inverted" | undefined;
1219
+ rtl?: boolean | undefined;
1220
+ menuColor?: "default" | "inverted" | "default-translucent" | "inverted-translucent" | undefined;
1165
1221
  menuAccent?: "subtle" | "bold" | undefined;
1166
1222
  aliases?: {
1167
1223
  components?: string | undefined;
@@ -1179,14 +1235,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1179
1235
  } | undefined;
1180
1236
  title?: string | undefined;
1181
1237
  $schema?: string | undefined;
1182
- tailwind?: {
1183
- config?: {
1184
- content?: string[] | undefined;
1185
- theme?: Record<string, any> | undefined;
1186
- plugins?: string[] | undefined;
1187
- } | undefined;
1188
- } | undefined;
1189
- css?: Record<string, any> | undefined;
1190
1238
  extends?: string | undefined;
1191
1239
  author?: string | undefined;
1192
1240
  description?: string | undefined;
@@ -1195,7 +1243,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1195
1243
  registryDependencies?: string[] | undefined;
1196
1244
  files?: ({
1197
1245
  path: string;
1198
- type: "registry:page" | "registry:file";
1246
+ type: "registry:file" | "registry:page";
1199
1247
  target: string;
1200
1248
  content?: string | undefined;
1201
1249
  } | {
@@ -1204,11 +1252,19 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1204
1252
  content?: string | undefined;
1205
1253
  target?: string | undefined;
1206
1254
  })[] | undefined;
1255
+ tailwind?: {
1256
+ config?: {
1257
+ content?: string[] | undefined;
1258
+ theme?: Record<string, any> | undefined;
1259
+ plugins?: string[] | undefined;
1260
+ } | undefined;
1261
+ } | undefined;
1207
1262
  cssVars?: {
1208
1263
  theme?: Record<string, string> | undefined;
1209
1264
  light?: Record<string, string> | undefined;
1210
1265
  dark?: Record<string, string> | undefined;
1211
1266
  } | undefined;
1267
+ css?: Record<string, any> | undefined;
1212
1268
  envVars?: Record<string, string> | undefined;
1213
1269
  meta?: Record<string, any> | undefined;
1214
1270
  docs?: string | undefined;
@@ -1226,14 +1282,6 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1226
1282
  };
1227
1283
  title?: string | undefined;
1228
1284
  $schema?: string | undefined;
1229
- tailwind?: {
1230
- config?: {
1231
- content?: string[] | undefined;
1232
- theme?: Record<string, any> | undefined;
1233
- plugins?: string[] | undefined;
1234
- } | undefined;
1235
- } | undefined;
1236
- css?: Record<string, any> | undefined;
1237
1285
  extends?: string | undefined;
1238
1286
  author?: string | undefined;
1239
1287
  description?: string | undefined;
@@ -1242,7 +1290,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1242
1290
  registryDependencies?: string[] | undefined;
1243
1291
  files?: ({
1244
1292
  path: string;
1245
- type: "registry:page" | "registry:file";
1293
+ type: "registry:file" | "registry:page";
1246
1294
  target: string;
1247
1295
  content?: string | undefined;
1248
1296
  } | {
@@ -1251,28 +1299,28 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1251
1299
  content?: string | undefined;
1252
1300
  target?: string | undefined;
1253
1301
  })[] | undefined;
1302
+ tailwind?: {
1303
+ config?: {
1304
+ content?: string[] | undefined;
1305
+ theme?: Record<string, any> | undefined;
1306
+ plugins?: string[] | undefined;
1307
+ } | undefined;
1308
+ } | undefined;
1254
1309
  cssVars?: {
1255
1310
  theme?: Record<string, string> | undefined;
1256
1311
  light?: Record<string, string> | undefined;
1257
1312
  dark?: Record<string, string> | undefined;
1258
1313
  } | undefined;
1314
+ css?: Record<string, any> | undefined;
1259
1315
  envVars?: Record<string, string> | undefined;
1260
1316
  meta?: Record<string, any> | undefined;
1261
1317
  docs?: string | undefined;
1262
1318
  categories?: string[] | undefined;
1263
1319
  } | {
1264
1320
  name: string;
1265
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1321
+ type: "registry:file" | "registry:page" | "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1266
1322
  title?: string | undefined;
1267
1323
  $schema?: string | undefined;
1268
- tailwind?: {
1269
- config?: {
1270
- content?: string[] | undefined;
1271
- theme?: Record<string, any> | undefined;
1272
- plugins?: string[] | undefined;
1273
- } | undefined;
1274
- } | undefined;
1275
- css?: Record<string, any> | undefined;
1276
1324
  extends?: string | undefined;
1277
1325
  author?: string | undefined;
1278
1326
  description?: string | undefined;
@@ -1281,7 +1329,7 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1281
1329
  registryDependencies?: string[] | undefined;
1282
1330
  files?: ({
1283
1331
  path: string;
1284
- type: "registry:page" | "registry:file";
1332
+ type: "registry:file" | "registry:page";
1285
1333
  target: string;
1286
1334
  content?: string | undefined;
1287
1335
  } | {
@@ -1290,11 +1338,19 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
1290
1338
  content?: string | undefined;
1291
1339
  target?: string | undefined;
1292
1340
  })[] | undefined;
1341
+ tailwind?: {
1342
+ config?: {
1343
+ content?: string[] | undefined;
1344
+ theme?: Record<string, any> | undefined;
1345
+ plugins?: string[] | undefined;
1346
+ } | undefined;
1347
+ } | undefined;
1293
1348
  cssVars?: {
1294
1349
  theme?: Record<string, string> | undefined;
1295
1350
  light?: Record<string, string> | undefined;
1296
1351
  dark?: Record<string, string> | undefined;
1297
1352
  } | undefined;
1353
+ css?: Record<string, any> | undefined;
1298
1354
  envVars?: Record<string, string> | undefined;
1299
1355
  meta?: Record<string, any> | undefined;
1300
1356
  docs?: string | undefined;
@@ -1309,4 +1365,4 @@ declare function getRegistriesIndex(options?: {
1309
1365
  }): Promise<Record<string, string>>;
1310
1366
  //#endregion
1311
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 };
1312
- //# sourceMappingURL=api-DeEl1PAz.d.ts.map
1368
+ //# sourceMappingURL=api-Cs4qqzRd.d.ts.map