@mintlify/validation 0.1.377 → 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 +189 -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 +27 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +27 -0
- package/dist/mint-config/validateConfig.d.ts +84 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -375,6 +375,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
378
379
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
379
380
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
380
381
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -401,6 +402,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
401
402
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
402
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
403
404
|
} | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
404
406
|
hidden?: boolean | undefined;
|
|
405
407
|
root?: string | undefined;
|
|
406
408
|
}, {
|
|
@@ -417,6 +419,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
417
419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
418
420
|
library?: "fontawesome" | "lucide" | undefined;
|
|
419
421
|
} | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
420
423
|
hidden?: boolean | undefined;
|
|
421
424
|
root?: string | undefined;
|
|
422
425
|
}>, z.ZodObject<{
|
|
@@ -434,6 +437,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
434
437
|
library?: "fontawesome" | "lucide" | undefined;
|
|
435
438
|
}>]>>;
|
|
436
439
|
group: z.ZodString;
|
|
440
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
437
441
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
438
442
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
439
443
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -460,6 +464,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
460
464
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
461
465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
462
466
|
} | undefined;
|
|
467
|
+
tag?: string | undefined;
|
|
463
468
|
hidden?: boolean | undefined;
|
|
464
469
|
root?: string | undefined;
|
|
465
470
|
}, {
|
|
@@ -476,6 +481,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
476
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
477
482
|
library?: "fontawesome" | "lucide" | undefined;
|
|
478
483
|
} | undefined;
|
|
484
|
+
tag?: string | undefined;
|
|
479
485
|
hidden?: boolean | undefined;
|
|
480
486
|
root?: string | undefined;
|
|
481
487
|
}>, z.ZodObject<{
|
|
@@ -493,6 +499,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
493
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
494
500
|
}>]>>;
|
|
495
501
|
group: z.ZodString;
|
|
502
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
496
503
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
497
504
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
498
505
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -504,6 +511,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
504
511
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
505
512
|
library?: "fontawesome" | "lucide" | undefined;
|
|
506
513
|
} | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
507
515
|
hidden?: boolean | undefined;
|
|
508
516
|
root?: string | undefined;
|
|
509
517
|
}, {
|
|
@@ -514,6 +522,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
514
522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
515
523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
516
524
|
} | undefined;
|
|
525
|
+
tag?: string | undefined;
|
|
517
526
|
hidden?: boolean | undefined;
|
|
518
527
|
root?: string | undefined;
|
|
519
528
|
}>]>, "many">;
|
|
@@ -532,6 +541,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
532
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
533
542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
534
543
|
} | undefined;
|
|
544
|
+
tag?: string | undefined;
|
|
535
545
|
hidden?: boolean | undefined;
|
|
536
546
|
root?: string | undefined;
|
|
537
547
|
} | {
|
|
@@ -548,6 +558,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
548
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
549
559
|
library?: "fontawesome" | "lucide" | undefined;
|
|
550
560
|
} | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
551
562
|
hidden?: boolean | undefined;
|
|
552
563
|
root?: string | undefined;
|
|
553
564
|
} | {
|
|
@@ -558,6 +569,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
558
569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
571
|
} | undefined;
|
|
572
|
+
tag?: string | undefined;
|
|
561
573
|
hidden?: boolean | undefined;
|
|
562
574
|
root?: string | undefined;
|
|
563
575
|
})[];
|
|
@@ -577,6 +589,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
577
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
578
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
579
591
|
} | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
580
593
|
hidden?: boolean | undefined;
|
|
581
594
|
root?: string | undefined;
|
|
582
595
|
} | {
|
|
@@ -593,6 +606,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
593
606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
594
607
|
library?: "fontawesome" | "lucide" | undefined;
|
|
595
608
|
} | undefined;
|
|
609
|
+
tag?: string | undefined;
|
|
596
610
|
hidden?: boolean | undefined;
|
|
597
611
|
root?: string | undefined;
|
|
598
612
|
} | {
|
|
@@ -603,6 +617,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
603
617
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
604
618
|
library?: "fontawesome" | "lucide" | undefined;
|
|
605
619
|
} | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
606
621
|
hidden?: boolean | undefined;
|
|
607
622
|
root?: string | undefined;
|
|
608
623
|
})[];
|
|
@@ -1168,6 +1183,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1168
1183
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1169
1184
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1170
1185
|
} | undefined;
|
|
1186
|
+
tag?: string | undefined;
|
|
1171
1187
|
hidden?: boolean | undefined;
|
|
1172
1188
|
root?: string | undefined;
|
|
1173
1189
|
} | {
|
|
@@ -1184,6 +1200,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1184
1200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1185
1201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1186
1202
|
} | undefined;
|
|
1203
|
+
tag?: string | undefined;
|
|
1187
1204
|
hidden?: boolean | undefined;
|
|
1188
1205
|
root?: string | undefined;
|
|
1189
1206
|
} | {
|
|
@@ -1194,6 +1211,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1194
1211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1195
1212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1196
1213
|
} | undefined;
|
|
1214
|
+
tag?: string | undefined;
|
|
1197
1215
|
hidden?: boolean | undefined;
|
|
1198
1216
|
root?: string | undefined;
|
|
1199
1217
|
})[];
|
|
@@ -1231,6 +1249,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1231
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1232
1250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1233
1251
|
} | undefined;
|
|
1252
|
+
tag?: string | undefined;
|
|
1234
1253
|
hidden?: boolean | undefined;
|
|
1235
1254
|
root?: string | undefined;
|
|
1236
1255
|
} | {
|
|
@@ -1247,6 +1266,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1247
1266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1248
1267
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1249
1268
|
} | undefined;
|
|
1269
|
+
tag?: string | undefined;
|
|
1250
1270
|
hidden?: boolean | undefined;
|
|
1251
1271
|
root?: string | undefined;
|
|
1252
1272
|
} | {
|
|
@@ -1257,6 +1277,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1257
1277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1258
1278
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1259
1279
|
} | undefined;
|
|
1280
|
+
tag?: string | undefined;
|
|
1260
1281
|
hidden?: boolean | undefined;
|
|
1261
1282
|
root?: string | undefined;
|
|
1262
1283
|
})[];
|
|
@@ -1498,6 +1519,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1498
1519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1499
1520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1500
1521
|
} | undefined;
|
|
1522
|
+
tag?: string | undefined;
|
|
1501
1523
|
hidden?: boolean | undefined;
|
|
1502
1524
|
root?: string | undefined;
|
|
1503
1525
|
} | {
|
|
@@ -1514,6 +1536,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1514
1536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1515
1537
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1516
1538
|
} | undefined;
|
|
1539
|
+
tag?: string | undefined;
|
|
1517
1540
|
hidden?: boolean | undefined;
|
|
1518
1541
|
root?: string | undefined;
|
|
1519
1542
|
} | {
|
|
@@ -1524,6 +1547,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1524
1547
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1525
1548
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1526
1549
|
} | undefined;
|
|
1550
|
+
tag?: string | undefined;
|
|
1527
1551
|
hidden?: boolean | undefined;
|
|
1528
1552
|
root?: string | undefined;
|
|
1529
1553
|
})[];
|
|
@@ -1561,6 +1585,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1561
1585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1562
1586
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1563
1587
|
} | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1564
1589
|
hidden?: boolean | undefined;
|
|
1565
1590
|
root?: string | undefined;
|
|
1566
1591
|
} | {
|
|
@@ -1577,6 +1602,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1577
1602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1578
1603
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1579
1604
|
} | undefined;
|
|
1605
|
+
tag?: string | undefined;
|
|
1580
1606
|
hidden?: boolean | undefined;
|
|
1581
1607
|
root?: string | undefined;
|
|
1582
1608
|
} | {
|
|
@@ -1587,6 +1613,7 @@ export declare const mintConfigSchema: z.ZodObject<{
|
|
|
1587
1613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1588
1614
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1589
1615
|
} | undefined;
|
|
1616
|
+
tag?: string | undefined;
|
|
1590
1617
|
hidden?: boolean | undefined;
|
|
1591
1618
|
root?: string | undefined;
|
|
1592
1619
|
})[];
|
|
@@ -375,6 +375,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
378
379
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
379
380
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
380
381
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -401,6 +402,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
401
402
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
402
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
403
404
|
} | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
404
406
|
hidden?: boolean | undefined;
|
|
405
407
|
root?: string | undefined;
|
|
406
408
|
}, {
|
|
@@ -417,6 +419,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
417
419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
418
420
|
library?: "fontawesome" | "lucide" | undefined;
|
|
419
421
|
} | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
420
423
|
hidden?: boolean | undefined;
|
|
421
424
|
root?: string | undefined;
|
|
422
425
|
}>, z.ZodObject<{
|
|
@@ -434,6 +437,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
434
437
|
library?: "fontawesome" | "lucide" | undefined;
|
|
435
438
|
}>]>>;
|
|
436
439
|
group: z.ZodString;
|
|
440
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
437
441
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
438
442
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
439
443
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -460,6 +464,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
460
464
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
461
465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
462
466
|
} | undefined;
|
|
467
|
+
tag?: string | undefined;
|
|
463
468
|
hidden?: boolean | undefined;
|
|
464
469
|
root?: string | undefined;
|
|
465
470
|
}, {
|
|
@@ -476,6 +481,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
476
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
477
482
|
library?: "fontawesome" | "lucide" | undefined;
|
|
478
483
|
} | undefined;
|
|
484
|
+
tag?: string | undefined;
|
|
479
485
|
hidden?: boolean | undefined;
|
|
480
486
|
root?: string | undefined;
|
|
481
487
|
}>, z.ZodObject<{
|
|
@@ -493,6 +499,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
493
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
494
500
|
}>]>>;
|
|
495
501
|
group: z.ZodString;
|
|
502
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
496
503
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
497
504
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
498
505
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -504,6 +511,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
504
511
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
505
512
|
library?: "fontawesome" | "lucide" | undefined;
|
|
506
513
|
} | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
507
515
|
hidden?: boolean | undefined;
|
|
508
516
|
root?: string | undefined;
|
|
509
517
|
}, {
|
|
@@ -514,6 +522,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
514
522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
515
523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
516
524
|
} | undefined;
|
|
525
|
+
tag?: string | undefined;
|
|
517
526
|
hidden?: boolean | undefined;
|
|
518
527
|
root?: string | undefined;
|
|
519
528
|
}>]>, "many">;
|
|
@@ -532,6 +541,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
532
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
533
542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
534
543
|
} | undefined;
|
|
544
|
+
tag?: string | undefined;
|
|
535
545
|
hidden?: boolean | undefined;
|
|
536
546
|
root?: string | undefined;
|
|
537
547
|
} | {
|
|
@@ -548,6 +558,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
548
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
549
559
|
library?: "fontawesome" | "lucide" | undefined;
|
|
550
560
|
} | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
551
562
|
hidden?: boolean | undefined;
|
|
552
563
|
root?: string | undefined;
|
|
553
564
|
} | {
|
|
@@ -558,6 +569,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
558
569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
571
|
} | undefined;
|
|
572
|
+
tag?: string | undefined;
|
|
561
573
|
hidden?: boolean | undefined;
|
|
562
574
|
root?: string | undefined;
|
|
563
575
|
})[];
|
|
@@ -577,6 +589,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
577
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
578
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
579
591
|
} | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
580
593
|
hidden?: boolean | undefined;
|
|
581
594
|
root?: string | undefined;
|
|
582
595
|
} | {
|
|
@@ -593,6 +606,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
593
606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
594
607
|
library?: "fontawesome" | "lucide" | undefined;
|
|
595
608
|
} | undefined;
|
|
609
|
+
tag?: string | undefined;
|
|
596
610
|
hidden?: boolean | undefined;
|
|
597
611
|
root?: string | undefined;
|
|
598
612
|
} | {
|
|
@@ -603,6 +617,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
603
617
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
604
618
|
library?: "fontawesome" | "lucide" | undefined;
|
|
605
619
|
} | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
606
621
|
hidden?: boolean | undefined;
|
|
607
622
|
root?: string | undefined;
|
|
608
623
|
})[];
|
|
@@ -1168,6 +1183,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1168
1183
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1169
1184
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1170
1185
|
} | undefined;
|
|
1186
|
+
tag?: string | undefined;
|
|
1171
1187
|
hidden?: boolean | undefined;
|
|
1172
1188
|
root?: string | undefined;
|
|
1173
1189
|
} | {
|
|
@@ -1184,6 +1200,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1184
1200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1185
1201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1186
1202
|
} | undefined;
|
|
1203
|
+
tag?: string | undefined;
|
|
1187
1204
|
hidden?: boolean | undefined;
|
|
1188
1205
|
root?: string | undefined;
|
|
1189
1206
|
} | {
|
|
@@ -1194,6 +1211,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1194
1211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1195
1212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1196
1213
|
} | undefined;
|
|
1214
|
+
tag?: string | undefined;
|
|
1197
1215
|
hidden?: boolean | undefined;
|
|
1198
1216
|
root?: string | undefined;
|
|
1199
1217
|
})[];
|
|
@@ -1231,6 +1249,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1231
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1232
1250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1233
1251
|
} | undefined;
|
|
1252
|
+
tag?: string | undefined;
|
|
1234
1253
|
hidden?: boolean | undefined;
|
|
1235
1254
|
root?: string | undefined;
|
|
1236
1255
|
} | {
|
|
@@ -1247,6 +1266,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1247
1266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1248
1267
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1249
1268
|
} | undefined;
|
|
1269
|
+
tag?: string | undefined;
|
|
1250
1270
|
hidden?: boolean | undefined;
|
|
1251
1271
|
root?: string | undefined;
|
|
1252
1272
|
} | {
|
|
@@ -1257,6 +1277,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1257
1277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1258
1278
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1259
1279
|
} | undefined;
|
|
1280
|
+
tag?: string | undefined;
|
|
1260
1281
|
hidden?: boolean | undefined;
|
|
1261
1282
|
root?: string | undefined;
|
|
1262
1283
|
})[];
|
|
@@ -1498,6 +1519,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1498
1519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1499
1520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1500
1521
|
} | undefined;
|
|
1522
|
+
tag?: string | undefined;
|
|
1501
1523
|
hidden?: boolean | undefined;
|
|
1502
1524
|
root?: string | undefined;
|
|
1503
1525
|
} | {
|
|
@@ -1514,6 +1536,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1514
1536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1515
1537
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1516
1538
|
} | undefined;
|
|
1539
|
+
tag?: string | undefined;
|
|
1517
1540
|
hidden?: boolean | undefined;
|
|
1518
1541
|
root?: string | undefined;
|
|
1519
1542
|
} | {
|
|
@@ -1524,6 +1547,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1524
1547
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1525
1548
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1526
1549
|
} | undefined;
|
|
1550
|
+
tag?: string | undefined;
|
|
1527
1551
|
hidden?: boolean | undefined;
|
|
1528
1552
|
root?: string | undefined;
|
|
1529
1553
|
})[];
|
|
@@ -1561,6 +1585,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1561
1585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1562
1586
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1563
1587
|
} | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1564
1589
|
hidden?: boolean | undefined;
|
|
1565
1590
|
root?: string | undefined;
|
|
1566
1591
|
} | {
|
|
@@ -1577,6 +1602,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1577
1602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1578
1603
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1579
1604
|
} | undefined;
|
|
1605
|
+
tag?: string | undefined;
|
|
1580
1606
|
hidden?: boolean | undefined;
|
|
1581
1607
|
root?: string | undefined;
|
|
1582
1608
|
} | {
|
|
@@ -1587,6 +1613,7 @@ export declare const palmConfigSchema: z.ZodObject<{
|
|
|
1587
1613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1588
1614
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1589
1615
|
} | undefined;
|
|
1616
|
+
tag?: string | undefined;
|
|
1590
1617
|
hidden?: boolean | undefined;
|
|
1591
1618
|
root?: string | undefined;
|
|
1592
1619
|
})[];
|
|
@@ -374,6 +374,7 @@ export declare const standardConfigSchema: {
|
|
|
374
374
|
library?: "fontawesome" | "lucide" | undefined;
|
|
375
375
|
}>]>>;
|
|
376
376
|
group: import("zod").ZodString;
|
|
377
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
377
378
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
378
379
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
379
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<{
|
|
@@ -400,6 +401,7 @@ export declare const standardConfigSchema: {
|
|
|
400
401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
401
402
|
library?: "fontawesome" | "lucide" | undefined;
|
|
402
403
|
} | undefined;
|
|
404
|
+
tag?: string | undefined;
|
|
403
405
|
hidden?: boolean | undefined;
|
|
404
406
|
root?: string | undefined;
|
|
405
407
|
}, {
|
|
@@ -416,6 +418,7 @@ export declare const standardConfigSchema: {
|
|
|
416
418
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
417
419
|
library?: "fontawesome" | "lucide" | undefined;
|
|
418
420
|
} | undefined;
|
|
421
|
+
tag?: string | undefined;
|
|
419
422
|
hidden?: boolean | undefined;
|
|
420
423
|
root?: string | undefined;
|
|
421
424
|
}>, import("zod").ZodObject<{
|
|
@@ -433,6 +436,7 @@ export declare const standardConfigSchema: {
|
|
|
433
436
|
library?: "fontawesome" | "lucide" | undefined;
|
|
434
437
|
}>]>>;
|
|
435
438
|
group: import("zod").ZodString;
|
|
439
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
436
440
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
437
441
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
438
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<{
|
|
@@ -459,6 +463,7 @@ export declare const standardConfigSchema: {
|
|
|
459
463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
460
464
|
library?: "fontawesome" | "lucide" | undefined;
|
|
461
465
|
} | undefined;
|
|
466
|
+
tag?: string | undefined;
|
|
462
467
|
hidden?: boolean | undefined;
|
|
463
468
|
root?: string | undefined;
|
|
464
469
|
}, {
|
|
@@ -475,6 +480,7 @@ export declare const standardConfigSchema: {
|
|
|
475
480
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
476
481
|
library?: "fontawesome" | "lucide" | undefined;
|
|
477
482
|
} | undefined;
|
|
483
|
+
tag?: string | undefined;
|
|
478
484
|
hidden?: boolean | undefined;
|
|
479
485
|
root?: string | undefined;
|
|
480
486
|
}>, import("zod").ZodObject<{
|
|
@@ -492,6 +498,7 @@ export declare const standardConfigSchema: {
|
|
|
492
498
|
library?: "fontawesome" | "lucide" | undefined;
|
|
493
499
|
}>]>>;
|
|
494
500
|
group: import("zod").ZodString;
|
|
501
|
+
tag: import("zod").ZodOptional<import("zod").ZodString>;
|
|
495
502
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
496
503
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
497
504
|
pages: import("zod").ZodLazy<import("zod").ZodArray<import("zod").ZodType<any, import("zod").ZodTypeDef, any>, "many">>;
|
|
@@ -503,6 +510,7 @@ export declare const standardConfigSchema: {
|
|
|
503
510
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
504
511
|
library?: "fontawesome" | "lucide" | undefined;
|
|
505
512
|
} | undefined;
|
|
513
|
+
tag?: string | undefined;
|
|
506
514
|
hidden?: boolean | undefined;
|
|
507
515
|
root?: string | undefined;
|
|
508
516
|
}, {
|
|
@@ -513,6 +521,7 @@ export declare const standardConfigSchema: {
|
|
|
513
521
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
514
522
|
library?: "fontawesome" | "lucide" | undefined;
|
|
515
523
|
} | undefined;
|
|
524
|
+
tag?: string | undefined;
|
|
516
525
|
hidden?: boolean | undefined;
|
|
517
526
|
root?: string | undefined;
|
|
518
527
|
}>]>, "many">;
|
|
@@ -531,6 +540,7 @@ export declare const standardConfigSchema: {
|
|
|
531
540
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
532
541
|
library?: "fontawesome" | "lucide" | undefined;
|
|
533
542
|
} | undefined;
|
|
543
|
+
tag?: string | undefined;
|
|
534
544
|
hidden?: boolean | undefined;
|
|
535
545
|
root?: string | undefined;
|
|
536
546
|
} | {
|
|
@@ -547,6 +557,7 @@ export declare const standardConfigSchema: {
|
|
|
547
557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
548
558
|
library?: "fontawesome" | "lucide" | undefined;
|
|
549
559
|
} | undefined;
|
|
560
|
+
tag?: string | undefined;
|
|
550
561
|
hidden?: boolean | undefined;
|
|
551
562
|
root?: string | undefined;
|
|
552
563
|
} | {
|
|
@@ -557,6 +568,7 @@ export declare const standardConfigSchema: {
|
|
|
557
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
558
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
559
570
|
} | undefined;
|
|
571
|
+
tag?: string | undefined;
|
|
560
572
|
hidden?: boolean | undefined;
|
|
561
573
|
root?: string | undefined;
|
|
562
574
|
})[];
|
|
@@ -576,6 +588,7 @@ export declare const standardConfigSchema: {
|
|
|
576
588
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
577
589
|
library?: "fontawesome" | "lucide" | undefined;
|
|
578
590
|
} | undefined;
|
|
591
|
+
tag?: string | undefined;
|
|
579
592
|
hidden?: boolean | undefined;
|
|
580
593
|
root?: string | undefined;
|
|
581
594
|
} | {
|
|
@@ -592,6 +605,7 @@ export declare const standardConfigSchema: {
|
|
|
592
605
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
593
606
|
library?: "fontawesome" | "lucide" | undefined;
|
|
594
607
|
} | undefined;
|
|
608
|
+
tag?: string | undefined;
|
|
595
609
|
hidden?: boolean | undefined;
|
|
596
610
|
root?: string | undefined;
|
|
597
611
|
} | {
|
|
@@ -602,6 +616,7 @@ export declare const standardConfigSchema: {
|
|
|
602
616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
603
617
|
library?: "fontawesome" | "lucide" | undefined;
|
|
604
618
|
} | undefined;
|
|
619
|
+
tag?: string | undefined;
|
|
605
620
|
hidden?: boolean | undefined;
|
|
606
621
|
root?: string | undefined;
|
|
607
622
|
})[];
|