@create-ui/cli 0.1.0-beta.0 → 0.5.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.
Files changed (42) hide show
  1. package/README.md +194 -24
  2. package/dist/chunk-EWAP55CF.js +18 -0
  3. package/dist/chunk-EWAP55CF.js.map +1 -0
  4. package/dist/chunk-MK3CCMH4.js +3 -0
  5. package/dist/chunk-MK3CCMH4.js.map +1 -0
  6. package/dist/chunk-UVIUVCLG.js +64 -0
  7. package/dist/chunk-UVIUVCLG.js.map +1 -0
  8. package/dist/chunk-Y7WZRQWW.js +2 -0
  9. package/dist/chunk-Y7WZRQWW.js.map +1 -0
  10. package/dist/index.d.ts +43 -111
  11. package/dist/index.js +62 -61
  12. package/dist/index.js.map +1 -1
  13. package/dist/mcp/index.js +1 -1
  14. package/dist/registry/index.d.ts +3 -20
  15. package/dist/registry/index.js +1 -1
  16. package/dist/schema/index.d.ts +123 -432
  17. package/dist/schema/index.js +1 -1
  18. package/dist/skills/createui/SKILL.md +212 -0
  19. package/dist/skills/createui/agents/openai.yml +5 -0
  20. package/dist/skills/createui/assets/createui-small.png +0 -0
  21. package/dist/skills/createui/assets/createui.png +0 -0
  22. package/dist/skills/createui/cli.md +309 -0
  23. package/dist/skills/createui/contributing.md +213 -0
  24. package/dist/skills/createui/customization.md +284 -0
  25. package/dist/skills/createui/evals/evals.json +47 -0
  26. package/dist/skills/createui/mcp.md +151 -0
  27. package/dist/skills/createui/rules/composition.md +249 -0
  28. package/dist/skills/createui/rules/forms.md +301 -0
  29. package/dist/skills/createui/rules/icons.md +130 -0
  30. package/dist/skills/createui/rules/styling.md +253 -0
  31. package/dist/utils/index.d.ts +2 -5
  32. package/dist/utils/index.js +1 -1
  33. package/dist/utils/index.js.map +1 -1
  34. package/package.json +4 -3
  35. package/dist/chunk-7MKTQPYI.js +0 -72
  36. package/dist/chunk-7MKTQPYI.js.map +0 -1
  37. package/dist/chunk-BVZRYLRW.js +0 -32
  38. package/dist/chunk-BVZRYLRW.js.map +0 -1
  39. package/dist/chunk-JWZJQI2B.js +0 -3
  40. package/dist/chunk-JWZJQI2B.js.map +0 -1
  41. package/dist/chunk-TIYHWTW7.js +0 -2
  42. package/dist/chunk-TIYHWTW7.js.map +0 -1
@@ -1,34 +1,7 @@
1
1
  import { z } from 'zod';
2
2
 
3
- declare const registryConfigItemSchema: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
4
- url: z.ZodEffects<z.ZodString, string, string>;
5
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
6
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
7
- }, "strip", z.ZodTypeAny, {
8
- url: string;
9
- params?: Record<string, string> | undefined;
10
- headers?: Record<string, string> | undefined;
11
- }, {
12
- url: string;
13
- params?: Record<string, string> | undefined;
14
- headers?: Record<string, string> | undefined;
15
- }>]>;
16
- declare const registryConfigSchema: z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
17
- url: z.ZodEffects<z.ZodString, string, string>;
18
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
19
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
20
- }, "strip", z.ZodTypeAny, {
21
- url: string;
22
- params?: Record<string, string> | undefined;
23
- headers?: Record<string, string> | undefined;
24
- }, {
25
- url: string;
26
- params?: Record<string, string> | undefined;
27
- headers?: Record<string, string> | undefined;
28
- }>]>>;
29
3
  declare const rawConfigSchema: z.ZodObject<{
30
4
  $schema: z.ZodOptional<z.ZodString>;
31
- style: z.ZodOptional<z.ZodString>;
32
5
  rsc: z.ZodDefault<z.ZodBoolean>;
33
6
  tsx: z.ZodDefault<z.ZodBoolean>;
34
7
  tailwind: z.ZodObject<{
@@ -72,19 +45,6 @@ declare const rawConfigSchema: z.ZodObject<{
72
45
  lib?: string | undefined;
73
46
  hooks?: string | undefined;
74
47
  }>;
75
- registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
76
- url: z.ZodEffects<z.ZodString, string, string>;
77
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
78
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
79
- }, "strip", z.ZodTypeAny, {
80
- url: string;
81
- params?: Record<string, string> | undefined;
82
- headers?: Record<string, string> | undefined;
83
- }, {
84
- url: string;
85
- params?: Record<string, string> | undefined;
86
- headers?: Record<string, string> | undefined;
87
- }>]>>>;
88
48
  }, "strict", z.ZodTypeAny, {
89
49
  tailwind: {
90
50
  css: string;
@@ -103,15 +63,9 @@ declare const rawConfigSchema: z.ZodObject<{
103
63
  hooks?: string | undefined;
104
64
  };
105
65
  $schema?: string | undefined;
106
- style?: string | undefined;
107
66
  iconLibrary?: string | undefined;
108
67
  menuColor?: "default" | "inverted" | undefined;
109
68
  menuAccent?: "subtle" | "bold" | undefined;
110
- registries?: Record<string, string | {
111
- url: string;
112
- params?: Record<string, string> | undefined;
113
- headers?: Record<string, string> | undefined;
114
- }> | undefined;
115
69
  }, {
116
70
  tailwind: {
117
71
  css: string;
@@ -128,21 +82,14 @@ declare const rawConfigSchema: z.ZodObject<{
128
82
  hooks?: string | undefined;
129
83
  };
130
84
  $schema?: string | undefined;
131
- style?: string | undefined;
132
85
  rsc?: boolean | undefined;
133
86
  tsx?: boolean | undefined;
134
87
  iconLibrary?: string | undefined;
135
88
  menuColor?: "default" | "inverted" | undefined;
136
89
  menuAccent?: "subtle" | "bold" | undefined;
137
- registries?: Record<string, string | {
138
- url: string;
139
- params?: Record<string, string> | undefined;
140
- headers?: Record<string, string> | undefined;
141
- }> | undefined;
142
90
  }>;
143
91
  declare const configSchema: z.ZodObject<{
144
92
  $schema: z.ZodOptional<z.ZodString>;
145
- style: z.ZodOptional<z.ZodString>;
146
93
  rsc: z.ZodDefault<z.ZodBoolean>;
147
94
  tsx: z.ZodDefault<z.ZodBoolean>;
148
95
  tailwind: z.ZodObject<{
@@ -186,19 +133,6 @@ declare const configSchema: z.ZodObject<{
186
133
  lib?: string | undefined;
187
134
  hooks?: string | undefined;
188
135
  }>;
189
- registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
190
- url: z.ZodEffects<z.ZodString, string, string>;
191
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
192
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
193
- }, "strip", z.ZodTypeAny, {
194
- url: string;
195
- params?: Record<string, string> | undefined;
196
- headers?: Record<string, string> | undefined;
197
- }, {
198
- url: string;
199
- params?: Record<string, string> | undefined;
200
- headers?: Record<string, string> | undefined;
201
- }>]>>>;
202
136
  } & {
203
137
  resolvedPaths: z.ZodObject<{
204
138
  cwd: z.ZodString;
@@ -256,15 +190,9 @@ declare const configSchema: z.ZodObject<{
256
190
  tailwindCss: string;
257
191
  };
258
192
  $schema?: string | undefined;
259
- style?: string | undefined;
260
193
  iconLibrary?: string | undefined;
261
194
  menuColor?: "default" | "inverted" | undefined;
262
195
  menuAccent?: "subtle" | "bold" | undefined;
263
- registries?: Record<string, string | {
264
- url: string;
265
- params?: Record<string, string> | undefined;
266
- headers?: Record<string, string> | undefined;
267
- }> | undefined;
268
196
  }, {
269
197
  tailwind: {
270
198
  css: string;
@@ -291,21 +219,14 @@ declare const configSchema: z.ZodObject<{
291
219
  tailwindCss: string;
292
220
  };
293
221
  $schema?: string | undefined;
294
- style?: string | undefined;
295
222
  rsc?: boolean | undefined;
296
223
  tsx?: boolean | undefined;
297
224
  iconLibrary?: string | undefined;
298
225
  menuColor?: "default" | "inverted" | undefined;
299
226
  menuAccent?: "subtle" | "bold" | undefined;
300
- registries?: Record<string, string | {
301
- url: string;
302
- params?: Record<string, string> | undefined;
303
- headers?: Record<string, string> | undefined;
304
- }> | undefined;
305
227
  }>;
306
228
  declare const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
307
229
  $schema: z.ZodOptional<z.ZodString>;
308
- style: z.ZodOptional<z.ZodString>;
309
230
  rsc: z.ZodDefault<z.ZodBoolean>;
310
231
  tsx: z.ZodDefault<z.ZodBoolean>;
311
232
  tailwind: z.ZodObject<{
@@ -349,19 +270,6 @@ declare const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
349
270
  lib?: string | undefined;
350
271
  hooks?: string | undefined;
351
272
  }>;
352
- registries: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
353
- url: z.ZodEffects<z.ZodString, string, string>;
354
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
355
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
356
- }, "strip", z.ZodTypeAny, {
357
- url: string;
358
- params?: Record<string, string> | undefined;
359
- headers?: Record<string, string> | undefined;
360
- }, {
361
- url: string;
362
- params?: Record<string, string> | undefined;
363
- headers?: Record<string, string> | undefined;
364
- }>]>>>;
365
273
  } & {
366
274
  resolvedPaths: z.ZodObject<{
367
275
  cwd: z.ZodString;
@@ -419,15 +327,9 @@ declare const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
419
327
  tailwindCss: string;
420
328
  };
421
329
  $schema?: string | undefined;
422
- style?: string | undefined;
423
330
  iconLibrary?: string | undefined;
424
331
  menuColor?: "default" | "inverted" | undefined;
425
332
  menuAccent?: "subtle" | "bold" | undefined;
426
- registries?: Record<string, string | {
427
- url: string;
428
- params?: Record<string, string> | undefined;
429
- headers?: Record<string, string> | undefined;
430
- }> | undefined;
431
333
  }, {
432
334
  tailwind: {
433
335
  css: string;
@@ -454,19 +356,13 @@ declare const workspaceConfigSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
454
356
  tailwindCss: string;
455
357
  };
456
358
  $schema?: string | undefined;
457
- style?: string | undefined;
458
359
  rsc?: boolean | undefined;
459
360
  tsx?: boolean | undefined;
460
361
  iconLibrary?: string | undefined;
461
362
  menuColor?: "default" | "inverted" | undefined;
462
363
  menuAccent?: "subtle" | "bold" | undefined;
463
- registries?: Record<string, string | {
464
- url: string;
465
- params?: Record<string, string> | undefined;
466
- headers?: Record<string, string> | undefined;
467
- }> | undefined;
468
364
  }>>;
