@mintlify/validation 0.1.376 → 0.1.378
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 +490 -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/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +48 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +70 -0
- package/dist/mint-config/validateConfig.d.ts +154 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -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";
|
|
@@ -341,6 +374,7 @@ export declare const standardConfigSchema: {
|
|
|
341
374
|
library?: "fontawesome" | "lucide" | undefined;
|
|
342
375
|
}>]>>;
|
|
343
376
|
group: import("zod").ZodString;
|
|
377
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
344
378
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
345
379
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
346
380
|
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
@@ -367,6 +401,7 @@ export declare const standardConfigSchema: {
|
|
|
367
401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
368
402
|
library?: "fontawesome" | "lucide" | undefined;
|
|
369
403
|
} | undefined;
|
|
404
|
+
tag?: string | undefined;
|
|
370
405
|
hidden?: boolean | undefined;
|
|
371
406
|
root?: string | undefined;
|
|
372
407
|
}, {
|
|
@@ -383,6 +418,7 @@ export declare const standardConfigSchema: {
|
|
|
383
418
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
384
419
|
library?: "fontawesome" | "lucide" | undefined;
|
|
385
420
|
} | undefined;
|
|
421
|
+
tag?: string | undefined;
|
|
386
422
|
hidden?: boolean | undefined;
|
|
387
423
|
root?: string | undefined;
|
|
388
424
|
}>, import("zod").ZodObject<{
|
|
@@ -400,6 +436,7 @@ export declare const standardConfigSchema: {
|
|
|
400
436
|
library?: "fontawesome" | "lucide" | undefined;
|
|
401
437
|
}>]>>;
|
|
402
438
|
group: import("zod").ZodString;
|
|
439
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
403
440
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
404
441
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
405
442
|
asyncapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">, import("zod").ZodObject<{
|
|
@@ -426,6 +463,7 @@ export declare const standardConfigSchema: {
|
|
|
426
463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
427
464
|
library?: "fontawesome" | "lucide" | undefined;
|
|
428
465
|
} | undefined;
|
|
466
|
+
tag?: string | undefined;
|
|
429
467
|
hidden?: boolean | undefined;
|
|
430
468
|
root?: string | undefined;
|
|
431
469
|
}, {
|
|
@@ -442,6 +480,7 @@ export declare const standardConfigSchema: {
|
|
|
442
480
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
443
481
|
library?: "fontawesome" | "lucide" | undefined;
|
|
444
482
|
} | undefined;
|
|
483
|
+
tag?: string | undefined;
|
|
445
484
|
hidden?: boolean | undefined;
|
|
446
485
|
root?: string | undefined;
|
|
447
486
|
}>, import("zod").ZodObject<{
|
|
@@ -459,6 +498,7 @@ export declare const standardConfigSchema: {
|
|
|
459
498
|
library?: "fontawesome" | "lucide" | undefined;
|
|
460
499
|
}>]>>;
|
|
461
500
|
group: import("zod").ZodString;
|
|
501
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
462
502
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
463
503
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
464
504
|
pages: import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>;
|
|
@@ -470,6 +510,7 @@ export declare const standardConfigSchema: {
|
|
|
470
510
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
471
511
|
library?: "fontawesome" | "lucide" | undefined;
|
|
472
512
|
} | undefined;
|
|
513
|
+
tag?: string | undefined;
|
|
473
514
|
hidden?: boolean | undefined;
|
|
474
515
|
root?: string | undefined;
|
|
475
516
|
}, {
|
|
@@ -480,6 +521,7 @@ export declare const standardConfigSchema: {
|
|
|
480
521
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
481
522
|
library?: "fontawesome" | "lucide" | undefined;
|
|
482
523
|
} | undefined;
|
|
524
|
+
tag?: string | undefined;
|
|
483
525
|
hidden?: boolean | undefined;
|
|
484
526
|
root?: string | undefined;
|
|
485
527
|
}>]>, "many">;
|
|
@@ -498,6 +540,7 @@ export declare const standardConfigSchema: {
|
|
|
498
540
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
499
541
|
library?: "fontawesome" | "lucide" | undefined;
|
|
500
542
|
} | undefined;
|
|
543
|
+
tag?: string | undefined;
|
|
501
544
|
hidden?: boolean | undefined;
|
|
502
545
|
root?: string | undefined;
|
|
503
546
|
} | {
|
|
@@ -514,6 +557,7 @@ export declare const standardConfigSchema: {
|
|
|
514
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
515
558
|
library?: "fontawesome" | "lucide" | undefined;
|
|
516
559
|
} | undefined;
|
|
560
|
+
tag?: string | undefined;
|
|
517
561
|
hidden?: boolean | undefined;
|
|
518
562
|
root?: string | undefined;
|
|
519
563
|
} | {
|
|
@@ -524,6 +568,7 @@ export declare const standardConfigSchema: {
|
|
|
524
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
525
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
526
570
|
} | undefined;
|
|
571
|
+
tag?: string | undefined;
|
|
527
572
|
hidden?: boolean | undefined;
|
|
528
573
|
root?: string | undefined;
|
|
529
574
|
})[];
|
|
@@ -543,6 +588,7 @@ export declare const standardConfigSchema: {
|
|
|
543
588
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
544
589
|
library?: "fontawesome" | "lucide" | undefined;
|
|
545
590
|
} | undefined;
|
|
591
|
+
tag?: string | undefined;
|
|
546
592
|
hidden?: boolean | undefined;
|
|
547
593
|
root?: string | undefined;
|
|
548
594
|
} | {
|
|
@@ -559,6 +605,7 @@ export declare const standardConfigSchema: {
|
|
|
559
605
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
560
606
|
library?: "fontawesome" | "lucide" | undefined;
|
|
561
607
|
} | undefined;
|
|
608
|
+
tag?: string | undefined;
|
|
562
609
|
hidden?: boolean | undefined;
|
|
563
610
|
root?: string | undefined;
|
|
564
611
|
} | {
|
|
@@ -569,6 +616,7 @@ export declare const standardConfigSchema: {
|
|
|
569
616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
570
617
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
618
|
} | undefined;
|
|
619
|
+
tag?: string | undefined;
|
|
572
620
|
hidden?: boolean | undefined;
|
|
573
621
|
root?: string | undefined;
|
|
574
622
|
})[];
|
|
@@ -223,13 +223,36 @@ export declare const willowConfigSchema: 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 willowConfigSchema: 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 willowConfigSchema: 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";
|
|
@@ -342,6 +375,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
342
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
343
376
|
}>]>>;
|
|
344
377
|
group: z.ZodString;
|
|
378
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
345
379
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
346
380
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
347
381
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -368,6 +402,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
368
402
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
369
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
370
404
|
} | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
371
406
|
hidden?: boolean | undefined;
|
|
372
407
|
root?: string | undefined;
|
|
373
408
|
}, {
|
|
@@ -384,6 +419,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
384
419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
385
420
|
library?: "fontawesome" | "lucide" | undefined;
|
|
386
421
|
} | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
387
423
|
hidden?: boolean | undefined;
|
|
388
424
|
root?: string | undefined;
|
|
389
425
|
}>, z.ZodObject<{
|
|
@@ -401,6 +437,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
401
437
|
library?: "fontawesome" | "lucide" | undefined;
|
|
402
438
|
}>]>>;
|
|
403
439
|
group: z.ZodString;
|
|
440
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
404
441
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
405
442
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
406
443
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -427,6 +464,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
427
464
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
428
465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
429
466
|
} | undefined;
|
|
467
|
+
tag?: string | undefined;
|
|
430
468
|
hidden?: boolean | undefined;
|
|
431
469
|
root?: string | undefined;
|
|
432
470
|
}, {
|
|
@@ -443,6 +481,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
443
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
444
482
|
library?: "fontawesome" | "lucide" | undefined;
|
|
445
483
|
} | undefined;
|
|
484
|
+
tag?: string | undefined;
|
|
446
485
|
hidden?: boolean | undefined;
|
|
447
486
|
root?: string | undefined;
|
|
448
487
|
}>, z.ZodObject<{
|
|
@@ -460,6 +499,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
460
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
461
500
|
}>]>>;
|
|
462
501
|
group: z.ZodString;
|
|
502
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
463
503
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
464
504
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
465
505
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -471,6 +511,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
471
511
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
472
512
|
library?: "fontawesome" | "lucide" | undefined;
|
|
473
513
|
} | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
474
515
|
hidden?: boolean | undefined;
|
|
475
516
|
root?: string | undefined;
|
|
476
517
|
}, {
|
|
@@ -481,6 +522,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
481
522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
524
|
} | undefined;
|
|
525
|
+
tag?: string | undefined;
|
|
484
526
|
hidden?: boolean | undefined;
|
|
485
527
|
root?: string | undefined;
|
|
486
528
|
}>]>, "many">;
|
|
@@ -499,6 +541,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
499
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
500
542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
501
543
|
} | undefined;
|
|
544
|
+
tag?: string | undefined;
|
|
502
545
|
hidden?: boolean | undefined;
|
|
503
546
|
root?: string | undefined;
|
|
504
547
|
} | {
|
|
@@ -515,6 +558,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
515
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
516
559
|
library?: "fontawesome" | "lucide" | undefined;
|
|
517
560
|
} | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
518
562
|
hidden?: boolean | undefined;
|
|
519
563
|
root?: string | undefined;
|
|
520
564
|
} | {
|
|
@@ -525,6 +569,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
525
569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
527
571
|
} | undefined;
|
|
572
|
+
tag?: string | undefined;
|
|
528
573
|
hidden?: boolean | undefined;
|
|
529
574
|
root?: string | undefined;
|
|
530
575
|
})[];
|
|
@@ -544,6 +589,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
544
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
545
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
546
591
|
} | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
547
593
|
hidden?: boolean | undefined;
|
|
548
594
|
root?: string | undefined;
|
|
549
595
|
} | {
|
|
@@ -560,6 +606,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
560
606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
561
607
|
library?: "fontawesome" | "lucide" | undefined;
|
|
562
608
|
} | undefined;
|
|
609
|
+
tag?: string | undefined;
|
|
563
610
|
hidden?: boolean | undefined;
|
|
564
611
|
root?: string | undefined;
|
|
565
612
|
} | {
|
|
@@ -570,6 +617,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
570
617
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
571
618
|
library?: "fontawesome" | "lucide" | undefined;
|
|
572
619
|
} | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
573
621
|
hidden?: boolean | undefined;
|
|
574
622
|
root?: string | undefined;
|
|
575
623
|
})[];
|
|
@@ -1135,6 +1183,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1135
1183
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1136
1184
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1137
1185
|
} | undefined;
|
|
1186
|
+
tag?: string | undefined;
|
|
1138
1187
|
hidden?: boolean | undefined;
|
|
1139
1188
|
root?: string | undefined;
|
|
1140
1189
|
} | {
|
|
@@ -1151,6 +1200,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1151
1200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1152
1201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1153
1202
|
} | undefined;
|
|
1203
|
+
tag?: string | undefined;
|
|
1154
1204
|
hidden?: boolean | undefined;
|
|
1155
1205
|
root?: string | undefined;
|
|
1156
1206
|
} | {
|
|
@@ -1161,6 +1211,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1161
1211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1162
1212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1163
1213
|
} | undefined;
|
|
1214
|
+
tag?: string | undefined;
|
|
1164
1215
|
hidden?: boolean | undefined;
|
|
1165
1216
|
root?: string | undefined;
|
|
1166
1217
|
})[];
|
|
@@ -1198,6 +1249,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1198
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1199
1250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1200
1251
|
} | undefined;
|
|
1252
|
+
tag?: string | undefined;
|
|
1201
1253
|
hidden?: boolean | undefined;
|
|
1202
1254
|
root?: string | undefined;
|
|
1203
1255
|
} | {
|
|
@@ -1214,6 +1266,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1214
1266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1215
1267
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1216
1268
|
} | undefined;
|
|
1269
|
+
tag?: string | undefined;
|
|
1217
1270
|
hidden?: boolean | undefined;
|
|
1218
1271
|
root?: string | undefined;
|
|
1219
1272
|
} | {
|
|
@@ -1224,6 +1277,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1224
1277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1225
1278
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1226
1279
|
} | undefined;
|
|
1280
|
+
tag?: string | undefined;
|
|
1227
1281
|
hidden?: boolean | undefined;
|
|
1228
1282
|
root?: string | undefined;
|
|
1229
1283
|
})[];
|
|
@@ -1289,6 +1343,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1289
1343
|
links?: {
|
|
1290
1344
|
href: string;
|
|
1291
1345
|
label: string;
|
|
1346
|
+
icon?: string | {
|
|
1347
|
+
name: string;
|
|
1348
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1349
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1350
|
+
} | undefined;
|
|
1292
1351
|
}[] | undefined;
|
|
1293
1352
|
primary?: {
|
|
1294
1353
|
type: "button";
|
|
@@ -1460,6 +1519,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1460
1519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1461
1520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1462
1521
|
} | undefined;
|
|
1522
|
+
tag?: string | undefined;
|
|
1463
1523
|
hidden?: boolean | undefined;
|
|
1464
1524
|
root?: string | undefined;
|
|
1465
1525
|
} | {
|
|
@@ -1476,6 +1536,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1476
1536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1477
1537
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1478
1538
|
} | undefined;
|
|
1539
|
+
tag?: string | undefined;
|
|
1479
1540
|
hidden?: boolean | undefined;
|
|
1480
1541
|
root?: string | undefined;
|
|
1481
1542
|
} | {
|
|
@@ -1486,6 +1547,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1486
1547
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1487
1548
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1488
1549
|
} | undefined;
|
|
1550
|
+
tag?: string | undefined;
|
|
1489
1551
|
hidden?: boolean | undefined;
|
|
1490
1552
|
root?: string | undefined;
|
|
1491
1553
|
})[];
|
|
@@ -1523,6 +1585,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1523
1585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1524
1586
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1525
1587
|
} | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1526
1589
|
hidden?: boolean | undefined;
|
|
1527
1590
|
root?: string | undefined;
|
|
1528
1591
|
} | {
|
|
@@ -1539,6 +1602,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1539
1602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1540
1603
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1541
1604
|
} | undefined;
|
|
1605
|
+
tag?: string | undefined;
|
|
1542
1606
|
hidden?: boolean | undefined;
|
|
1543
1607
|
root?: string | undefined;
|
|
1544
1608
|
} | {
|
|
@@ -1549,6 +1613,7 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1549
1613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1550
1614
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1551
1615
|
} | undefined;
|
|
1616
|
+
tag?: string | undefined;
|
|
1552
1617
|
hidden?: boolean | undefined;
|
|
1553
1618
|
root?: string | undefined;
|
|
1554
1619
|
})[];
|
|
@@ -1615,6 +1680,11 @@ export declare const willowConfigSchema: z.ZodObject<{
|
|
|
1615
1680
|
links?: {
|
|
1616
1681
|
href: string;
|
|
1617
1682
|
label: string;
|
|
1683
|
+
icon?: string | {
|
|
1684
|
+
name: string;
|
|
1685
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1686
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1687
|
+
} | undefined;
|
|
1618
1688
|
}[] | undefined;
|
|
1619
1689
|
primary?: {
|
|
1620
1690
|
type: "button";
|