@frontic/ui 0.5.1 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{api-5jmG88HV.d.ts → api-DmrBFC4C.d.ts} +20 -20
- package/dist/api-DmrBFC4C.d.ts.map +1 -0
- package/dist/{index-H1YMti1k.d.ts → index-Cd5RBhtD.d.ts} +58 -58
- package/dist/index-Cd5RBhtD.d.ts.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -15
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +2 -2
- package/dist/{mcp-thK0j_gy.js → mcp-CrpA36mf.js} +9 -9
- package/dist/mcp-CrpA36mf.js.map +1 -0
- package/dist/registry/index.d.ts +8 -8
- package/dist/registry/index.d.ts.map +1 -1
- package/dist/registry/index.js +1 -1
- package/dist/{registry-CSfiKyuv.js → registry-B-cUULNn.js} +6 -6
- package/dist/registry-B-cUULNn.js.map +1 -0
- package/dist/schema/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/api-5jmG88HV.d.ts.map +0 -1
- package/dist/index-H1YMti1k.d.ts.map +0 -1
- package/dist/mcp-thK0j_gy.js.map +0 -1
- package/dist/registry-CSfiKyuv.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { h as registryItemSchema, r as configSchema, u as registryIndexSchema } from "./index-
|
|
1
|
+
import { h as registryItemSchema, r as configSchema, u as registryIndexSchema } from "./index-Cd5RBhtD.js";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
|
|
4
4
|
//#region src/utils/get-config.d.ts
|
|
@@ -11,26 +11,25 @@ declare function getRegistry(name: string, options?: {
|
|
|
11
11
|
useCache?: boolean;
|
|
12
12
|
}): Promise<{
|
|
13
13
|
name?: string;
|
|
14
|
-
homepage?: string;
|
|
15
14
|
items?: {
|
|
16
15
|
name?: string;
|
|
17
16
|
title?: string;
|
|
18
17
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
18
|
+
description?: string;
|
|
19
19
|
$schema?: string;
|
|
20
20
|
extends?: string;
|
|
21
21
|
author?: string;
|
|
22
|
-
description?: string;
|
|
23
22
|
dependencies?: string[];
|
|
24
23
|
devDependencies?: string[];
|
|
25
24
|
registryDependencies?: string[];
|
|
26
25
|
files?: ({
|
|
27
|
-
type?: "registry:page" | "registry:file";
|
|
28
26
|
path?: string;
|
|
27
|
+
type?: "registry:page" | "registry:file";
|
|
29
28
|
content?: string;
|
|
30
29
|
target?: string;
|
|
31
30
|
} | {
|
|
32
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
33
31
|
path?: string;
|
|
32
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
34
33
|
content?: string;
|
|
35
34
|
target?: string;
|
|
36
35
|
})[];
|
|
@@ -52,6 +51,7 @@ declare function getRegistry(name: string, options?: {
|
|
|
52
51
|
docs?: string;
|
|
53
52
|
categories?: string[];
|
|
54
53
|
}[];
|
|
54
|
+
homepage?: string;
|
|
55
55
|
}>;
|
|
56
56
|
declare function getRegistryItems(items: string[], options?: {
|
|
57
57
|
config?: Partial<Config>;
|
|
@@ -60,21 +60,21 @@ declare function getRegistryItems(items: string[], options?: {
|
|
|
60
60
|
name?: string;
|
|
61
61
|
title?: string;
|
|
62
62
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
63
|
+
description?: string;
|
|
63
64
|
$schema?: string;
|
|
64
65
|
extends?: string;
|
|
65
66
|
author?: string;
|
|
66
|
-
description?: string;
|
|
67
67
|
dependencies?: string[];
|
|
68
68
|
devDependencies?: string[];
|
|
69
69
|
registryDependencies?: string[];
|
|
70
70
|
files?: ({
|
|
71
|
-
type?: "registry:page" | "registry:file";
|
|
72
71
|
path?: string;
|
|
72
|
+
type?: "registry:page" | "registry:file";
|
|
73
73
|
content?: string;
|
|
74
74
|
target?: string;
|
|
75
75
|
} | {
|
|
76
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
77
76
|
path?: string;
|
|
77
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
78
78
|
content?: string;
|
|
79
79
|
target?: string;
|
|
80
80
|
})[];
|
|
@@ -103,13 +103,13 @@ declare function resolveRegistryItems(items: string[], options?: {
|
|
|
103
103
|
dependencies?: string[];
|
|
104
104
|
devDependencies?: string[];
|
|
105
105
|
files?: ({
|
|
106
|
-
type?: "registry:page" | "registry:file";
|
|
107
106
|
path?: string;
|
|
107
|
+
type?: "registry:page" | "registry:file";
|
|
108
108
|
content?: string;
|
|
109
109
|
target?: string;
|
|
110
110
|
} | {
|
|
111
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
112
111
|
path?: string;
|
|
112
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
113
113
|
content?: string;
|
|
114
114
|
target?: string;
|
|
115
115
|
})[];
|
|
@@ -140,21 +140,21 @@ declare function getShadcnRegistryIndex(): Promise<{
|
|
|
140
140
|
name?: string;
|
|
141
141
|
title?: string;
|
|
142
142
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
143
|
+
description?: string;
|
|
143
144
|
$schema?: string;
|
|
144
145
|
extends?: string;
|
|
145
146
|
author?: string;
|
|
146
|
-
description?: string;
|
|
147
147
|
dependencies?: string[];
|
|
148
148
|
devDependencies?: string[];
|
|
149
149
|
registryDependencies?: string[];
|
|
150
150
|
files?: ({
|
|
151
|
-
type?: "registry:page" | "registry:file";
|
|
152
151
|
path?: string;
|
|
152
|
+
type?: "registry:page" | "registry:file";
|
|
153
153
|
content?: string;
|
|
154
154
|
target?: string;
|
|
155
155
|
} | {
|
|
156
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
157
156
|
path?: string;
|
|
157
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
158
158
|
content?: string;
|
|
159
159
|
target?: string;
|
|
160
160
|
})[];
|
|
@@ -222,21 +222,21 @@ declare function resolveTree(index: z.infer<typeof registryIndexSchema>, names:
|
|
|
222
222
|
name?: string;
|
|
223
223
|
title?: string;
|
|
224
224
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
225
|
+
description?: string;
|
|
225
226
|
$schema?: string;
|
|
226
227
|
extends?: string;
|
|
227
228
|
author?: string;
|
|
228
|
-
description?: string;
|
|
229
229
|
dependencies?: string[];
|
|
230
230
|
devDependencies?: string[];
|
|
231
231
|
registryDependencies?: string[];
|
|
232
232
|
files?: ({
|
|
233
|
-
type?: "registry:page" | "registry:file";
|
|
234
233
|
path?: string;
|
|
234
|
+
type?: "registry:page" | "registry:file";
|
|
235
235
|
content?: string;
|
|
236
236
|
target?: string;
|
|
237
237
|
} | {
|
|
238
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
239
238
|
path?: string;
|
|
239
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
240
240
|
content?: string;
|
|
241
241
|
target?: string;
|
|
242
242
|
})[];
|
|
@@ -265,21 +265,21 @@ declare function fetchTree(style: string, tree: z.infer<typeof registryIndexSche
|
|
|
265
265
|
name?: string;
|
|
266
266
|
title?: string;
|
|
267
267
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
268
|
+
description?: string;
|
|
268
269
|
$schema?: string;
|
|
269
270
|
extends?: string;
|
|
270
271
|
author?: string;
|
|
271
|
-
description?: string;
|
|
272
272
|
dependencies?: string[];
|
|
273
273
|
devDependencies?: string[];
|
|
274
274
|
registryDependencies?: string[];
|
|
275
275
|
files?: ({
|
|
276
|
-
type?: "registry:page" | "registry:file";
|
|
277
276
|
path?: string;
|
|
277
|
+
type?: "registry:page" | "registry:file";
|
|
278
278
|
content?: string;
|
|
279
279
|
target?: string;
|
|
280
280
|
} | {
|
|
281
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
282
281
|
path?: string;
|
|
282
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
283
283
|
content?: string;
|
|
284
284
|
target?: string;
|
|
285
285
|
})[];
|
|
@@ -310,4 +310,4 @@ declare function getRegistriesIndex(options?: {
|
|
|
310
310
|
}): Promise<Record<string, string>>;
|
|
311
311
|
//#endregion
|
|
312
312
|
export { getRegistry as a, getRegistryIcons as c, getShadcnRegistryIndex as d, resolveRegistryItems as f, getRegistriesIndex as i, getRegistryItems as l, Config as m, getItemTargetPath as n, getRegistryBaseColor as o, resolveTree as p, getRegistriesConfig as r, getRegistryBaseColors as s, fetchTree as t, getRegistryStyles as u };
|
|
313
|
-
//# sourceMappingURL=api-
|
|
313
|
+
//# sourceMappingURL=api-DmrBFC4C.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-DmrBFC4C.d.ts","names":[],"sources":["../src/utils/get-config.ts","../src/registry/api.ts"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -8,13 +8,13 @@ declare const registryItemFileSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
8
8
|
type: z.ZodEnum<["registry:file", "registry:page"]>;
|
|
9
9
|
target: z.ZodString;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
type?: "registry:page" | "registry:file";
|
|
12
11
|
path?: string;
|
|
12
|
+
type?: "registry:page" | "registry:file";
|
|
13
13
|
content?: string;
|
|
14
14
|
target?: string;
|
|
15
15
|
}, {
|
|
16
|
-
type?: "registry:page" | "registry:file";
|
|
17
16
|
path?: string;
|
|
17
|
+
type?: "registry:page" | "registry:file";
|
|
18
18
|
content?: string;
|
|
19
19
|
target?: string;
|
|
20
20
|
}>, z.ZodObject<{
|
|
@@ -23,13 +23,13 @@ declare const registryItemFileSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
23
23
|
type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:composable", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
|
|
24
24
|
target: z.ZodOptional<z.ZodString>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
27
26
|
path?: string;
|
|
27
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
28
28
|
content?: string;
|
|
29
29
|
target?: string;
|
|
30
30
|
}, {
|
|
31
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
32
31
|
path?: string;
|
|
32
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
33
33
|
content?: string;
|
|
34
34
|
target?: string;
|
|
35
35
|
}>]>;
|
|
@@ -92,13 +92,13 @@ declare const registryItemSchema: z.ZodObject<{
|
|
|
92
92
|
type: z.ZodEnum<["registry:file", "registry:page"]>;
|
|
93
93
|
target: z.ZodString;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
type?: "registry:page" | "registry:file";
|
|
96
95
|
path?: string;
|
|
96
|
+
type?: "registry:page" | "registry:file";
|
|
97
97
|
content?: string;
|
|
98
98
|
target?: string;
|
|
99
99
|
}, {
|
|
100
|
-
type?: "registry:page" | "registry:file";
|
|
101
100
|
path?: string;
|
|
101
|
+
type?: "registry:page" | "registry:file";
|
|
102
102
|
content?: string;
|
|
103
103
|
target?: string;
|
|
104
104
|
}>, z.ZodObject<{
|
|
@@ -107,13 +107,13 @@ declare const registryItemSchema: z.ZodObject<{
|
|
|
107
107
|
type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:composable", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
|
|
108
108
|
target: z.ZodOptional<z.ZodString>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
111
110
|
path?: string;
|
|
111
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
112
112
|
content?: string;
|
|
113
113
|
target?: string;
|
|
114
114
|
}, {
|
|
115
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
116
115
|
path?: string;
|
|
116
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
117
117
|
content?: string;
|
|
118
118
|
target?: string;
|
|
119
119
|
}>]>, "many">>;
|
|
@@ -166,21 +166,21 @@ declare const registryItemSchema: z.ZodObject<{
|
|
|
166
166
|
name?: string;
|
|
167
167
|
title?: string;
|
|
168
168
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
169
|
+
description?: string;
|
|
169
170
|
$schema?: string;
|
|
170
171
|
extends?: string;
|
|
171
172
|
author?: string;
|
|
172
|
-
description?: string;
|
|
173
173
|
dependencies?: string[];
|
|
174
174
|
devDependencies?: string[];
|
|
175
175
|
registryDependencies?: string[];
|
|
176
176
|
files?: ({
|
|
177
|
-
type?: "registry:page" | "registry:file";
|
|
178
177
|
path?: string;
|
|
178
|
+
type?: "registry:page" | "registry:file";
|
|
179
179
|
content?: string;
|
|
180
180
|
target?: string;
|
|
181
181
|
} | {
|
|
182
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
183
182
|
path?: string;
|
|
183
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
184
184
|
content?: string;
|
|
185
185
|
target?: string;
|
|
186
186
|
})[];
|
|
@@ -205,21 +205,21 @@ declare const registryItemSchema: z.ZodObject<{
|
|
|
205
205
|
name?: string;
|
|
206
206
|
title?: string;
|
|
207
207
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
208
|
+
description?: string;
|
|
208
209
|
$schema?: string;
|
|
209
210
|
extends?: string;
|
|
210
211
|
author?: string;
|
|
211
|
-
description?: string;
|
|
212
212
|
dependencies?: string[];
|
|
213
213
|
devDependencies?: string[];
|
|
214
214
|
registryDependencies?: string[];
|
|
215
215
|
files?: ({
|
|
216
|
-
type?: "registry:page" | "registry:file";
|
|
217
216
|
path?: string;
|
|
217
|
+
type?: "registry:page" | "registry:file";
|
|
218
218
|
content?: string;
|
|
219
219
|
target?: string;
|
|
220
220
|
} | {
|
|
221
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
222
221
|
path?: string;
|
|
222
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
223
223
|
content?: string;
|
|
224
224
|
target?: string;
|
|
225
225
|
})[];
|
|
@@ -262,13 +262,13 @@ declare const registrySchema: z.ZodObject<{
|
|
|
262
262
|
type: z.ZodEnum<["registry:file", "registry:page"]>;
|
|
263
263
|
target: z.ZodString;
|
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
|
265
|
-
type?: "registry:page" | "registry:file";
|
|
266
265
|
path?: string;
|
|
266
|
+
type?: "registry:page" | "registry:file";
|
|
267
267
|
content?: string;
|
|
268
268
|
target?: string;
|
|
269
269
|
}, {
|
|
270
|
-
type?: "registry:page" | "registry:file";
|
|
271
270
|
path?: string;
|
|
271
|
+
type?: "registry:page" | "registry:file";
|
|
272
272
|
content?: string;
|
|
273
273
|
target?: string;
|
|
274
274
|
}>, z.ZodObject<{
|
|
@@ -277,13 +277,13 @@ declare const registrySchema: z.ZodObject<{
|
|
|
277
277
|
type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:composable", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
|
|
278
278
|
target: z.ZodOptional<z.ZodString>;
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
281
280
|
path?: string;
|
|
281
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
282
282
|
content?: string;
|
|
283
283
|
target?: string;
|
|
284
284
|
}, {
|
|
285
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
286
285
|
path?: string;
|
|
286
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
287
287
|
content?: string;
|
|
288
288
|
target?: string;
|
|
289
289
|
}>]>, "many">>;
|
|
@@ -336,21 +336,21 @@ declare const registrySchema: z.ZodObject<{
|
|
|
336
336
|
name?: string;
|
|
337
337
|
title?: string;
|
|
338
338
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
339
|
+
description?: string;
|
|
339
340
|
$schema?: string;
|
|
340
341
|
extends?: string;
|
|
341
342
|
author?: string;
|
|
342
|
-
description?: string;
|
|
343
343
|
dependencies?: string[];
|
|
344
344
|
devDependencies?: string[];
|
|
345
345
|
registryDependencies?: string[];
|
|
346
346
|
files?: ({
|
|
347
|
-
type?: "registry:page" | "registry:file";
|
|
348
347
|
path?: string;
|
|
348
|
+
type?: "registry:page" | "registry:file";
|
|
349
349
|
content?: string;
|
|
350
350
|
target?: string;
|
|
351
351
|
} | {
|
|
352
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
353
352
|
path?: string;
|
|
353
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
354
354
|
content?: string;
|
|
355
355
|
target?: string;
|
|
356
356
|
})[];
|
|
@@ -375,21 +375,21 @@ declare const registrySchema: z.ZodObject<{
|
|
|
375
375
|
name?: string;
|
|
376
376
|
title?: string;
|
|
377
377
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
378
|
+
description?: string;
|
|
378
379
|
$schema?: string;
|
|
379
380
|
extends?: string;
|
|
380
381
|
author?: string;
|
|
381
|
-
description?: string;
|
|
382
382
|
dependencies?: string[];
|
|
383
383
|
devDependencies?: string[];
|
|
384
384
|
registryDependencies?: string[];
|
|
385
385
|
files?: ({
|
|
386
|
-
type?: "registry:page" | "registry:file";
|
|
387
386
|
path?: string;
|
|
387
|
+
type?: "registry:page" | "registry:file";
|
|
388
388
|
content?: string;
|
|
389
389
|
target?: string;
|
|
390
390
|
} | {
|
|
391
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
392
391
|
path?: string;
|
|
392
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
393
393
|
content?: string;
|
|
394
394
|
target?: string;
|
|
395
395
|
})[];
|
|
@@ -413,26 +413,25 @@ declare const registrySchema: z.ZodObject<{
|
|
|
413
413
|
}>, "many">;
|
|
414
414
|
}, "strip", z.ZodTypeAny, {
|
|
415
415
|
name?: string;
|
|
416
|
-
homepage?: string;
|
|
417
416
|
items?: {
|
|
418
417
|
name?: string;
|
|
419
418
|
title?: string;
|
|
420
419
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
420
|
+
description?: string;
|
|
421
421
|
$schema?: string;
|
|
422
422
|
extends?: string;
|
|
423
423
|
author?: string;
|
|
424
|
-
description?: string;
|
|
425
424
|
dependencies?: string[];
|
|
426
425
|
devDependencies?: string[];
|
|
427
426
|
registryDependencies?: string[];
|
|
428
427
|
files?: ({
|
|
429
|
-
type?: "registry:page" | "registry:file";
|
|
430
428
|
path?: string;
|
|
429
|
+
type?: "registry:page" | "registry:file";
|
|
431
430
|
content?: string;
|
|
432
431
|
target?: string;
|
|
433
432
|
} | {
|
|
434
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
435
433
|
path?: string;
|
|
434
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
436
435
|
content?: string;
|
|
437
436
|
target?: string;
|
|
438
437
|
})[];
|
|
@@ -454,28 +453,28 @@ declare const registrySchema: z.ZodObject<{
|
|
|
454
453
|
docs?: string;
|
|
455
454
|
categories?: string[];
|
|
456
455
|
}[];
|
|
456
|
+
homepage?: string;
|
|
457
457
|
}, {
|
|
458
458
|
name?: string;
|
|
459
|
-
homepage?: string;
|
|
460
459
|
items?: {
|
|
461
460
|
name?: string;
|
|
462
461
|
title?: string;
|
|
463
462
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
463
|
+
description?: string;
|
|
464
464
|
$schema?: string;
|
|
465
465
|
extends?: string;
|
|
466
466
|
author?: string;
|
|
467
|
-
description?: string;
|
|
468
467
|
dependencies?: string[];
|
|
469
468
|
devDependencies?: string[];
|
|
470
469
|
registryDependencies?: string[];
|
|
471
470
|
files?: ({
|
|
472
|
-
type?: "registry:page" | "registry:file";
|
|
473
471
|
path?: string;
|
|
472
|
+
type?: "registry:page" | "registry:file";
|
|
474
473
|
content?: string;
|
|
475
474
|
target?: string;
|
|
476
475
|
} | {
|
|
477
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
478
476
|
path?: string;
|
|
477
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
479
478
|
content?: string;
|
|
480
479
|
target?: string;
|
|
481
480
|
})[];
|
|
@@ -497,6 +496,7 @@ declare const registrySchema: z.ZodObject<{
|
|
|
497
496
|
docs?: string;
|
|
498
497
|
categories?: string[];
|
|
499
498
|
}[];
|
|
499
|
+
homepage?: string;
|
|
500
500
|
}>;
|
|
501
501
|
type Registry = z.infer<typeof registrySchema>;
|
|
502
502
|
declare const registryIndexSchema: z.ZodArray<z.ZodObject<{
|
|
@@ -516,13 +516,13 @@ declare const registryIndexSchema: z.ZodArray<z.ZodObject<{
|
|
|
516
516
|
type: z.ZodEnum<["registry:file", "registry:page"]>;
|
|
517
517
|
target: z.ZodString;
|
|
518
518
|
}, "strip", z.ZodTypeAny, {
|
|
519
|
-
type?: "registry:page" | "registry:file";
|
|
520
519
|
path?: string;
|
|
520
|
+
type?: "registry:page" | "registry:file";
|
|
521
521
|
content?: string;
|
|
522
522
|
target?: string;
|
|
523
523
|
}, {
|
|
524
|
-
type?: "registry:page" | "registry:file";
|
|
525
524
|
path?: string;
|
|
525
|
+
type?: "registry:page" | "registry:file";
|
|
526
526
|
content?: string;
|
|
527
527
|
target?: string;
|
|
528
528
|
}>, z.ZodObject<{
|
|
@@ -531,13 +531,13 @@ declare const registryIndexSchema: z.ZodArray<z.ZodObject<{
|
|
|
531
531
|
type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:composable", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
|
|
532
532
|
target: z.ZodOptional<z.ZodString>;
|
|
533
533
|
}, "strip", z.ZodTypeAny, {
|
|
534
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
535
534
|
path?: string;
|
|
535
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
536
536
|
content?: string;
|
|
537
537
|
target?: string;
|
|
538
538
|
}, {
|
|
539
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
540
539
|
path?: string;
|
|
540
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
541
541
|
content?: string;
|
|
542
542
|
target?: string;
|
|
543
543
|
}>]>, "many">>;
|
|
@@ -590,21 +590,21 @@ declare const registryIndexSchema: z.ZodArray<z.ZodObject<{
|
|
|
590
590
|
name?: string;
|
|
591
591
|
title?: string;
|
|
592
592
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
593
|
+
description?: string;
|
|
593
594
|
$schema?: string;
|
|
594
595
|
extends?: string;
|
|
595
596
|
author?: string;
|
|
596
|
-
description?: string;
|
|
597
597
|
dependencies?: string[];
|
|
598
598
|
devDependencies?: string[];
|
|
599
599
|
registryDependencies?: string[];
|
|
600
600
|
files?: ({
|
|
601
|
-
type?: "registry:page" | "registry:file";
|
|
602
601
|
path?: string;
|
|
602
|
+
type?: "registry:page" | "registry:file";
|
|
603
603
|
content?: string;
|
|
604
604
|
target?: string;
|
|
605
605
|
} | {
|
|
606
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
607
606
|
path?: string;
|
|
607
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
608
608
|
content?: string;
|
|
609
609
|
target?: string;
|
|
610
610
|
})[];
|
|
@@ -629,21 +629,21 @@ declare const registryIndexSchema: z.ZodArray<z.ZodObject<{
|
|
|
629
629
|
name?: string;
|
|
630
630
|
title?: string;
|
|
631
631
|
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:page" | "registry:file" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
632
|
+
description?: string;
|
|
632
633
|
$schema?: string;
|
|
633
634
|
extends?: string;
|
|
634
635
|
author?: string;
|
|
635
|
-
description?: string;
|
|
636
636
|
dependencies?: string[];
|
|
637
637
|
devDependencies?: string[];
|
|
638
638
|
registryDependencies?: string[];
|
|
639
639
|
files?: ({
|
|
640
|
-
type?: "registry:page" | "registry:file";
|
|
641
640
|
path?: string;
|
|
641
|
+
type?: "registry:page" | "registry:file";
|
|
642
642
|
content?: string;
|
|
643
643
|
target?: string;
|
|
644
644
|
} | {
|
|
645
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
646
645
|
path?: string;
|
|
646
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
647
647
|
content?: string;
|
|
648
648
|
target?: string;
|
|
649
649
|
})[];
|
|
@@ -767,13 +767,13 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
|
|
|
767
767
|
type: z.ZodEnum<["registry:file", "registry:page"]>;
|
|
768
768
|
target: z.ZodString;
|
|
769
769
|
}, "strip", z.ZodTypeAny, {
|
|
770
|
-
type?: "registry:page" | "registry:file";
|
|
771
770
|
path?: string;
|
|
771
|
+
type?: "registry:page" | "registry:file";
|
|
772
772
|
content?: string;
|
|
773
773
|
target?: string;
|
|
774
774
|
}, {
|
|
775
|
-
type?: "registry:page" | "registry:file";
|
|
776
775
|
path?: string;
|
|
776
|
+
type?: "registry:page" | "registry:file";
|
|
777
777
|
content?: string;
|
|
778
778
|
target?: string;
|
|
779
779
|
}>, z.ZodObject<{
|
|
@@ -782,13 +782,13 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
|
|
|
782
782
|
type: z.ZodEnum<["registry:lib", "registry:block", "registry:component", "registry:ui", "registry:hook", "registry:composable", "registry:theme", "registry:style", "registry:item", "registry:example", "registry:internal"]>;
|
|
783
783
|
target: z.ZodOptional<z.ZodString>;
|
|
784
784
|
}, "strip", z.ZodTypeAny, {
|
|
785
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
786
785
|
path?: string;
|
|
786
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
787
787
|
content?: string;
|
|
788
788
|
target?: string;
|
|
789
789
|
}, {
|
|
790
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
791
790
|
path?: string;
|
|
791
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
792
792
|
content?: string;
|
|
793
793
|
target?: string;
|
|
794
794
|
}>]>, "many">>;
|
|
@@ -841,13 +841,13 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
|
|
|
841
841
|
dependencies?: string[];
|
|
842
842
|
devDependencies?: string[];
|
|
843
843
|
files?: ({
|
|
844
|
-
type?: "registry:page" | "registry:file";
|
|
845
844
|
path?: string;
|
|
845
|
+
type?: "registry:page" | "registry:file";
|
|
846
846
|
content?: string;
|
|
847
847
|
target?: string;
|
|
848
848
|
} | {
|
|
849
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
850
849
|
path?: string;
|
|
850
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
851
851
|
content?: string;
|
|
852
852
|
target?: string;
|
|
853
853
|
})[];
|
|
@@ -870,13 +870,13 @@ declare const registryResolvedItemsTreeSchema: z.ZodObject<Pick<{
|
|
|
870
870
|
dependencies?: string[];
|
|
871
871
|
devDependencies?: string[];
|
|
872
872
|
files?: ({
|
|
873
|
-
type?: "registry:page" | "registry:file";
|
|
874
873
|
path?: string;
|
|
874
|
+
type?: "registry:page" | "registry:file";
|
|
875
875
|
content?: string;
|
|
876
876
|
target?: string;
|
|
877
877
|
} | {
|
|
878
|
-
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
879
878
|
path?: string;
|
|
879
|
+
type?: "registry:lib" | "registry:block" | "registry:component" | "registry:ui" | "registry:hook" | "registry:composable" | "registry:theme" | "registry:style" | "registry:item" | "registry:example" | "registry:internal";
|
|
880
880
|
content?: string;
|
|
881
881
|
target?: string;
|
|
882
882
|
})[];
|
|
@@ -1446,6 +1446,12 @@ declare const searchResultsSchema: z.ZodObject<{
|
|
|
1446
1446
|
addCommandArgument?: string;
|
|
1447
1447
|
}>, "many">;
|
|
1448
1448
|
}, "strip", z.ZodTypeAny, {
|
|
1449
|
+
pagination?: {
|
|
1450
|
+
total?: number;
|
|
1451
|
+
offset?: number;
|
|
1452
|
+
limit?: number;
|
|
1453
|
+
hasMore?: boolean;
|
|
1454
|
+
};
|
|
1449
1455
|
items?: {
|
|
1450
1456
|
name?: string;
|
|
1451
1457
|
type?: string;
|
|
@@ -1453,13 +1459,13 @@ declare const searchResultsSchema: z.ZodObject<{
|
|
|
1453
1459
|
registry?: string;
|
|
1454
1460
|
addCommandArgument?: string;
|
|
1455
1461
|
}[];
|
|
1462
|
+
}, {
|
|
1456
1463
|
pagination?: {
|
|
1457
1464
|
total?: number;
|
|
1458
1465
|
offset?: number;
|
|
1459
1466
|
limit?: number;
|
|
1460
1467
|
hasMore?: boolean;
|
|
1461
1468
|
};
|
|
1462
|
-
}, {
|
|
1463
1469
|
items?: {
|
|
1464
1470
|
name?: string;
|
|
1465
1471
|
type?: string;
|
|
@@ -1467,14 +1473,8 @@ declare const searchResultsSchema: z.ZodObject<{
|
|
|
1467
1473
|
registry?: string;
|
|
1468
1474
|
addCommandArgument?: string;
|
|
1469
1475
|
}[];
|
|
1470
|
-
pagination?: {
|
|
1471
|
-
total?: number;
|
|
1472
|
-
offset?: number;
|
|
1473
|
-
limit?: number;
|
|
1474
|
-
hasMore?: boolean;
|
|
1475
|
-
};
|
|
1476
1476
|
}>;
|
|
1477
1477
|
declare const registriesIndexSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1478
1478
|
//#endregion
|
|
1479
1479
|
export { workspaceConfigSchema as C, stylesSchema as S, registryItemTypeSchema as _, rawConfigSchema as a, searchResultItemSchema as b, registryConfigItemSchema as c, registryItemCssSchema as d, registryItemCssVarsSchema as f, registryItemTailwindSchema as g, registryItemSchema as h, iconsSchema as i, registryConfigSchema as l, registryItemFileSchema as m, RegistryItem as n, registriesIndexSchema as o, registryItemEnvVarsSchema as p, configSchema as r, registryBaseColorSchema as s, Registry as t, registryIndexSchema as u, registryResolvedItemsTreeSchema as v, searchResultsSchema as x, registrySchema as y };
|
|
1480
|
-
//# sourceMappingURL=index-
|
|
1480
|
+
//# sourceMappingURL=index-Cd5RBhtD.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-Cd5RBhtD.d.ts","names":[],"sources":["../src/registry/schema.ts"],"sourcesContent":[],"mappings":"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"}
|