469
- declare const registryItemTypeSchema: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
365
+ declare const registryItemTypeSchema: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
470
366
  declare const registryItemFileSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
471
367
  path: z.ZodString;
472
368
  content: z.ZodOptional<z.ZodString>;
@@ -485,16 +381,16 @@ declare const registryItemFileSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
485
381
  }>, z.ZodObject<{
486
382
  path: z.ZodString;
487
383
  content: z.ZodOptional<z.ZodString>;
488
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
384
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
489
385
  target: z.ZodOptional<z.ZodString>;
490
386
  }, "strip", z.ZodTypeAny, {
491
387
  path: string;
492
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
388
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
493
389
  content?: string | undefined;
494
390
  target?: string | undefined;
495
391
  }, {
496
392
  path: string;
497
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
393
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
498
394
  content?: string | undefined;
499
395
  target?: string | undefined;
500
396
  }>]>;
@@ -760,16 +656,16 @@ declare const registryItemCommonSchema: z.ZodObject<{
760
656
  }>, z.ZodObject<{
761
657
  path: z.ZodString;
762
658
  content: z.ZodOptional<z.ZodString>;
763
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
659
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
764
660
  target: z.ZodOptional<z.ZodString>;
765
661
  }, "strip", z.ZodTypeAny, {
766
662
  path: string;
767
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
663
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
768
664
  content?: string | undefined;
769
665
  target?: string | undefined;
770
666
  }, {
771
667
  path: string;
772
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
668
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
773
669
  content?: string | undefined;
774
670
  target?: string | undefined;
775
671
  }>]>, "many">>;
@@ -840,7 +736,7 @@ declare const registryItemCommonSchema: z.ZodObject<{
840
736
  content?: string | undefined;
841
737
  } | {
842
738
  path: string;
843
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
739
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
844
740
  content?: string | undefined;
845
741
  target?: string | undefined;
846
742
  })[] | undefined;
@@ -877,7 +773,7 @@ declare const registryItemCommonSchema: z.ZodObject<{
877
773
  content?: string | undefined;
878
774
  } | {
879
775
  path: string;
880
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
776
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
881
777
  content?: string | undefined;
882
778
  target?: string | undefined;
883
779
  })[] | undefined;
@@ -918,16 +814,16 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
918
814
  }>, z.ZodObject<{
919
815
  path: z.ZodString;
920
816
  content: z.ZodOptional<z.ZodString>;
921
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
817
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
922
818
  target: z.ZodOptional<z.ZodString>;
923
819
  }, "strip", z.ZodTypeAny, {
924
820
  path: string;
925
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
821
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
926
822
  content?: string | undefined;
927
823
  target?: string | undefined;
928
824
  }, {
929
825
  path: string;
930
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
826
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
931
827
  content?: string | undefined;
932
828
  target?: string | undefined;
933
829
  }>]>, "many">>;
@@ -977,7 +873,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
977
873
  type: z.ZodLiteral<"registry:base">;
978
874
  config: z.ZodOptional<z.ZodObject<{
979
875
  $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
980
- style: z.ZodOptional<z.ZodOptional<z.ZodString>>;
981
876
  rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
982
877
  tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
983
878
  tailwind: z.ZodOptional<z.ZodObject<{
@@ -1021,19 +916,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1021
916
  lib?: string | undefined;
1022
917
  hooks?: string | undefined;
1023
918
  }>>;
1024
- registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1025
- url: z.ZodEffects<z.ZodString, string, string>;
1026
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1027
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1028
- }, "strip", z.ZodTypeAny, {
1029
- url: string;
1030
- params?: Record<string, string> | undefined;
1031
- headers?: Record<string, string> | undefined;
1032
- }, {
1033
- url: string;
1034
- params?: Record<string, string> | undefined;
1035
- headers?: Record<string, string> | undefined;
1036
- }>]>>>>;
1037
919
  }, "strict", z.ZodTypeAny, {
1038
920
  tailwind?: {
1039
921
  config?: string | undefined;
@@ -1043,7 +925,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1043
925
  prefix?: string | undefined;
1044
926
  } | undefined;
1045
927
  $schema?: string | undefined;
1046
- style?: string | undefined;
1047
928
  rsc?: boolean | undefined;
1048
929
  tsx?: boolean | undefined;
1049
930
  iconLibrary?: string | undefined;
@@ -1056,11 +937,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1056
937
  lib?: string | undefined;
1057
938
  hooks?: string | undefined;
1058
939
  } | undefined;
1059
- registries?: Record<string, string | {
1060
- url: string;
1061
- params?: Record<string, string> | undefined;
1062
- headers?: Record<string, string> | undefined;
1063
- }> | undefined;
1064
940
  }, {
1065
941
  tailwind?: {
1066
942
  config?: string | undefined;
@@ -1070,7 +946,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1070
946
  prefix?: string | undefined;
1071
947
  } | undefined;
1072
948
  $schema?: string | undefined;
1073
- style?: string | undefined;
1074
949
  rsc?: boolean | undefined;
1075
950
  tsx?: boolean | undefined;
1076
951
  iconLibrary?: string | undefined;
@@ -1083,11 +958,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1083
958
  lib?: string | undefined;
1084
959
  hooks?: string | undefined;
1085
960
  } | undefined;
1086
- registries?: Record<string, string | {
1087
- url: string;
1088
- params?: Record<string, string> | undefined;
1089
- headers?: Record<string, string> | undefined;
1090
- }> | undefined;
1091
961
  }>>;
