@mintlify/validation 0.1.429 → 0.1.431
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/v1/navigation.d.ts +3 -0
- package/dist/mint-config/schemas/v1/navigation.js +2 -1
- 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 +3 -3
|
@@ -375,6 +375,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
378
379
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -402,6 +403,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
402
403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
406
|
+
public?: boolean | undefined;
|
|
405
407
|
tag?: string | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
@@ -419,6 +421,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
419
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
424
|
+
public?: boolean | undefined;
|
|
422
425
|
tag?: string | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
@@ -437,6 +440,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
437
440
|
library?: "fontawesome" | "lucide" | undefined;
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
443
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
440
444
|
tag: z.ZodOptional<z.ZodString>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -464,6 +468,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
464
468
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
471
|
+
public?: boolean | undefined;
|
|
467
472
|
tag?: string | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
@@ -481,6 +486,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
481
486
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
489
|
+
public?: boolean | undefined;
|
|
484
490
|
tag?: string | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
@@ -499,6 +505,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
499
505
|
library?: "fontawesome" | "lucide" | undefined;
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
508
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
502
509
|
tag: z.ZodOptional<z.ZodString>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -511,6 +518,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
511
518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
521
|
+
public?: boolean | undefined;
|
|
514
522
|
tag?: string | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
@@ -522,6 +530,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
522
530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
533
|
+
public?: boolean | undefined;
|
|
525
534
|
tag?: string | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
@@ -541,6 +550,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
541
550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
553
|
+
public?: boolean | undefined;
|
|
544
554
|
tag?: string | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
@@ -558,6 +568,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
558
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
571
|
+
public?: boolean | undefined;
|
|
561
572
|
tag?: string | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
@@ -569,6 +580,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
569
580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
583
|
+
public?: boolean | undefined;
|
|
572
584
|
tag?: string | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
@@ -589,6 +601,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
589
601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
604
|
+
public?: boolean | undefined;
|
|
592
605
|
tag?: string | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
@@ -606,6 +619,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
606
619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
622
|
+
public?: boolean | undefined;
|
|
609
623
|
tag?: string | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
@@ -617,6 +631,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
617
631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
634
|
+
public?: boolean | undefined;
|
|
620
635
|
tag?: string | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
@@ -1360,6 +1375,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1360
1375
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1378
|
+
public?: boolean | undefined;
|
|
1363
1379
|
tag?: string | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
@@ -1377,6 +1393,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1377
1393
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1396
|
+
public?: boolean | undefined;
|
|
1380
1397
|
tag?: string | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
@@ -1388,6 +1405,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1388
1405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1408
|
+
public?: boolean | undefined;
|
|
1391
1409
|
tag?: string | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
@@ -1426,6 +1444,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1426
1444
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1447
|
+
public?: boolean | undefined;
|
|
1429
1448
|
tag?: string | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
@@ -1443,6 +1462,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1443
1462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1465
|
+
public?: boolean | undefined;
|
|
1446
1466
|
tag?: string | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
@@ -1454,6 +1474,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1454
1474
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1477
|
+
public?: boolean | undefined;
|
|
1457
1478
|
tag?: string | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
@@ -1721,6 +1742,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1721
1742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1745
|
+
public?: boolean | undefined;
|
|
1724
1746
|
tag?: string | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
@@ -1738,6 +1760,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1738
1760
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1763
|
+
public?: boolean | undefined;
|
|
1741
1764
|
tag?: string | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
@@ -1749,6 +1772,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1749
1772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1775
|
+
public?: boolean | undefined;
|
|
1752
1776
|
tag?: string | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
@@ -1787,6 +1811,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1787
1811
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1814
|
+
public?: boolean | undefined;
|
|
1790
1815
|
tag?: string | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
@@ -1804,6 +1829,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1804
1829
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1832
|
+
public?: boolean | undefined;
|
|
1807
1833
|
tag?: string | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
@@ -1815,6 +1841,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1815
1841
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1844
|
+
public?: boolean | undefined;
|
|
1818
1845
|
tag?: string | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|
|
@@ -375,6 +375,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
378
379
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -402,6 +403,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
402
403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
406
|
+
public?: boolean | undefined;
|
|
405
407
|
tag?: string | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
@@ -419,6 +421,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
419
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
424
|
+
public?: boolean | undefined;
|
|
422
425
|
tag?: string | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
@@ -437,6 +440,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
437
440
|
library?: "fontawesome" | "lucide" | undefined;
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
443
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
440
444
|
tag: z.ZodOptional<z.ZodString>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -464,6 +468,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
464
468
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
471
|
+
public?: boolean | undefined;
|
|
467
472
|
tag?: string | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
@@ -481,6 +486,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
481
486
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
489
|
+
public?: boolean | undefined;
|
|
484
490
|
tag?: string | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
@@ -499,6 +505,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
499
505
|
library?: "fontawesome" | "lucide" | undefined;
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
508
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
502
509
|
tag: z.ZodOptional<z.ZodString>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -511,6 +518,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
511
518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
521
|
+
public?: boolean | undefined;
|
|
514
522
|
tag?: string | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
@@ -522,6 +530,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
522
530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
533
|
+
public?: boolean | undefined;
|
|
525
534
|
tag?: string | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
@@ -541,6 +550,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
541
550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
553
|
+
public?: boolean | undefined;
|
|
544
554
|
tag?: string | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
@@ -558,6 +568,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
558
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
571
|
+
public?: boolean | undefined;
|
|
561
572
|
tag?: string | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
@@ -569,6 +580,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
569
580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
583
|
+
public?: boolean | undefined;
|
|
572
584
|
tag?: string | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
@@ -589,6 +601,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
589
601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
604
|
+
public?: boolean | undefined;
|
|
592
605
|
tag?: string | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
@@ -606,6 +619,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
606
619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
622
|
+
public?: boolean | undefined;
|
|
609
623
|
tag?: string | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
@@ -617,6 +631,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
617
631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
634
|
+
public?: boolean | undefined;
|
|
620
635
|
tag?: string | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
@@ -1360,6 +1375,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1360
1375
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1378
|
+
public?: boolean | undefined;
|
|
1363
1379
|
tag?: string | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
@@ -1377,6 +1393,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1377
1393
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1396
|
+
public?: boolean | undefined;
|
|
1380
1397
|
tag?: string | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
@@ -1388,6 +1405,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1388
1405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1408
|
+
public?: boolean | undefined;
|
|
1391
1409
|
tag?: string | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
@@ -1426,6 +1444,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1426
1444
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1447
|
+
public?: boolean | undefined;
|
|
1429
1448
|
tag?: string | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
@@ -1443,6 +1462,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1443
1462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1465
|
+
public?: boolean | undefined;
|
|
1446
1466
|
tag?: string | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
@@ -1454,6 +1474,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1454
1474
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1477
|
+
public?: boolean | undefined;
|
|
1457
1478
|
tag?: string | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
@@ -1721,6 +1742,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1721
1742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1745
|
+
public?: boolean | undefined;
|
|
1724
1746
|
tag?: string | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
@@ -1738,6 +1760,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1738
1760
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1763
|
+
public?: boolean | undefined;
|
|
1741
1764
|
tag?: string | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
@@ -1749,6 +1772,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1749
1772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1775
|
+
public?: boolean | undefined;
|
|
1752
1776
|
tag?: string | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
@@ -1787,6 +1811,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1787
1811
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1814
|
+
public?: boolean | undefined;
|
|
1790
1815
|
tag?: string | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
@@ -1804,6 +1829,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1804
1829
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1832
|
+
public?: boolean | undefined;
|
|
1807
1833
|
tag?: string | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
@@ -1815,6 +1841,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1815
1841
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1844
|
+
public?: boolean | undefined;
|
|
1818
1845
|
tag?: string | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|
|
@@ -375,6 +375,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
378
379
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -402,6 +403,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
402
403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
406
|
+
public?: boolean | undefined;
|
|
405
407
|
tag?: string | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
@@ -419,6 +421,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
419
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
424
|
+
public?: boolean | undefined;
|
|
422
425
|
tag?: string | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
@@ -437,6 +440,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
437
440
|
library?: "fontawesome" | "lucide" | undefined;
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
443
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
440
444
|
tag: z.ZodOptional<z.ZodString>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -464,6 +468,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
464
468
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
471
|
+
public?: boolean | undefined;
|
|
467
472
|
tag?: string | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
@@ -481,6 +486,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
481
486
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
489
|
+
public?: boolean | undefined;
|
|
484
490
|
tag?: string | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
@@ -499,6 +505,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
499
505
|
library?: "fontawesome" | "lucide" | undefined;
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
508
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
502
509
|
tag: z.ZodOptional<z.ZodString>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -511,6 +518,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
511
518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
521
|
+
public?: boolean | undefined;
|
|
514
522
|
tag?: string | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
@@ -522,6 +530,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
522
530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
533
|
+
public?: boolean | undefined;
|
|
525
534
|
tag?: string | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
@@ -541,6 +550,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
541
550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
553
|
+
public?: boolean | undefined;
|
|
544
554
|
tag?: string | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
@@ -558,6 +568,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
558
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
571
|
+
public?: boolean | undefined;
|
|
561
572
|
tag?: string | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
@@ -569,6 +580,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
569
580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
583
|
+
public?: boolean | undefined;
|
|
572
584
|
tag?: string | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
@@ -589,6 +601,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
589
601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
604
|
+
public?: boolean | undefined;
|
|
592
605
|
tag?: string | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
@@ -606,6 +619,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
606
619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
622
|
+
public?: boolean | undefined;
|
|
609
623
|
tag?: string | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
@@ -617,6 +631,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
617
631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
634
|
+
public?: boolean | undefined;
|
|
620
635
|
tag?: string | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
@@ -1360,6 +1375,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1360
1375
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1378
|
+
public?: boolean | undefined;
|
|
1363
1379
|
tag?: string | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
@@ -1377,6 +1393,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1377
1393
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1396
|
+
public?: boolean | undefined;
|
|
1380
1397
|
tag?: string | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
@@ -1388,6 +1405,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1388
1405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1408
|
+
public?: boolean | undefined;
|
|
1391
1409
|
tag?: string | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
@@ -1426,6 +1444,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1426
1444
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1447
|
+
public?: boolean | undefined;
|
|
1429
1448
|
tag?: string | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
@@ -1443,6 +1462,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1443
1462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1465
|
+
public?: boolean | undefined;
|
|
1446
1466
|
tag?: string | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
@@ -1454,6 +1474,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1454
1474
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1477
|
+
public?: boolean | undefined;
|
|
1457
1478
|
tag?: string | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
@@ -1721,6 +1742,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1721
1742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1745
|
+
public?: boolean | undefined;
|
|
1724
1746
|
tag?: string | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
@@ -1738,6 +1760,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1738
1760
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1763
|
+
public?: boolean | undefined;
|
|
1741
1764
|
tag?: string | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
@@ -1749,6 +1772,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1749
1772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1775
|
+
public?: boolean | undefined;
|
|
1752
1776
|
tag?: string | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
@@ -1787,6 +1811,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1787
1811
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1814
|
+
public?: boolean | undefined;
|
|
1790
1815
|
tag?: string | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
@@ -1804,6 +1829,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1804
1829
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1832
|
+
public?: boolean | undefined;
|
|
1807
1833
|
tag?: string | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
@@ -1815,6 +1841,7 @@ export declare const mapleConfigSchema: z.ZodObject<{
|
|
|
1815
1841
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1844
|
+
public?: boolean | undefined;
|
|
1818
1845
|
tag?: string | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|