@mintlify/validation 0.1.375 → 0.1.377
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/mint-config/schemas/v2/index.d.ts +301 -0
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +33 -0
- package/dist/mint-config/schemas/v2/properties/navbar.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +43 -0
- package/dist/mint-config/validateConfig.d.ts +70 -0
- package/dist/openapi/IncrementalEvaluator.js +6 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { hrefSchema } from './reusable/href.js';
|
|
3
|
+
import { iconSchema } from './reusable/icon.js';
|
|
3
4
|
const linkSchema = z.object({
|
|
4
5
|
label: z.string(),
|
|
6
|
+
icon: iconSchema.optional(),
|
|
5
7
|
href: hrefSchema,
|
|
6
8
|
});
|
|
7
9
|
const buttonSchema = z.object({
|
|
@@ -223,13 +223,36 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -1289,6 +1322,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1289
1322
|
links?: {
|
|
1290
1323
|
href: string;
|
|
1291
1324
|
label: string;
|
|
1325
|
+
icon?: string | {
|
|
1326
|
+
name: string;
|
|
1327
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1328
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1329
|
+
} | undefined;
|
|
1292
1330
|
}[] | undefined;
|
|
1293
1331
|
primary?: {
|
|
1294
1332
|
type: "button";
|
|
@@ -1615,6 +1653,11 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1615
1653
|
links?: {
|
|
1616
1654
|
href: string;
|
|
1617
1655
|
label: string;
|
|
1656
|
+
icon?: string | {
|
|
1657
|
+
name: string;
|
|
1658
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1659
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1660
|
+
} | undefined;
|
|
1618
1661
|
}[] | undefined;
|
|
1619
1662
|
primary?: {
|
|
1620
1663
|
type: "button";
|
|
@@ -222,13 +222,36 @@ export declare const standardConfigSchema: {
|
|
|
222
222
|
navbar: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
223
223
|
links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
224
224
|
label: import("zod").ZodString;
|
|
225
|
+
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
226
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
227
|
+
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
228
|
+
library: import("zod").ZodOptional<import("zod").ZodEnum<["fontawesome", "lucide"]>>;
|
|
229
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
230
|
+
name: string;
|
|
231
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
232
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
233
|
+
}, {
|
|
234
|
+
name: string;
|
|
235
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
236
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
237
|
+
}>]>>;
|
|
225
238
|
href: import("zod").ZodString;
|
|
226
239
|
}, "strip", import("zod").ZodTypeAny, {
|
|
227
240
|
href: string;
|
|
228
241
|
label: string;
|
|
242
|
+
icon?: string | {
|
|
243
|
+
name: string;
|
|
244
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
245
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
246
|
+
} | undefined;
|
|
229
247
|
}, {
|
|
230
248
|
href: string;
|
|
231
249
|
label: string;
|
|
250
|
+
icon?: string | {
|
|
251
|
+
name: string;
|
|
252
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
253
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
254
|
+
} | undefined;
|
|
232
255
|
}>, "many">>;
|
|
233
256
|
primary: import("zod").ZodOptional<import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
|
|
234
257
|
type: import("zod").ZodLiteral<"button">;
|
|
@@ -256,6 +279,11 @@ export declare const standardConfigSchema: {
|
|
|
256
279
|
links?: {
|
|
257
280
|
href: string;
|
|
258
281
|
label: string;
|
|
282
|
+
icon?: string | {
|
|
283
|
+
name: string;
|
|
284
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
285
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
286
|
+
} | undefined;
|
|
259
287
|
}[] | undefined;
|
|
260
288
|
primary?: {
|
|
261
289
|
type: "button";
|
|
@@ -269,6 +297,11 @@ export declare const standardConfigSchema: {
|
|
|
269
297
|
links?: {
|
|
270
298
|
href: string;
|
|
271
299
|
label: string;
|
|
300
|
+
icon?: string | {
|
|
301
|
+
name: string;
|
|
302
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
303
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
304
|
+
} | undefined;
|
|
272
305
|
}[] | undefined;
|
|
273
306
|
primary?: {
|
|
274
307
|
type: "button";
|