1092
962
  }, "strip", z.ZodTypeAny, {
1093
963
  type: "registry:base";
@@ -1109,7 +979,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1109
979
  prefix?: string | undefined;
1110
980
  } | undefined;
1111
981
  $schema?: string | undefined;
1112
- style?: string | undefined;
1113
982
  rsc?: boolean | undefined;
1114
983
  tsx?: boolean | undefined;
1115
984
  iconLibrary?: string | undefined;
@@ -1122,11 +991,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1122
991
  lib?: string | undefined;
1123
992
  hooks?: string | undefined;
1124
993
  } | undefined;
1125
- registries?: Record<string, string | {
1126
- url: string;
1127
- params?: Record<string, string> | undefined;
1128
- headers?: Record<string, string> | undefined;
1129
- }> | undefined;
1130
994
  } | undefined;
1131
995
  css?: Record<string, any> | undefined;
1132
996
  extends?: string | undefined;
@@ -1143,7 +1007,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1143
1007
  content?: string | undefined;
1144
1008
  } | {
1145
1009
  path: string;
1146
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1010
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1147
1011
  content?: string | undefined;
1148
1012
  target?: string | undefined;
1149
1013
  })[] | undefined;
@@ -1175,7 +1039,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1175
1039
  prefix?: string | undefined;
1176
1040
  } | undefined;
1177
1041
  $schema?: string | undefined;
1178
- style?: string | undefined;
1179
1042
  rsc?: boolean | undefined;
1180
1043
  tsx?: boolean | undefined;
1181
1044
  iconLibrary?: string | undefined;
@@ -1188,11 +1051,6 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1188
1051
  lib?: string | undefined;
1189
1052
  hooks?: string | undefined;
1190
1053
  } | undefined;
1191
- registries?: Record<string, string | {
1192
- url: string;
1193
- params?: Record<string, string> | undefined;
1194
- headers?: Record<string, string> | undefined;
1195
- }> | undefined;
1196
1054
  } | undefined;
1197
1055
  css?: Record<string, any> | undefined;
1198
1056
  extends?: string | undefined;
@@ -1209,7 +1067,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1209
1067
  content?: string | undefined;
1210
1068
  } | {
1211
1069
  path: string;
1212
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1070
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1213
1071
  content?: string | undefined;
1214
1072
  target?: string | undefined;
1215
1073
  })[] | undefined;
@@ -1249,16 +1107,16 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1249
1107
  }>, z.ZodObject<{
1250
1108
  path: z.ZodString;
1251
1109
  content: z.ZodOptional<z.ZodString>;
1252
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1110
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1253
1111
  target: z.ZodOptional<z.ZodString>;
1254
1112
  }, "strip", z.ZodTypeAny, {
1255
1113
  path: string;
1256
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1114
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1257
1115
  content?: string | undefined;
1258
1116
  target?: string | undefined;
1259
1117
  }, {
1260
1118
  path: string;
1261
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1119
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1262
1120
  content?: string | undefined;
1263
1121
  target?: string | undefined;
1264
1122
  }>]>, "many">>;
@@ -1476,7 +1334,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1476
1334
  content?: string | undefined;
1477
1335
  } | {
1478
1336
  path: string;
1479
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1337
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1480
1338
  content?: string | undefined;
1481
1339
  target?: string | undefined;
1482
1340
  })[] | undefined;
@@ -1540,7 +1398,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1540
1398
  content?: string | undefined;
1541
1399
  } | {
1542
1400
  path: string;
1543
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1401
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1544
1402
  content?: string | undefined;
1545
1403
  target?: string | undefined;
1546
1404
  })[] | undefined;
@@ -1580,16 +1438,16 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1580
1438
  }>, z.ZodObject<{
1581
1439
  path: z.ZodString;
1582
1440
  content: z.ZodOptional<z.ZodString>;
1583
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1441
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1584
1442
  target: z.ZodOptional<z.ZodString>;
1585
1443
  }, "strip", z.ZodTypeAny, {
1586
1444
  path: string;
1587
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1445
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1588
1446
  content?: string | undefined;
1589
1447
  target?: string | undefined;
1590
1448
  }, {
1591
1449
  path: string;
1592
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1450
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1593
1451
  content?: string | undefined;
1594
1452
  target?: string | undefined;
1595
1453
  }>]>, "many">>;
@@ -1718,7 +1576,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1718
1576
  content?: string | undefined;
1719
1577
  } | {
1720
1578
  path: string;
1721
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1579
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1722
1580
  content?: string | undefined;
1723
1581
  target?: string | undefined;
1724
1582
  })[] | undefined;
@@ -1775,7 +1633,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1775
1633
  content?: string | undefined;
1776
1634
  } | {
1777
1635
  path: string;
1778
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1636
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1779
1637
  content?: string | undefined;
1780
1638
  target?: string | undefined;
1781
1639
  })[] | undefined;
@@ -1834,16 +1692,16 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1834
1692
  }>, z.ZodObject<{
1835
1693
  path: z.ZodString;
1836
1694
  content: z.ZodOptional<z.ZodString>;
1837
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1695
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1838
1696
  target: z.ZodOptional<z.ZodString>;
1839
1697
  }, "strip", z.ZodTypeAny, {
1840
1698
  path: string;
1841
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1699
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1842
1700
  content?: string | undefined;
1843
1701
  target?: string | undefined;
1844
1702
  }, {
1845
1703
  path: string;
1846
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1704
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1847
1705
  content?: string | undefined;
1848
1706
  target?: string | undefined;
1849
1707
  }>]>, "many">>;
@@ -1890,9 +1748,9 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1890
1748
  docs: z.ZodOptional<z.ZodString>;
1891
1749
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1892
1750
  } & {
1893
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
1751
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:item", "registry:example", "registry:internal"]>;
1894
1752
  }, "strip", z.ZodTypeAny, {
1895
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1753
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
1896
1754
  name: string;
1897
1755
  tailwind?: {
1898
1756
  config?: {
@@ -1917,7 +1775,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1917
1775
  content?: string | undefined;
1918
1776
  } | {
1919
1777
  path: string;
1920
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1778
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1921
1779
  content?: string | undefined;
1922
1780
  target?: string | undefined;
1923
1781
  })[] | undefined;
@@ -1930,7 +1788,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1930
1788
  docs?: string | undefined;
1931
1789
  categories?: string[] | undefined;
1932
1790
  }, {
1933
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
1791
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
1934
1792
  name: string;
1935
1793
  tailwind?: {
1936
1794
  config?: {
@@ -1955,7 +1813,7 @@ declare const registryItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1955
1813
  content?: string | undefined;
1956
1814
  } | {
1957
1815
  path: string;
1958
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1816
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1959
1817
  content?: string | undefined;
1960
1818
  target?: string | undefined;
1961
1819
  })[] | undefined;
@@ -2013,16 +1871,16 @@ declare const registrySchema: z.ZodObject<{
2013
1871
  }>, z.ZodObject<{
2014
1872
  path: z.ZodString;
2015
1873
  content: z.ZodOptional<z.ZodString>;
2016
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
1874
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2017
1875
  target: z.ZodOptional<z.ZodString>;
2018
1876
  }, "strip", z.ZodTypeAny, {
2019
1877
  path: string;
2020
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1878
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2021
1879
  content?: string | undefined;
2022
1880
  target?: string | undefined;
2023
1881
  }, {
2024
1882
  path: string;
2025
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
1883
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2026
1884
  content?: string | undefined;
2027
1885
  target?: string | undefined;
2028
1886
  }>]>, "many">>;
@@ -2072,7 +1930,6 @@ declare const registrySchema: z.ZodObject<{
2072
1930
  type: z.ZodLiteral<"registry:base">;
2073
1931
  config: z.ZodOptional<z.ZodObject<{
2074
1932
  $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2075
- style: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2076
1933
  rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2077
1934
  tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2078
1935
  tailwind: z.ZodOptional<z.ZodObject<{
@@ -2116,19 +1973,6 @@ declare const registrySchema: z.ZodObject<{
2116
1973
  lib?: string | undefined;
2117
1974
  hooks?: string | undefined;
2118
1975
  }>>;
2119
- registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2120
- url: z.ZodEffects<z.ZodString, string, string>;
2121
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2122
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2123
- }, "strip", z.ZodTypeAny, {
2124
- url: string;
2125
- params?: Record<string, string> | undefined;
2126
- headers?: Record<string, string> | undefined;
2127
- }, {
2128
- url: string;
2129
- params?: Record<string, string> | undefined;
2130
- headers?: Record<string, string> | undefined;
2131
- }>]>>>>;
2132
1976
  }, "strict", z.ZodTypeAny, {
2133
1977
  tailwind?: {
2134
1978
  config?: string | undefined;
@@ -2138,7 +1982,6 @@ declare const registrySchema: z.ZodObject<{
2138
1982
  prefix?: string | undefined;
2139
1983
  } | undefined;
2140
1984
  $schema?: string | undefined;
2141
- style?: string | undefined;
2142
1985
  rsc?: boolean | undefined;
2143
1986
  tsx?: boolean | undefined;
2144
1987
  iconLibrary?: string | undefined;
@@ -2151,11 +1994,6 @@ declare const registrySchema: z.ZodObject<{
2151
1994
  lib?: string | undefined;
2152
1995
  hooks?: string | undefined;
2153
1996
  } | undefined;
2154
- registries?: Record<string, string | {
2155
- url: string;
2156
- params?: Record<string, string> | undefined;
2157
- headers?: Record<string, string> | undefined;
2158
- }> | undefined;
2159
1997
  }, {
2160
1998
  tailwind?: {
2161
1999
  config?: string | undefined;
@@ -2165,7 +2003,6 @@ declare const registrySchema: z.ZodObject<{
2165
2003
  prefix?: string | undefined;
2166
2004
  } | undefined;
2167
2005
  $schema?: string | undefined;
2168
- style?: string | undefined;
2169
2006
  rsc?: boolean | undefined;
2170
2007
  tsx?: boolean | undefined;
2171
2008
  iconLibrary?: string | undefined;
@@ -2178,11 +2015,6 @@ declare const registrySchema: z.ZodObject<{
2178
2015
  lib?: string | undefined;
2179
2016
  hooks?: string | undefined;
2180
2017
  } | undefined;
2181
- registries?: Record<string, string | {
2182
- url: string;
2183
- params?: Record<string, string> | undefined;
2184
- headers?: Record<string, string> | undefined;
2185
- }> | undefined;
2186
2018
  }>>;
2187
2019
  }, "strip", z.ZodTypeAny, {
2188
2020
  type: "registry:base";
@@ -2204,7 +2036,6 @@ declare const registrySchema: z.ZodObject<{
2204
2036
  prefix?: string | undefined;
2205
2037
  } | undefined;
2206
2038
  $schema?: string | undefined;
2207
- style?: string | undefined;
2208
2039
  rsc?: boolean | undefined;
2209
2040
  tsx?: boolean | undefined;
2210
2041
  iconLibrary?: string | undefined;
@@ -2217,11 +2048,6 @@ declare const registrySchema: z.ZodObject<{
2217
2048
  lib?: string | undefined;
2218
2049
  hooks?: string | undefined;
2219
2050
  } | undefined;
2220
- registries?: Record<string, string | {
2221
- url: string;
2222
- params?: Record<string, string> | undefined;
2223
- headers?: Record<string, string> | undefined;
2224
- }> | undefined;
2225
2051
  } | undefined;
2226
2052
  css?: Record<string, any> | undefined;
2227
2053
  extends?: string | undefined;
@@ -2238,7 +2064,7 @@ declare const registrySchema: z.ZodObject<{
2238
2064
  content?: string | undefined;
2239
2065
  } | {
2240
2066
  path: string;
2241
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2067
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2242
2068
  content?: string | undefined;
2243
2069
  target?: string | undefined;
2244
2070
  })[] | undefined;
@@ -2270,7 +2096,6 @@ declare const registrySchema: z.ZodObject<{
2270
2096
  prefix?: string | undefined;
2271
2097
  } | undefined;
2272
2098
  $schema?: string | undefined;
2273
- style?: string | undefined;
2274
2099
  rsc?: boolean | undefined;
2275
2100
  tsx?: boolean | undefined;
2276
2101
  iconLibrary?: string | undefined;
@@ -2283,11 +2108,6 @@ declare const registrySchema: z.ZodObject<{
2283
2108
  lib?: string | undefined;
2284
2109
  hooks?: string | undefined;
2285
2110
  } | undefined;
2286
- registries?: Record<string, string | {
2287
- url: string;
2288
- params?: Record<string, string> | undefined;
2289
- headers?: Record<string, string> | undefined;
2290
- }> | undefined;
2291
2111
  } | undefined;
2292
2112
  css?: Record<string, any> | undefined;
2293
2113
  extends?: string | undefined;
@@ -2304,7 +2124,7 @@ declare const registrySchema: z.ZodObject<{
2304
2124
  content?: string | undefined;
2305
2125
  } | {
2306
2126
  path: string;
2307
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2127
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2308
2128
  content?: string | undefined;
2309
2129
  target?: string | undefined;
2310
2130
  })[] | undefined;
@@ -2344,16 +2164,16 @@ declare const registrySchema: z.ZodObject<{
2344
2164
  }>, z.ZodObject<{
2345
2165
  path: z.ZodString;
2346
2166
  content: z.ZodOptional<z.ZodString>;
2347
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2167
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2348
2168
  target: z.ZodOptional<z.ZodString>;
2349
2169
  }, "strip", z.ZodTypeAny, {
2350
2170
  path: string;
2351
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2171
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2352
2172
  content?: string | undefined;
2353
2173
  target?: string | undefined;
2354
2174
  }, {
2355
2175
  path: string;
2356
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2176
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2357
2177
  content?: string | undefined;
2358
2178
  target?: string | undefined;
2359
2179
  }>]>, "many">>;
@@ -2571,7 +2391,7 @@ declare const registrySchema: z.ZodObject<{
2571
2391
  content?: string | undefined;
2572
2392
  } | {
2573
2393
  path: string;
2574
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2394
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2575
2395
  content?: string | undefined;
2576
2396
  target?: string | undefined;
2577
2397
  })[] | undefined;
@@ -2635,7 +2455,7 @@ declare const registrySchema: z.ZodObject<{
2635
2455
  content?: string | undefined;
2636
2456
  } | {
2637
2457
  path: string;
2638
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2458
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2639
2459
  content?: string | undefined;
2640
2460
  target?: string | undefined;
2641
2461
  })[] | undefined;
@@ -2675,16 +2495,16 @@ declare const registrySchema: z.ZodObject<{
2675
2495
  }>, z.ZodObject<{
2676
2496
  path: z.ZodString;
2677
2497
  content: z.ZodOptional<z.ZodString>;
2678
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2498
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2679
2499
  target: z.ZodOptional<z.ZodString>;
2680
2500
  }, "strip", z.ZodTypeAny, {
2681
2501
  path: string;
2682
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2502
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2683
2503
  content?: string | undefined;
2684
2504
  target?: string | undefined;
2685
2505
  }, {
2686
2506
  path: string;
2687
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2507
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2688
2508
  content?: string | undefined;
2689
2509
  target?: string | undefined;
2690
2510
  }>]>, "many">>;
@@ -2813,7 +2633,7 @@ declare const registrySchema: z.ZodObject<{
2813
2633
  content?: string | undefined;
2814
2634
  } | {
2815
2635
  path: string;
2816
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2636
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2817
2637
  content?: string | undefined;
2818
2638
  target?: string | undefined;
2819
2639
  })[] | undefined;
@@ -2870,7 +2690,7 @@ declare const registrySchema: z.ZodObject<{
2870
2690
  content?: string | undefined;
2871
2691
  } | {
2872
2692
  path: string;
2873
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2693
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2874
2694
  content?: string | undefined;
2875
2695
  target?: string | undefined;
2876
2696
  })[] | undefined;
@@ -2929,16 +2749,16 @@ declare const registrySchema: z.ZodObject<{
2929
2749
  }>, z.ZodObject<{
2930
2750
  path: z.ZodString;
2931
2751
  content: z.ZodOptional<z.ZodString>;
2932
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2752
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
2933
2753
  target: z.ZodOptional<z.ZodString>;
2934
2754
  }, "strip", z.ZodTypeAny, {
2935
2755
  path: string;
2936
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2756
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2937
2757
  content?: string | undefined;
2938
2758
  target?: string | undefined;
2939
2759
  }, {
2940
2760
  path: string;
2941
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2761
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2942
2762
  content?: string | undefined;
2943
2763
  target?: string | undefined;
2944
2764
  }>]>, "many">>;
@@ -2985,9 +2805,9 @@ declare const registrySchema: z.ZodObject<{
2985
2805
  docs: z.ZodOptional<z.ZodString>;
2986
2806
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2987
2807
  } & {
2988
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
2808
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:item", "registry:example", "registry:internal"]>;
2989
2809
  }, "strip", z.ZodTypeAny, {
2990
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2810
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
2991
2811
  name: string;
2992
2812
  tailwind?: {
2993
2813
  config?: {
@@ -3012,7 +2832,7 @@ declare const registrySchema: z.ZodObject<{
3012
2832
  content?: string | undefined;
3013
2833
  } | {
3014
2834
  path: string;
3015
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2835
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3016
2836
  content?: string | undefined;
3017
2837
  target?: string | undefined;
3018
2838
  })[] | undefined;
@@ -3025,7 +2845,7 @@ declare const registrySchema: z.ZodObject<{
3025
2845
  docs?: string | undefined;
3026
2846
  categories?: string[] | undefined;
3027
2847
  }, {
3028
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
2848
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
3029
2849
  name: string;
3030
2850
  tailwind?: {
3031
2851
  config?: {
@@ -3050,7 +2870,7 @@ declare const registrySchema: z.ZodObject<{
3050
2870
  content?: string | undefined;
3051
2871
  } | {
3052
2872
  path: string;
3053
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2873
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3054
2874
  content?: string | undefined;
3055
2875
  target?: string | undefined;
3056
2876
  })[] | undefined;
@@ -3086,7 +2906,6 @@ declare const registrySchema: z.ZodObject<{
3086
2906
  prefix?: string | undefined;
3087
2907
  } | undefined;
3088
2908
  $schema?: string | undefined;
3089
- style?: string | undefined;
3090
2909
  rsc?: boolean | undefined;
3091
2910
  tsx?: boolean | undefined;
3092
2911
  iconLibrary?: string | undefined;
@@ -3099,11 +2918,6 @@ declare const registrySchema: z.ZodObject<{
3099
2918
  lib?: string | undefined;
3100
2919
  hooks?: string | undefined;
3101
2920
  } | undefined;
3102
- registries?: Record<string, string | {
3103
- url: string;
3104
- params?: Record<string, string> | undefined;
3105
- headers?: Record<string, string> | undefined;
3106
- }> | undefined;
3107
2921
  } | undefined;
3108
2922
  css?: Record<string, any> | undefined;
3109
2923
  extends?: string | undefined;
@@ -3120,7 +2934,7 @@ declare const registrySchema: z.ZodObject<{
3120
2934
  content?: string | undefined;
3121
2935
  } | {
3122
2936
  path: string;
3123
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
2937
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3124
2938
  content?: string | undefined;
3125
2939
  target?: string | undefined;
3126
2940
  })[] | undefined;
@@ -3184,7 +2998,7 @@ declare const registrySchema: z.ZodObject<{
3184
2998
  content?: string | undefined;
3185
2999
  } | {
3186
3000
  path: string;
3187
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3001
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3188
3002
  content?: string | undefined;
3189
3003
  target?: string | undefined;
3190
3004
  })[] | undefined;
@@ -3222,7 +3036,7 @@ declare const registrySchema: z.ZodObject<{
3222
3036
  content?: string | undefined;
3223
3037
  } | {
3224
3038
  path: string;
3225
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3039
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3226
3040
  content?: string | undefined;
3227
3041
  target?: string | undefined;
3228
3042
  })[] | undefined;
@@ -3254,7 +3068,7 @@ declare const registrySchema: z.ZodObject<{
3254
3068
  "alpha-48": string;
3255
3069
  } | undefined;
3256
3070
  } | {
3257
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3071
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
3258
3072
  name: string;
3259
3073
  tailwind?: {
3260
3074
  config?: {
@@ -3279,7 +3093,7 @@ declare const registrySchema: z.ZodObject<{
3279
3093
  content?: string | undefined;
3280
3094
  } | {
3281
3095
  path: string;
3282
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3096
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3283
3097
  content?: string | undefined;
3284
3098
  target?: string | undefined;
3285
3099
  })[] | undefined;
@@ -3315,7 +3129,6 @@ declare const registrySchema: z.ZodObject<{
3315
3129
  prefix?: string | undefined;
3316
3130
  } | undefined;
3317
3131
  $schema?: string | undefined;
3318
- style?: string | undefined;
3319
3132
  rsc?: boolean | undefined;
3320
3133
  tsx?: boolean | undefined;
3321
3134
  iconLibrary?: string | undefined;
@@ -3328,11 +3141,6 @@ declare const registrySchema: z.ZodObject<{
3328
3141
  lib?: string | undefined;
3329
3142
  hooks?: string | undefined;
3330
3143
  } | undefined;
3331
- registries?: Record<string, string | {
3332
- url: string;
3333
- params?: Record<string, string> | undefined;
3334
- headers?: Record<string, string> | undefined;
3335
- }> | undefined;
3336
3144
  } | undefined;
3337
3145
  css?: Record<string, any> | undefined;
3338
3146
  extends?: string | undefined;
@@ -3349,7 +3157,7 @@ declare const registrySchema: z.ZodObject<{
3349
3157
  content?: string | undefined;
3350
3158
  } | {
3351
3159
  path: string;
3352
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3160
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3353
3161
  content?: string | undefined;
3354
3162
  target?: string | undefined;
3355
3163
  })[] | undefined;
@@ -3413,7 +3221,7 @@ declare const registrySchema: z.ZodObject<{
3413
3221
  content?: string | undefined;
3414
3222
  } | {
3415
3223
  path: string;
3416
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3224
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3417
3225
  content?: string | undefined;
3418
3226
  target?: string | undefined;
3419
3227
  })[] | undefined;
@@ -3451,7 +3259,7 @@ declare const registrySchema: z.ZodObject<{
3451
3259
  content?: string | undefined;
3452
3260
  } | {
3453
3261
  path: string;
3454
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3262
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3455
3263
  content?: string | undefined;
3456
3264
  target?: string | undefined;
3457
3265
  })[] | undefined;
@@ -3483,7 +3291,7 @@ declare const registrySchema: z.ZodObject<{
3483
3291
  "alpha-48": string;
3484
3292
  } | undefined;
3485
3293
  } | {
3486
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
3294
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
3487
3295
  name: string;
3488
3296
  tailwind?: {
3489
3297
  config?: {
@@ -3508,7 +3316,7 @@ declare const registrySchema: z.ZodObject<{
3508
3316
  content?: string | undefined;
3509
3317
  } | {
3510
3318
  path: string;
3511
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3319
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3512
3320
  content?: string | undefined;
3513
3321
  target?: string | undefined;
3514
3322
  })[] | undefined;
@@ -3551,16 +3359,16 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3551
3359
  }>, z.ZodObject<{
3552
3360
  path: z.ZodString;
3553
3361
  content: z.ZodOptional<z.ZodString>;
3554
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
3362
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
3555
3363
  target: z.ZodOptional<z.ZodString>;
3556
3364
  }, "strip", z.ZodTypeAny, {
3557
3365
  path: string;
3558
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3366
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3559
3367
  content?: string | undefined;
3560
3368
  target?: string | undefined;
3561
3369
  }, {
3562
3370
  path: string;
3563
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3371
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3564
3372
  content?: string | undefined;
3565
3373
  target?: string | undefined;
3566
3374
  }>]>, "many">>;
@@ -3610,7 +3418,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3610
3418
  type: z.ZodLiteral<"registry:base">;
3611
3419
  config: z.ZodOptional<z.ZodObject<{
3612
3420
  $schema: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3613
- style: z.ZodOptional<z.ZodOptional<z.ZodString>>;
3614
3421
  rsc: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3615
3422
  tsx: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3616
3423
  tailwind: z.ZodOptional<z.ZodObject<{
@@ -3654,19 +3461,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3654
3461
  lib?: string | undefined;
3655
3462
  hooks?: string | undefined;
3656
3463
  }>>;
3657
- registries: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3658
- url: z.ZodEffects<z.ZodString, string, string>;
3659
- params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3660
- headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3661
- }, "strip", z.ZodTypeAny, {
3662
- url: string;
3663
- params?: Record<string, string> | undefined;
3664
- headers?: Record<string, string> | undefined;
3665
- }, {
3666
- url: string;
3667
- params?: Record<string, string> | undefined;
3668
- headers?: Record<string, string> | undefined;
3669
- }>]>>>>;
3670
3464
  }, "strict", z.ZodTypeAny, {
3671
3465
  tailwind?: {
3672
3466
  config?: string | undefined;
@@ -3676,7 +3470,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3676
3470
  prefix?: string | undefined;
3677
3471
  } | undefined;
3678
3472
  $schema?: string | undefined;
3679
- style?: string | undefined;
3680
3473
  rsc?: boolean | undefined;
3681
3474
  tsx?: boolean | undefined;
3682
3475
  iconLibrary?: string | undefined;
@@ -3689,11 +3482,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3689
3482
  lib?: string | undefined;
3690
3483
  hooks?: string | undefined;
3691
3484
  } | undefined;
3692
- registries?: Record<string, string | {
3693
- url: string;
3694
- params?: Record<string, string> | undefined;
3695
- headers?: Record<string, string> | undefined;
3696
- }> | undefined;
3697
3485
  }, {
3698
3486
  tailwind?: {
3699
3487
  config?: string | undefined;
@@ -3703,7 +3491,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3703
3491
  prefix?: string | undefined;
3704
3492
  } | undefined;
3705
3493
  $schema?: string | undefined;
3706
- style?: string | undefined;
3707
3494
  rsc?: boolean | undefined;
3708
3495
  tsx?: boolean | undefined;
3709
3496
  iconLibrary?: string | undefined;
@@ -3716,11 +3503,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3716
3503
  lib?: string | undefined;
3717
3504
  hooks?: string | undefined;
3718
3505
  } | undefined;
3719
- registries?: Record<string, string | {
3720
- url: string;
3721
- params?: Record<string, string> | undefined;
3722
- headers?: Record<string, string> | undefined;
3723
- }> | undefined;
3724
3506
  }>>;
3725
3507
  }, "strip", z.ZodTypeAny, {
3726
3508
  type: "registry:base";
@@ -3742,7 +3524,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3742
3524
  prefix?: string | undefined;
3743
3525
  } | undefined;
3744
3526
  $schema?: string | undefined;
3745
- style?: string | undefined;
3746
3527
  rsc?: boolean | undefined;
3747
3528
  tsx?: boolean | undefined;
3748
3529
  iconLibrary?: string | undefined;
@@ -3755,11 +3536,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3755
3536
  lib?: string | undefined;
3756
3537
  hooks?: string | undefined;
3757
3538
  } | undefined;
3758
- registries?: Record<string, string | {
3759
- url: string;
3760
- params?: Record<string, string> | undefined;
3761
- headers?: Record<string, string> | undefined;
3762
- }> | undefined;
3763
3539
  } | undefined;
3764
3540
  css?: Record<string, any> | undefined;
3765
3541
  extends?: string | undefined;
@@ -3776,7 +3552,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3776
3552
  content?: string | undefined;
3777
3553
  } | {
3778
3554
  path: string;
3779
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3555
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3780
3556
  content?: string | undefined;
3781
3557
  target?: string | undefined;
3782
3558
  })[] | undefined;
@@ -3808,7 +3584,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3808
3584
  prefix?: string | undefined;
3809
3585
  } | undefined;
3810
3586
  $schema?: string | undefined;
3811
- style?: string | undefined;
3812
3587
  rsc?: boolean | undefined;
3813
3588
  tsx?: boolean | undefined;
3814
3589
  iconLibrary?: string | undefined;
@@ -3821,11 +3596,6 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3821
3596
  lib?: string | undefined;
3822
3597
  hooks?: string | undefined;
3823
3598
  } | undefined;
3824
- registries?: Record<string, string | {
3825
- url: string;
3826
- params?: Record<string, string> | undefined;
3827
- headers?: Record<string, string> | undefined;
3828
- }> | undefined;
3829
3599
  } | undefined;
3830
3600
  css?: Record<string, any> | undefined;
3831
3601
  extends?: string | undefined;
@@ -3842,7 +3612,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3842
3612
  content?: string | undefined;
3843
3613
  } | {
3844
3614
  path: string;
3845
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3615
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3846
3616
  content?: string | undefined;
3847
3617
  target?: string | undefined;
3848
3618
  })[] | undefined;
@@ -3882,16 +3652,16 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
3882
3652
  }>, z.ZodObject<{
3883
3653
  path: z.ZodString;
3884
3654
  content: z.ZodOptional<z.ZodString>;
3885
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
3655
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
3886
3656
  target: z.ZodOptional<z.ZodString>;
3887
3657
  }, "strip", z.ZodTypeAny, {
3888
3658
  path: string;
3889
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3659
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3890
3660
  content?: string | undefined;
3891
3661
  target?: string | undefined;
3892
3662
  }, {
3893
3663
  path: string;
3894
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3664
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3895
3665
  content?: string | undefined;
3896
3666
  target?: string | undefined;
3897
3667
  }>]>, "many">>;
@@ -4109,7 +3879,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4109
3879
  content?: string | undefined;
4110
3880
  } | {
4111
3881
  path: string;
4112
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3882
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4113
3883
  content?: string | undefined;
4114
3884
  target?: string | undefined;
4115
3885
  })[] | undefined;
@@ -4173,7 +3943,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4173
3943
  content?: string | undefined;
4174
3944
  } | {
4175
3945
  path: string;
4176
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3946
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4177
3947
  content?: string | undefined;
4178
3948
  target?: string | undefined;
4179
3949
  })[] | undefined;
@@ -4213,16 +3983,16 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4213
3983
  }>, z.ZodObject<{
4214
3984
  path: z.ZodString;
4215
3985
  content: z.ZodOptional<z.ZodString>;
4216
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
3986
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4217
3987
  target: z.ZodOptional<z.ZodString>;
4218
3988
  }, "strip", z.ZodTypeAny, {
4219
3989
  path: string;
4220
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3990
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4221
3991
  content?: string | undefined;
4222
3992
  target?: string | undefined;
4223
3993
  }, {
4224
3994
  path: string;
4225
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
3995
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4226
3996
  content?: string | undefined;
4227
3997
  target?: string | undefined;
4228
3998
  }>]>, "many">>;
@@ -4351,7 +4121,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4351
4121
  content?: string | undefined;
4352
4122
  } | {
4353
4123
  path: string;
4354
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4124
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4355
4125
  content?: string | undefined;
4356
4126
  target?: string | undefined;
4357
4127
  })[] | undefined;
@@ -4408,7 +4178,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4408
4178
  content?: string | undefined;
4409
4179
  } | {
4410
4180
  path: string;
4411
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4181
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4412
4182
  content?: string | undefined;
4413
4183
  target?: string | undefined;
4414
4184
  })[] | undefined;
@@ -4467,16 +4237,16 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4467
4237
  }>, z.ZodObject<{
4468
4238
  path: z.ZodString;
4469
4239
  content: z.ZodOptional<z.ZodString>;
4470
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4240
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4471
4241
  target: z.ZodOptional<z.ZodString>;
4472
4242
  }, "strip", z.ZodTypeAny, {
4473
4243
  path: string;
4474
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4244
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4475
4245
  content?: string | undefined;
4476
4246
  target?: string | undefined;
4477
4247
  }, {
4478
4248
  path: string;
4479
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4249
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4480
4250
  content?: string | undefined;
4481
4251
  target?: string | undefined;
4482
4252
  }>]>, "many">>;
@@ -4523,9 +4293,9 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4523
4293
  docs: z.ZodOptional<z.ZodString>;
4524
4294
  categories: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4525
4295
  } & {
4526
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
4296
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:page", "registry:file", "registry:item", "registry:example", "registry:internal"]>;
4527
4297
  }, "strip", z.ZodTypeAny, {
4528
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4298
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
4529
4299
  name: string;
4530
4300
  tailwind?: {
4531
4301
  config?: {
@@ -4550,7 +4320,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4550
4320
  content?: string | undefined;
4551
4321
  } | {
4552
4322
  path: string;
4553
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4323
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4554
4324
  content?: string | undefined;
4555
4325
  target?: string | undefined;
4556
4326
  })[] | undefined;
@@ -4563,7 +4333,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4563
4333
  docs?: string | undefined;
4564
4334
  categories?: string[] | undefined;
4565
4335
  }, {
4566
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
4336
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:page" | "registry:file" | "registry:item" | "registry:example" | "registry:internal";
4567
4337
  name: string;
4568
4338
  tailwind?: {
4569
4339
  config?: {
@@ -4588,7 +4358,7 @@ declare const registryIndexSchema: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z
4588
4358
  content?: string | undefined;
4589
4359
  } | {
4590
4360
  path: string;
4591
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4361
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4592
4362
  content?: string | undefined;
4593
4363
  target?: string | undefined;
4594
4364
  })[] | undefined;
@@ -4612,52 +4382,6 @@ declare const stylesSchema: z.ZodArray<z.ZodObject<{
4612
4382
  label: string;
4613
4383
  }>, "many">;
4614
4384
  declare const iconsSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>;
4615
- declare const registryBaseColorSchema: z.ZodObject<{
4616
- inlineColors: z.ZodObject<{
4617
- light: z.ZodRecord<z.ZodString, z.ZodString>;
4618
- dark: z.ZodRecord<z.ZodString, z.ZodString>;
4619
- }, "strip", z.ZodTypeAny, {
4620
- light: Record<string, string>;
4621
- dark: Record<string, string>;
4622
- }, {
4623
- light: Record<string, string>;
4624
- dark: Record<string, string>;
4625
- }>;
4626
- cssVars: z.ZodRecord<z.ZodString, z.ZodObject<{
4627
- light: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4628
- dark: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4629
- }, "strip", z.ZodTypeAny, {
4630
- light?: Record<string, string> | undefined;
4631
- dark?: Record<string, string> | undefined;
4632
- }, {
4633
- light?: Record<string, string> | undefined;
4634
- dark?: Record<string, string> | undefined;
4635
- }>>;
4636
- inlineColorsTemplate: z.ZodString;
4637
- cssVarsTemplate: z.ZodString;
4638
- }, "strip", z.ZodTypeAny, {
4639
- cssVars: Record<string, {
4640
- light?: Record<string, string> | undefined;
4641
- dark?: Record<string, string> | undefined;
4642
- }>;
4643
- inlineColors: {
4644
- light: Record<string, string>;
4645
- dark: Record<string, string>;
4646
- };
4647
- inlineColorsTemplate: string;
4648
- cssVarsTemplate: string;
4649
- }, {
4650
- cssVars: Record<string, {
4651
- light?: Record<string, string> | undefined;
4652
- dark?: Record<string, string> | undefined;
4653
- }>;
4654
- inlineColors: {
4655
- light: Record<string, string>;
4656
- dark: Record<string, string>;
4657
- };
4658
- inlineColorsTemplate: string;
4659
- cssVarsTemplate: string;
4660
- }>;
4661
4385
  declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4662
4386
  $schema: z.ZodOptional<z.ZodString>;
4663
4387
  extends: z.ZodOptional<z.ZodString>;
@@ -4686,16 +4410,16 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4686
4410
  }>, z.ZodObject<{
4687
4411
  path: z.ZodString;
4688
4412
  content: z.ZodOptional<z.ZodString>;
4689
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4413
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4690
4414
  target: z.ZodOptional<z.ZodString>;
4691
4415
  }, "strip", z.ZodTypeAny, {
4692
4416
  path: string;
4693
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4417
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4694
4418
  content?: string | undefined;
4695
4419
  target?: string | undefined;
4696
4420
  }, {
4697
4421
  path: string;
4698
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4422
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4699
4423
  content?: string | undefined;
4700
4424
  target?: string | undefined;
4701
4425
  }>]>, "many">>;
@@ -4770,16 +4494,16 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4770
4494
  }>, z.ZodObject<{
4771
4495
  path: z.ZodString;
4772
4496
  content: z.ZodOptional<z.ZodString>;
4773
- type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:style", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4497
+ type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:theme", "registry:font-variant", "registry:item", "registry:base", "registry:example", "registry:internal"]>;
4774
4498
  target: z.ZodOptional<z.ZodString>;
4775
4499
  }, "strip", z.ZodTypeAny, {
4776
4500
  path: string;
4777
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4501
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4778
4502
  content?: string | undefined;
4779
4503
  target?: string | undefined;
4780
4504
  }, {
4781
4505
  path: string;
4782
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4506
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4783
4507
  content?: string | undefined;
4784
4508
  target?: string | undefined;
4785
4509
  }>]>, "many">>;
@@ -4885,7 +4609,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4885
4609
  content?: string | undefined;
4886
4610
  } | {
4887
4611
  path: string;
4888
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4612
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4889
4613
  content?: string | undefined;
4890
4614
  target?: string | undefined;
4891
4615
  })[] | undefined;
@@ -4932,7 +4656,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4932
4656
  content?: string | undefined;
4933
4657
  } | {
4934
4658
  path: string;
4935
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4659
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4936
4660
  content?: string | undefined;
4937
4661
  target?: string | undefined;
4938
4662
  })[] | undefined;
@@ -4963,7 +4687,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
4963
4687
  content?: string | undefined;
4964
4688
  } | {
4965
4689
  path: string;
4966
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4690
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4967
4691
  content?: string | undefined;
4968
4692
  target?: string | undefined;
4969
4693
  })[] | undefined;
@@ -5008,7 +4732,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
5008
4732
  content?: string | undefined;
5009
4733
  } | {
5010
4734
  path: string;
5011
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4735
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
5012
4736
  content?: string | undefined;
5013
4737
  target?: string | undefined;
5014
4738
  })[] | undefined;
@@ -5039,7 +4763,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
5039
4763
  content?: string | undefined;
5040
4764
  } | {
5041
4765
  path: string;
5042
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4766
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
5043
4767
  content?: string | undefined;
5044
4768
  target?: string | undefined;
5045
4769
  })[] | undefined;
@@ -5084,7 +4808,7 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
5084
4808
  content?: string | undefined;
5085
4809
  } | {
5086
4810
  path: string;
5087
- type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:style" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
4811
+ type: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:theme" | "registry:font-variant" | "registry:item" | "registry:base" | "registry:example" | "registry:internal";
5088
4812
  content?: string | undefined;
5089
4813
  target?: string | undefined;
5090
4814
  })[] | undefined;
@@ -5105,14 +4829,14 @@ declare const searchResultItemSchema: z.ZodObject<{
5105
4829
  registry: z.ZodString;
5106
4830
  addCommandArgument: z.ZodString;
5107
4831
  }, "strip", z.ZodTypeAny, {
5108
- registry: string;
5109
4832
  name: string;
4833
+ registry: string;
5110
4834
  addCommandArgument: string;
5111
4835
  type?: string | undefined;
5112
4836
  description?: string | undefined;
5113
4837
  }, {
5114
- registry: string;
5115
4838
  name: string;
4839
+ registry: string;
5116
4840
  addCommandArgument: string;
5117
4841
  type?: string | undefined;
5118
4842
  description?: string | undefined;
@@ -5141,22 +4865,22 @@ declare const searchResultsSchema: z.ZodObject<{
5141
4865
  registry: z.ZodString;
5142
4866
  addCommandArgument: z.ZodString;
5143
4867
  }, "strip", z.ZodTypeAny, {
5144
- registry: string;
5145
4868
  name: string;
4869
+ registry: string;
5146
4870
  addCommandArgument: string;
5147
4871
  type?: string | undefined;
5148
4872
  description?: string | undefined;
5149
4873
  }, {
5150
- registry: string;
5151
4874
  name: string;
4875
+ registry: string;
5152
4876
  addCommandArgument: string;
5153
4877
  type?: string | undefined;
5154
4878
  description?: string | undefined;
5155
4879
  }>, "many">;
5156
4880
  }, "strip", z.ZodTypeAny, {
5157
4881
  items: {
5158
- registry: string;
5159
4882
  name: string;
4883
+ registry: string;
5160
4884
  addCommandArgument: string;
5161
4885
  type?: string | undefined;
5162
4886
  description?: string | undefined;
@@ -5169,8 +4893,8 @@ declare const searchResultsSchema: z.ZodObject<{
5169
4893
  };
5170
4894
  }, {
5171
4895
  items: {
5172
- registry: string;
5173
4896
  name: string;
4897
+ registry: string;
5174
4898
  addCommandArgument: string;
5175
4899
  type?: string | undefined;
5176
4900
  description?: string | undefined;
@@ -5182,39 +4906,18 @@ declare const searchResultsSchema: z.ZodObject<{
5182
4906
  hasMore: boolean;
5183
4907
  };
5184
4908
  }>;
5185
- declare const registriesIndexSchema: z.ZodRecord<z.ZodString, z.ZodString>;
5186
- declare const registriesSchema: z.ZodArray<z.ZodObject<{
5187
- name: z.ZodString;
5188
- homepage: z.ZodOptional<z.ZodString>;
5189
- url: z.ZodString;
5190
- description: z.ZodOptional<z.ZodString>;
5191
- }, "strip", z.ZodTypeAny, {
5192
- url: string;
5193
- name: string;
5194
- description?: string | undefined;
5195
- homepage?: string | undefined;
5196
- }, {
5197
- url: string;
5198
- name: string;
5199
- description?: string | undefined;
5200
- homepage?: string | undefined;
5201
- }>, "many">;
5202
4909
  declare const presetSchema: z.ZodObject<{
5203
4910
  name: z.ZodString;
5204
4911
  title: z.ZodString;
5205
4912
  description: z.ZodString;
5206
- base: z.ZodString;
5207
- style: z.ZodString;
5208
- baseColor: z.ZodString;
5209
4913
  theme: z.ZodString;
4914
+ neutralTheme: z.ZodString;
5210
4915
  iconLibrary: z.ZodString;
5211
4916
  fontVariant: z.ZodString;
4917
+ item: z.ZodOptional<z.ZodString>;
5212
4918
  menuAccent: z.ZodEnum<["subtle", "bold"]>;
5213
4919
  menuColor: z.ZodEnum<["default", "inverted"]>;
5214
- radius: z.ZodString;
5215
4920
  }, "strip", z.ZodTypeAny, {
5216
- style: string;
5217
- baseColor: string;
5218
4921
  iconLibrary: string;
5219
4922
  menuColor: "default" | "inverted";
5220
4923
  menuAccent: "subtle" | "bold";
@@ -5223,11 +4926,9 @@ declare const presetSchema: z.ZodObject<{
5223
4926
  title: string;
5224
4927
  description: string;
5225
4928
  fontVariant: string;
5226
- base: string;
5227
- radius: string;
4929
+ neutralTheme: string;
4930
+ item?: string | undefined;
5228
4931
  }, {
5229
- style: string;
5230
- baseColor: string;
5231
4932
  iconLibrary: string;
5232
4933
  menuColor: "default" | "inverted";
5233
4934
  menuAccent: "subtle" | "bold";
@@ -5236,8 +4937,8 @@ declare const presetSchema: z.ZodObject<{
5236
4937
  title: string;
5237
4938
  description: string;
5238
4939
  fontVariant: string;
5239
- base: string;
5240
- radius: string;
4940
+ neutralTheme: string;
4941
+ item?: string | undefined;
5241
4942
  }>;
5242
4943
  type Preset = z.infer<typeof presetSchema>;
5243
4944
  declare const configJsonSchema: z.ZodObject<{
@@ -5245,18 +4946,14 @@ declare const configJsonSchema: z.ZodObject<{
5245
4946
  name: z.ZodString;
5246
4947
  title: z.ZodString;
5247
4948
  description: z.ZodString;
5248
- base: z.ZodString;
5249
- style: z.ZodString;
5250
- baseColor: z.ZodString;
5251
4949
  theme: z.ZodString;
4950
+ neutralTheme: z.ZodString;
5252
4951
  iconLibrary: z.ZodString;
5253
4952
  fontVariant: z.ZodString;
4953
+ item: z.ZodOptional<z.ZodString>;
5254
4954
  menuAccent: z.ZodEnum<["subtle", "bold"]>;
5255
4955
  menuColor: z.ZodEnum<["default", "inverted"]>;
5256
- radius: z.ZodString;
5257
4956
  }, "strip", z.ZodTypeAny, {
5258
- style: string;
5259
- baseColor: string;
5260
4957
  iconLibrary: string;
5261
4958
  menuColor: "default" | "inverted";
5262
4959
  menuAccent: "subtle" | "bold";
@@ -5265,11 +4962,9 @@ declare const configJsonSchema: z.ZodObject<{
5265
4962
  title: string;
5266
4963
  description: string;
5267
4964
  fontVariant: string;
5268
- base: string;
5269
- radius: string;
4965
+ neutralTheme: string;
4966
+ item?: string | undefined;
5270
4967
  }, {
5271
- style: string;
5272
- baseColor: string;
5273
4968
  iconLibrary: string;
5274
4969
  menuColor: "default" | "inverted";
5275
4970
  menuAccent: "subtle" | "bold";
@@ -5278,13 +4973,11 @@ declare const configJsonSchema: z.ZodObject<{
5278
4973
  title: string;
5279
4974
  description: string;
5280
4975
  fontVariant: string;
5281
- base: string;
5282
- radius: string;
4976
+ neutralTheme: string;
4977
+ item?: string | undefined;
5283
4978
  }>, "many">;
5284
4979
  }, "strip", z.ZodTypeAny, {
5285
4980
  presets: {
5286
- style: string;
5287
- baseColor: string;
5288
4981
  iconLibrary: string;
5289
4982
  menuColor: "default" | "inverted";
5290
4983
  menuAccent: "subtle" | "bold";
@@ -5293,13 +4986,11 @@ declare const configJsonSchema: z.ZodObject<{
5293
4986
  title: string;
5294
4987
  description: string;
5295
4988
  fontVariant: string;
5296
- base: string;
5297
- radius: string;
4989
+ neutralTheme: string;
4990
+ item?: string | undefined;
5298
4991
  }[];
5299
4992
  }, {
5300
4993
  presets: {
5301
- style: string;
5302
- baseColor: string;
5303
4994
  iconLibrary: string;
5304
4995
  menuColor: "default" | "inverted";
5305
4996
  menuAccent: "subtle" | "bold";
@@ -5308,10 +4999,10 @@ declare const configJsonSchema: z.ZodObject<{
5308
4999
  title: string;
5309
5000
  description: string;
5310
5001
  fontVariant: string;
5311
- base: string;
5312
- radius: string;
5002
+ neutralTheme: string;
5003
+ item?: string | undefined;
5313
5004
  }[];
5314
5005
  }>;
5315
5006
  type ConfigJson = z.infer<typeof configJsonSchema>;
5316
5007
 
5317
- export { type ConfigJson, type FontRole, type Preset, type Registry, type RegistryBaseItem, type RegistryFontItem, type RegistryFontVariantItem, type RegistryItem, configJsonSchema, configSchema, iconsSchema, presetSchema, rawConfigSchema, registriesIndexSchema, registriesSchema, registryBaseColorSchema, registryConfigItemSchema, registryConfigSchema, registryIndexSchema, registryItemCommonSchema, registryItemCssSchema, registryItemCssVarsSchema, registryItemEnvVarsSchema, registryItemFileSchema, registryItemFontSchema, registryItemFontVariantSchema, registryItemSchema, registryItemTailwindSchema, registryItemThemePrimarySchema, registryItemTypeSchema, registryResolvedItemsTreeSchema, registrySchema, searchResultItemSchema, searchResultsSchema, stylesSchema, workspaceConfigSchema };
5008
+ export { type ConfigJson, type FontRole, type Preset, type Registry, type RegistryBaseItem, type RegistryFontItem, type RegistryFontVariantItem, type RegistryItem, configJsonSchema, configSchema, iconsSchema, presetSchema, rawConfigSchema, registryIndexSchema, registryItemCommonSchema, registryItemCssSchema, registryItemCssVarsSchema, registryItemEnvVarsSchema, registryItemFileSchema, registryItemFontSchema, registryItemFontVariantSchema, registryItemSchema, registryItemTailwindSchema, registryItemThemePrimarySchema, registryItemTypeSchema, registryResolvedItemsTreeSchema, registrySchema, searchResultItemSchema, searchResultsSchema, stylesSchema, workspaceConfigSchema };