@mintlify/validation 0.1.288 → 0.1.290
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 +2135 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +42 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +3 -0
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +31 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +328 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +427 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +427 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +427 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +427 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +287 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +427 -0
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +5 -5
- package/dist/mint-config/validateConfig.d.ts +700 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -515,6 +515,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
515
515
|
name: string;
|
|
516
516
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
517
517
|
} | undefined;
|
|
518
|
+
color?: {
|
|
519
|
+
light?: string | undefined;
|
|
520
|
+
dark?: string | undefined;
|
|
521
|
+
} | undefined;
|
|
522
|
+
description?: string | undefined;
|
|
518
523
|
hidden?: boolean | undefined;
|
|
519
524
|
}[] | undefined;
|
|
520
525
|
anchors?: {
|
|
@@ -562,6 +567,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
562
567
|
name: string;
|
|
563
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
564
569
|
} | undefined;
|
|
570
|
+
color?: {
|
|
571
|
+
light?: string | undefined;
|
|
572
|
+
dark?: string | undefined;
|
|
573
|
+
} | undefined;
|
|
574
|
+
description?: string | undefined;
|
|
565
575
|
hidden?: boolean | undefined;
|
|
566
576
|
}[] | undefined;
|
|
567
577
|
anchors?: {
|
|
@@ -609,6 +619,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
609
619
|
name: string;
|
|
610
620
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
611
621
|
} | undefined;
|
|
622
|
+
color?: {
|
|
623
|
+
light?: string | undefined;
|
|
624
|
+
dark?: string | undefined;
|
|
625
|
+
} | undefined;
|
|
626
|
+
description?: string | undefined;
|
|
612
627
|
hidden?: boolean | undefined;
|
|
613
628
|
}[] | undefined;
|
|
614
629
|
anchors?: {
|
|
@@ -656,6 +671,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
656
671
|
name: string;
|
|
657
672
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
658
673
|
} | undefined;
|
|
674
|
+
color?: {
|
|
675
|
+
light?: string | undefined;
|
|
676
|
+
dark?: string | undefined;
|
|
677
|
+
} | undefined;
|
|
678
|
+
description?: string | undefined;
|
|
659
679
|
hidden?: boolean | undefined;
|
|
660
680
|
}[] | undefined;
|
|
661
681
|
anchors?: {
|
|
@@ -703,6 +723,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
703
723
|
name: string;
|
|
704
724
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
705
725
|
} | undefined;
|
|
726
|
+
color?: {
|
|
727
|
+
light?: string | undefined;
|
|
728
|
+
dark?: string | undefined;
|
|
729
|
+
} | undefined;
|
|
730
|
+
description?: string | undefined;
|
|
706
731
|
hidden?: boolean | undefined;
|
|
707
732
|
}[] | undefined;
|
|
708
733
|
anchors?: {
|
|
@@ -774,6 +799,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
774
799
|
name: string;
|
|
775
800
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
776
801
|
} | undefined;
|
|
802
|
+
color?: {
|
|
803
|
+
light?: string | undefined;
|
|
804
|
+
dark?: string | undefined;
|
|
805
|
+
} | undefined;
|
|
806
|
+
description?: string | undefined;
|
|
777
807
|
hidden?: boolean | undefined;
|
|
778
808
|
}[] | undefined;
|
|
779
809
|
anchors?: {
|
|
@@ -821,6 +851,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
821
851
|
name: string;
|
|
822
852
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
823
853
|
} | undefined;
|
|
854
|
+
color?: {
|
|
855
|
+
light?: string | undefined;
|
|
856
|
+
dark?: string | undefined;
|
|
857
|
+
} | undefined;
|
|
858
|
+
description?: string | undefined;
|
|
824
859
|
hidden?: boolean | undefined;
|
|
825
860
|
}[] | undefined;
|
|
826
861
|
anchors?: {
|
|
@@ -868,6 +903,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
868
903
|
name: string;
|
|
869
904
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
870
905
|
} | undefined;
|
|
906
|
+
color?: {
|
|
907
|
+
light?: string | undefined;
|
|
908
|
+
dark?: string | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
description?: string | undefined;
|
|
871
911
|
hidden?: boolean | undefined;
|
|
872
912
|
}[] | undefined;
|
|
873
913
|
anchors?: {
|
|
@@ -915,6 +955,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
915
955
|
name: string;
|
|
916
956
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
917
957
|
} | undefined;
|
|
958
|
+
color?: {
|
|
959
|
+
light?: string | undefined;
|
|
960
|
+
dark?: string | undefined;
|
|
961
|
+
} | undefined;
|
|
962
|
+
description?: string | undefined;
|
|
918
963
|
hidden?: boolean | undefined;
|
|
919
964
|
}[] | undefined;
|
|
920
965
|
anchors?: {
|
|
@@ -962,6 +1007,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
962
1007
|
name: string;
|
|
963
1008
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
964
1009
|
} | undefined;
|
|
1010
|
+
color?: {
|
|
1011
|
+
light?: string | undefined;
|
|
1012
|
+
dark?: string | undefined;
|
|
1013
|
+
} | undefined;
|
|
1014
|
+
description?: string | undefined;
|
|
965
1015
|
hidden?: boolean | undefined;
|
|
966
1016
|
}[] | undefined;
|
|
967
1017
|
anchors?: {
|
|
@@ -1009,6 +1059,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1009
1059
|
name: string;
|
|
1010
1060
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1011
1061
|
} | undefined;
|
|
1062
|
+
color?: {
|
|
1063
|
+
light?: string | undefined;
|
|
1064
|
+
dark?: string | undefined;
|
|
1065
|
+
} | undefined;
|
|
1066
|
+
description?: string | undefined;
|
|
1012
1067
|
hidden?: boolean | undefined;
|
|
1013
1068
|
}[] | undefined;
|
|
1014
1069
|
anchors?: {
|
|
@@ -1056,6 +1111,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1056
1111
|
name: string;
|
|
1057
1112
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1058
1113
|
} | undefined;
|
|
1114
|
+
color?: {
|
|
1115
|
+
light?: string | undefined;
|
|
1116
|
+
dark?: string | undefined;
|
|
1117
|
+
} | undefined;
|
|
1118
|
+
description?: string | undefined;
|
|
1059
1119
|
hidden?: boolean | undefined;
|
|
1060
1120
|
}[] | undefined;
|
|
1061
1121
|
anchors?: {
|
|
@@ -1127,6 +1187,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1127
1187
|
name: string;
|
|
1128
1188
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1129
1189
|
} | undefined;
|
|
1190
|
+
color?: {
|
|
1191
|
+
light?: string | undefined;
|
|
1192
|
+
dark?: string | undefined;
|
|
1193
|
+
} | undefined;
|
|
1194
|
+
description?: string | undefined;
|
|
1130
1195
|
hidden?: boolean | undefined;
|
|
1131
1196
|
}[] | undefined;
|
|
1132
1197
|
anchors?: {
|
|
@@ -1174,6 +1239,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1174
1239
|
name: string;
|
|
1175
1240
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1176
1241
|
} | undefined;
|
|
1242
|
+
color?: {
|
|
1243
|
+
light?: string | undefined;
|
|
1244
|
+
dark?: string | undefined;
|
|
1245
|
+
} | undefined;
|
|
1246
|
+
description?: string | undefined;
|
|
1177
1247
|
hidden?: boolean | undefined;
|
|
1178
1248
|
}[] | undefined;
|
|
1179
1249
|
anchors?: {
|
|
@@ -1394,6 +1464,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1394
1464
|
name: string;
|
|
1395
1465
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1396
1466
|
} | undefined;
|
|
1467
|
+
color?: {
|
|
1468
|
+
light?: string | undefined;
|
|
1469
|
+
dark?: string | undefined;
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
description?: string | undefined;
|
|
1397
1472
|
hidden?: boolean | undefined;
|
|
1398
1473
|
}[] | undefined;
|
|
1399
1474
|
anchors?: {
|
|
@@ -1441,6 +1516,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1441
1516
|
name: string;
|
|
1442
1517
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1443
1518
|
} | undefined;
|
|
1519
|
+
color?: {
|
|
1520
|
+
light?: string | undefined;
|
|
1521
|
+
dark?: string | undefined;
|
|
1522
|
+
} | undefined;
|
|
1523
|
+
description?: string | undefined;
|
|
1444
1524
|
hidden?: boolean | undefined;
|
|
1445
1525
|
}[] | undefined;
|
|
1446
1526
|
anchors?: {
|
|
@@ -1488,6 +1568,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1488
1568
|
name: string;
|
|
1489
1569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1490
1570
|
} | undefined;
|
|
1571
|
+
color?: {
|
|
1572
|
+
light?: string | undefined;
|
|
1573
|
+
dark?: string | undefined;
|
|
1574
|
+
} | undefined;
|
|
1575
|
+
description?: string | undefined;
|
|
1491
1576
|
hidden?: boolean | undefined;
|
|
1492
1577
|
}[] | undefined;
|
|
1493
1578
|
anchors?: {
|
|
@@ -1535,6 +1620,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1535
1620
|
name: string;
|
|
1536
1621
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1537
1622
|
} | undefined;
|
|
1623
|
+
color?: {
|
|
1624
|
+
light?: string | undefined;
|
|
1625
|
+
dark?: string | undefined;
|
|
1626
|
+
} | undefined;
|
|
1627
|
+
description?: string | undefined;
|
|
1538
1628
|
hidden?: boolean | undefined;
|
|
1539
1629
|
}[] | undefined;
|
|
1540
1630
|
anchors?: {
|
|
@@ -1582,6 +1672,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1582
1672
|
name: string;
|
|
1583
1673
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1584
1674
|
} | undefined;
|
|
1675
|
+
color?: {
|
|
1676
|
+
light?: string | undefined;
|
|
1677
|
+
dark?: string | undefined;
|
|
1678
|
+
} | undefined;
|
|
1679
|
+
description?: string | undefined;
|
|
1585
1680
|
hidden?: boolean | undefined;
|
|
1586
1681
|
}[] | undefined;
|
|
1587
1682
|
anchors?: {
|
|
@@ -1653,6 +1748,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1653
1748
|
name: string;
|
|
1654
1749
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1655
1750
|
} | undefined;
|
|
1751
|
+
color?: {
|
|
1752
|
+
light?: string | undefined;
|
|
1753
|
+
dark?: string | undefined;
|
|
1754
|
+
} | undefined;
|
|
1755
|
+
description?: string | undefined;
|
|
1656
1756
|
hidden?: boolean | undefined;
|
|
1657
1757
|
}[] | undefined;
|
|
1658
1758
|
anchors?: {
|
|
@@ -1700,6 +1800,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1700
1800
|
name: string;
|
|
1701
1801
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1702
1802
|
} | undefined;
|
|
1803
|
+
color?: {
|
|
1804
|
+
light?: string | undefined;
|
|
1805
|
+
dark?: string | undefined;
|
|
1806
|
+
} | undefined;
|
|
1807
|
+
description?: string | undefined;
|
|
1703
1808
|
hidden?: boolean | undefined;
|
|
1704
1809
|
}[] | undefined;
|
|
1705
1810
|
anchors?: {
|
|
@@ -1747,6 +1852,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1747
1852
|
name: string;
|
|
1748
1853
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1749
1854
|
} | undefined;
|
|
1855
|
+
color?: {
|
|
1856
|
+
light?: string | undefined;
|
|
1857
|
+
dark?: string | undefined;
|
|
1858
|
+
} | undefined;
|
|
1859
|
+
description?: string | undefined;
|
|
1750
1860
|
hidden?: boolean | undefined;
|
|
1751
1861
|
}[] | undefined;
|
|
1752
1862
|
anchors?: {
|
|
@@ -1794,6 +1904,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1794
1904
|
name: string;
|
|
1795
1905
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1796
1906
|
} | undefined;
|
|
1907
|
+
color?: {
|
|
1908
|
+
light?: string | undefined;
|
|
1909
|
+
dark?: string | undefined;
|
|
1910
|
+
} | undefined;
|
|
1911
|
+
description?: string | undefined;
|
|
1797
1912
|
hidden?: boolean | undefined;
|
|
1798
1913
|
}[] | undefined;
|
|
1799
1914
|
anchors?: {
|
|
@@ -1841,6 +1956,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1841
1956
|
name: string;
|
|
1842
1957
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1843
1958
|
} | undefined;
|
|
1959
|
+
color?: {
|
|
1960
|
+
light?: string | undefined;
|
|
1961
|
+
dark?: string | undefined;
|
|
1962
|
+
} | undefined;
|
|
1963
|
+
description?: string | undefined;
|
|
1844
1964
|
hidden?: boolean | undefined;
|
|
1845
1965
|
}[] | undefined;
|
|
1846
1966
|
anchors?: {
|
|
@@ -1888,6 +2008,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1888
2008
|
name: string;
|
|
1889
2009
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1890
2010
|
} | undefined;
|
|
2011
|
+
color?: {
|
|
2012
|
+
light?: string | undefined;
|
|
2013
|
+
dark?: string | undefined;
|
|
2014
|
+
} | undefined;
|
|
2015
|
+
description?: string | undefined;
|
|
1891
2016
|
hidden?: boolean | undefined;
|
|
1892
2017
|
}[] | undefined;
|
|
1893
2018
|
anchors?: {
|
|
@@ -1935,6 +2060,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1935
2060
|
name: string;
|
|
1936
2061
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1937
2062
|
} | undefined;
|
|
2063
|
+
color?: {
|
|
2064
|
+
light?: string | undefined;
|
|
2065
|
+
dark?: string | undefined;
|
|
2066
|
+
} | undefined;
|
|
2067
|
+
description?: string | undefined;
|
|
1938
2068
|
hidden?: boolean | undefined;
|
|
1939
2069
|
}[] | undefined;
|
|
1940
2070
|
anchors?: {
|
|
@@ -2006,6 +2136,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2006
2136
|
name: string;
|
|
2007
2137
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2008
2138
|
} | undefined;
|
|
2139
|
+
color?: {
|
|
2140
|
+
light?: string | undefined;
|
|
2141
|
+
dark?: string | undefined;
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
description?: string | undefined;
|
|
2009
2144
|
hidden?: boolean | undefined;
|
|
2010
2145
|
}[] | undefined;
|
|
2011
2146
|
anchors?: {
|
|
@@ -2053,6 +2188,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2053
2188
|
name: string;
|
|
2054
2189
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2055
2190
|
} | undefined;
|
|
2191
|
+
color?: {
|
|
2192
|
+
light?: string | undefined;
|
|
2193
|
+
dark?: string | undefined;
|
|
2194
|
+
} | undefined;
|
|
2195
|
+
description?: string | undefined;
|
|
2056
2196
|
hidden?: boolean | undefined;
|
|
2057
2197
|
}[] | undefined;
|
|
2058
2198
|
anchors?: {
|
|
@@ -2273,6 +2413,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2273
2413
|
name: string;
|
|
2274
2414
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2275
2415
|
} | undefined;
|
|
2416
|
+
color?: {
|
|
2417
|
+
light?: string | undefined;
|
|
2418
|
+
dark?: string | undefined;
|
|
2419
|
+
} | undefined;
|
|
2420
|
+
description?: string | undefined;
|
|
2276
2421
|
hidden?: boolean | undefined;
|
|
2277
2422
|
}[] | undefined;
|
|
2278
2423
|
anchors?: {
|
|
@@ -2320,6 +2465,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2320
2465
|
name: string;
|
|
2321
2466
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2322
2467
|
} | undefined;
|
|
2468
|
+
color?: {
|
|
2469
|
+
light?: string | undefined;
|
|
2470
|
+
dark?: string | undefined;
|
|
2471
|
+
} | undefined;
|
|
2472
|
+
description?: string | undefined;
|
|
2323
2473
|
hidden?: boolean | undefined;
|
|
2324
2474
|
}[] | undefined;
|
|
2325
2475
|
anchors?: {
|
|
@@ -2367,6 +2517,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2367
2517
|
name: string;
|
|
2368
2518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2369
2519
|
} | undefined;
|
|
2520
|
+
color?: {
|
|
2521
|
+
light?: string | undefined;
|
|
2522
|
+
dark?: string | undefined;
|
|
2523
|
+
} | undefined;
|
|
2524
|
+
description?: string | undefined;
|
|
2370
2525
|
hidden?: boolean | undefined;
|
|
2371
2526
|
}[] | undefined;
|
|
2372
2527
|
anchors?: {
|
|
@@ -2414,6 +2569,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2414
2569
|
name: string;
|
|
2415
2570
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2416
2571
|
} | undefined;
|
|
2572
|
+
color?: {
|
|
2573
|
+
light?: string | undefined;
|
|
2574
|
+
dark?: string | undefined;
|
|
2575
|
+
} | undefined;
|
|
2576
|
+
description?: string | undefined;
|
|
2417
2577
|
hidden?: boolean | undefined;
|
|
2418
2578
|
}[] | undefined;
|
|
2419
2579
|
anchors?: {
|
|
@@ -2461,6 +2621,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2461
2621
|
name: string;
|
|
2462
2622
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2463
2623
|
} | undefined;
|
|
2624
|
+
color?: {
|
|
2625
|
+
light?: string | undefined;
|
|
2626
|
+
dark?: string | undefined;
|
|
2627
|
+
} | undefined;
|
|
2628
|
+
description?: string | undefined;
|
|
2464
2629
|
hidden?: boolean | undefined;
|
|
2465
2630
|
}[] | undefined;
|
|
2466
2631
|
anchors?: {
|
|
@@ -2532,6 +2697,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2532
2697
|
name: string;
|
|
2533
2698
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2534
2699
|
} | undefined;
|
|
2700
|
+
color?: {
|
|
2701
|
+
light?: string | undefined;
|
|
2702
|
+
dark?: string | undefined;
|
|
2703
|
+
} | undefined;
|
|
2704
|
+
description?: string | undefined;
|
|
2535
2705
|
hidden?: boolean | undefined;
|
|
2536
2706
|
}[] | undefined;
|
|
2537
2707
|
anchors?: {
|
|
@@ -2579,6 +2749,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2579
2749
|
name: string;
|
|
2580
2750
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2581
2751
|
} | undefined;
|
|
2752
|
+
color?: {
|
|
2753
|
+
light?: string | undefined;
|
|
2754
|
+
dark?: string | undefined;
|
|
2755
|
+
} | undefined;
|
|
2756
|
+
description?: string | undefined;
|
|
2582
2757
|
hidden?: boolean | undefined;
|
|
2583
2758
|
}[] | undefined;
|
|
2584
2759
|
anchors?: {
|
|
@@ -2626,6 +2801,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2626
2801
|
name: string;
|
|
2627
2802
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2628
2803
|
} | undefined;
|
|
2804
|
+
color?: {
|
|
2805
|
+
light?: string | undefined;
|
|
2806
|
+
dark?: string | undefined;
|
|
2807
|
+
} | undefined;
|
|
2808
|
+
description?: string | undefined;
|
|
2629
2809
|
hidden?: boolean | undefined;
|
|
2630
2810
|
}[] | undefined;
|
|
2631
2811
|
anchors?: {
|
|
@@ -2673,6 +2853,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2673
2853
|
name: string;
|
|
2674
2854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2675
2855
|
} | undefined;
|
|
2856
|
+
color?: {
|
|
2857
|
+
light?: string | undefined;
|
|
2858
|
+
dark?: string | undefined;
|
|
2859
|
+
} | undefined;
|
|
2860
|
+
description?: string | undefined;
|
|
2676
2861
|
hidden?: boolean | undefined;
|
|
2677
2862
|
}[] | undefined;
|
|
2678
2863
|
anchors?: {
|
|
@@ -2720,6 +2905,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2720
2905
|
name: string;
|
|
2721
2906
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2722
2907
|
} | undefined;
|
|
2908
|
+
color?: {
|
|
2909
|
+
light?: string | undefined;
|
|
2910
|
+
dark?: string | undefined;
|
|
2911
|
+
} | undefined;
|
|
2912
|
+
description?: string | undefined;
|
|
2723
2913
|
hidden?: boolean | undefined;
|
|
2724
2914
|
}[] | undefined;
|
|
2725
2915
|
anchors?: {
|
|
@@ -2767,6 +2957,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2767
2957
|
name: string;
|
|
2768
2958
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2769
2959
|
} | undefined;
|
|
2960
|
+
color?: {
|
|
2961
|
+
light?: string | undefined;
|
|
2962
|
+
dark?: string | undefined;
|
|
2963
|
+
} | undefined;
|
|
2964
|
+
description?: string | undefined;
|
|
2770
2965
|
hidden?: boolean | undefined;
|
|
2771
2966
|
}[] | undefined;
|
|
2772
2967
|
anchors?: {
|
|
@@ -2814,6 +3009,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2814
3009
|
name: string;
|
|
2815
3010
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2816
3011
|
} | undefined;
|
|
3012
|
+
color?: {
|
|
3013
|
+
light?: string | undefined;
|
|
3014
|
+
dark?: string | undefined;
|
|
3015
|
+
} | undefined;
|
|
3016
|
+
description?: string | undefined;
|
|
2817
3017
|
hidden?: boolean | undefined;
|
|
2818
3018
|
}[] | undefined;
|
|
2819
3019
|
anchors?: {
|
|
@@ -2885,6 +3085,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2885
3085
|
name: string;
|
|
2886
3086
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2887
3087
|
} | undefined;
|
|
3088
|
+
color?: {
|
|
3089
|
+
light?: string | undefined;
|
|
3090
|
+
dark?: string | undefined;
|
|
3091
|
+
} | undefined;
|
|
3092
|
+
description?: string | undefined;
|
|
2888
3093
|
hidden?: boolean | undefined;
|
|
2889
3094
|
}[] | undefined;
|
|
2890
3095
|
anchors?: {
|
|
@@ -2932,6 +3137,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2932
3137
|
name: string;
|
|
2933
3138
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2934
3139
|
} | undefined;
|
|
3140
|
+
color?: {
|
|
3141
|
+
light?: string | undefined;
|
|
3142
|
+
dark?: string | undefined;
|
|
3143
|
+
} | undefined;
|
|
3144
|
+
description?: string | undefined;
|
|
2935
3145
|
hidden?: boolean | undefined;
|
|
2936
3146
|
}[] | undefined;
|
|
2937
3147
|
anchors?: {
|
|
@@ -3152,6 +3362,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3152
3362
|
name: string;
|
|
3153
3363
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3154
3364
|
} | undefined;
|
|
3365
|
+
color?: {
|
|
3366
|
+
light?: string | undefined;
|
|
3367
|
+
dark?: string | undefined;
|
|
3368
|
+
} | undefined;
|
|
3369
|
+
description?: string | undefined;
|
|
3155
3370
|
hidden?: boolean | undefined;
|
|
3156
3371
|
}[] | undefined;
|
|
3157
3372
|
anchors?: {
|
|
@@ -3199,6 +3414,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3199
3414
|
name: string;
|
|
3200
3415
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3201
3416
|
} | undefined;
|
|
3417
|
+
color?: {
|
|
3418
|
+
light?: string | undefined;
|
|
3419
|
+
dark?: string | undefined;
|
|
3420
|
+
} | undefined;
|
|
3421
|
+
description?: string | undefined;
|
|
3202
3422
|
hidden?: boolean | undefined;
|
|
3203
3423
|
}[] | undefined;
|
|
3204
3424
|
anchors?: {
|
|
@@ -3246,6 +3466,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3246
3466
|
name: string;
|
|
3247
3467
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3248
3468
|
} | undefined;
|
|
3469
|
+
color?: {
|
|
3470
|
+
light?: string | undefined;
|
|
3471
|
+
dark?: string | undefined;
|
|
3472
|
+
} | undefined;
|
|
3473
|
+
description?: string | undefined;
|
|
3249
3474
|
hidden?: boolean | undefined;
|
|
3250
3475
|
}[] | undefined;
|
|
3251
3476
|
anchors?: {
|
|
@@ -3293,6 +3518,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3293
3518
|
name: string;
|
|
3294
3519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3295
3520
|
} | undefined;
|
|
3521
|
+
color?: {
|
|
3522
|
+
light?: string | undefined;
|
|
3523
|
+
dark?: string | undefined;
|
|
3524
|
+
} | undefined;
|
|
3525
|
+
description?: string | undefined;
|
|
3296
3526
|
hidden?: boolean | undefined;
|
|
3297
3527
|
}[] | undefined;
|
|
3298
3528
|
anchors?: {
|
|
@@ -3340,6 +3570,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3340
3570
|
name: string;
|
|
3341
3571
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3342
3572
|
} | undefined;
|
|
3573
|
+
color?: {
|
|
3574
|
+
light?: string | undefined;
|
|
3575
|
+
dark?: string | undefined;
|
|
3576
|
+
} | undefined;
|
|
3577
|
+
description?: string | undefined;
|
|
3343
3578
|
hidden?: boolean | undefined;
|
|
3344
3579
|
}[] | undefined;
|
|
3345
3580
|
anchors?: {
|
|
@@ -3411,6 +3646,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3411
3646
|
name: string;
|
|
3412
3647
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3413
3648
|
} | undefined;
|
|
3649
|
+
color?: {
|
|
3650
|
+
light?: string | undefined;
|
|
3651
|
+
dark?: string | undefined;
|
|
3652
|
+
} | undefined;
|
|
3653
|
+
description?: string | undefined;
|
|
3414
3654
|
hidden?: boolean | undefined;
|
|
3415
3655
|
}[] | undefined;
|
|
3416
3656
|
anchors?: {
|
|
@@ -3458,6 +3698,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3458
3698
|
name: string;
|
|
3459
3699
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3460
3700
|
} | undefined;
|
|
3701
|
+
color?: {
|
|
3702
|
+
light?: string | undefined;
|
|
3703
|
+
dark?: string | undefined;
|
|
3704
|
+
} | undefined;
|
|
3705
|
+
description?: string | undefined;
|
|
3461
3706
|
hidden?: boolean | undefined;
|
|
3462
3707
|
}[] | undefined;
|
|
3463
3708
|
anchors?: {
|
|
@@ -3505,6 +3750,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3505
3750
|
name: string;
|
|
3506
3751
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3507
3752
|
} | undefined;
|
|
3753
|
+
color?: {
|
|
3754
|
+
light?: string | undefined;
|
|
3755
|
+
dark?: string | undefined;
|
|
3756
|
+
} | undefined;
|
|
3757
|
+
description?: string | undefined;
|
|
3508
3758
|
hidden?: boolean | undefined;
|
|
3509
3759
|
}[] | undefined;
|
|
3510
3760
|
anchors?: {
|
|
@@ -3552,6 +3802,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3552
3802
|
name: string;
|
|
3553
3803
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3554
3804
|
} | undefined;
|
|
3805
|
+
color?: {
|
|
3806
|
+
light?: string | undefined;
|
|
3807
|
+
dark?: string | undefined;
|
|
3808
|
+
} | undefined;
|
|
3809
|
+
description?: string | undefined;
|
|
3555
3810
|
hidden?: boolean | undefined;
|
|
3556
3811
|
}[] | undefined;
|
|
3557
3812
|
anchors?: {
|
|
@@ -3599,6 +3854,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3599
3854
|
name: string;
|
|
3600
3855
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3601
3856
|
} | undefined;
|
|
3857
|
+
color?: {
|
|
3858
|
+
light?: string | undefined;
|
|
3859
|
+
dark?: string | undefined;
|
|
3860
|
+
} | undefined;
|
|
3861
|
+
description?: string | undefined;
|
|
3602
3862
|
hidden?: boolean | undefined;
|
|
3603
3863
|
}[] | undefined;
|
|
3604
3864
|
anchors?: {
|
|
@@ -3646,6 +3906,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3646
3906
|
name: string;
|
|
3647
3907
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3648
3908
|
} | undefined;
|
|
3909
|
+
color?: {
|
|
3910
|
+
light?: string | undefined;
|
|
3911
|
+
dark?: string | undefined;
|
|
3912
|
+
} | undefined;
|
|
3913
|
+
description?: string | undefined;
|
|
3649
3914
|
hidden?: boolean | undefined;
|
|
3650
3915
|
}[] | undefined;
|
|
3651
3916
|
anchors?: {
|
|
@@ -3693,6 +3958,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3693
3958
|
name: string;
|
|
3694
3959
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3695
3960
|
} | undefined;
|
|
3961
|
+
color?: {
|
|
3962
|
+
light?: string | undefined;
|
|
3963
|
+
dark?: string | undefined;
|
|
3964
|
+
} | undefined;
|
|
3965
|
+
description?: string | undefined;
|
|
3696
3966
|
hidden?: boolean | undefined;
|
|
3697
3967
|
}[] | undefined;
|
|
3698
3968
|
anchors?: {
|
|
@@ -3764,6 +4034,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3764
4034
|
name: string;
|
|
3765
4035
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3766
4036
|
} | undefined;
|
|
4037
|
+
color?: {
|
|
4038
|
+
light?: string | undefined;
|
|
4039
|
+
dark?: string | undefined;
|
|
4040
|
+
} | undefined;
|
|
4041
|
+
description?: string | undefined;
|
|
3767
4042
|
hidden?: boolean | undefined;
|
|
3768
4043
|
}[] | undefined;
|
|
3769
4044
|
anchors?: {
|
|
@@ -3811,6 +4086,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3811
4086
|
name: string;
|
|
3812
4087
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3813
4088
|
} | undefined;
|
|
4089
|
+
color?: {
|
|
4090
|
+
light?: string | undefined;
|
|
4091
|
+
dark?: string | undefined;
|
|
4092
|
+
} | undefined;
|
|
4093
|
+
description?: string | undefined;
|
|
3814
4094
|
hidden?: boolean | undefined;
|
|
3815
4095
|
}[] | undefined;
|
|
3816
4096
|
anchors?: {
|
|
@@ -4031,6 +4311,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4031
4311
|
name: string;
|
|
4032
4312
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4033
4313
|
} | undefined;
|
|
4314
|
+
color?: {
|
|
4315
|
+
light?: string | undefined;
|
|
4316
|
+
dark?: string | undefined;
|
|
4317
|
+
} | undefined;
|
|
4318
|
+
description?: string | undefined;
|
|
4034
4319
|
hidden?: boolean | undefined;
|
|
4035
4320
|
}[] | undefined;
|
|
4036
4321
|
anchors?: {
|
|
@@ -4078,6 +4363,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4078
4363
|
name: string;
|
|
4079
4364
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4080
4365
|
} | undefined;
|
|
4366
|
+
color?: {
|
|
4367
|
+
light?: string | undefined;
|
|
4368
|
+
dark?: string | undefined;
|
|
4369
|
+
} | undefined;
|
|
4370
|
+
description?: string | undefined;
|
|
4081
4371
|
hidden?: boolean | undefined;
|
|
4082
4372
|
}[] | undefined;
|
|
4083
4373
|
anchors?: {
|
|
@@ -4125,6 +4415,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4125
4415
|
name: string;
|
|
4126
4416
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4127
4417
|
} | undefined;
|
|
4418
|
+
color?: {
|
|
4419
|
+
light?: string | undefined;
|
|
4420
|
+
dark?: string | undefined;
|
|
4421
|
+
} | undefined;
|
|
4422
|
+
description?: string | undefined;
|
|
4128
4423
|
hidden?: boolean | undefined;
|
|
4129
4424
|
}[] | undefined;
|
|
4130
4425
|
anchors?: {
|
|
@@ -4172,6 +4467,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4172
4467
|
name: string;
|
|
4173
4468
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4174
4469
|
} | undefined;
|
|
4470
|
+
color?: {
|
|
4471
|
+
light?: string | undefined;
|
|
4472
|
+
dark?: string | undefined;
|
|
4473
|
+
} | undefined;
|
|
4474
|
+
description?: string | undefined;
|
|
4175
4475
|
hidden?: boolean | undefined;
|
|
4176
4476
|
}[] | undefined;
|
|
4177
4477
|
anchors?: {
|
|
@@ -4219,6 +4519,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4219
4519
|
name: string;
|
|
4220
4520
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4221
4521
|
} | undefined;
|
|
4522
|
+
color?: {
|
|
4523
|
+
light?: string | undefined;
|
|
4524
|
+
dark?: string | undefined;
|
|
4525
|
+
} | undefined;
|
|
4526
|
+
description?: string | undefined;
|
|
4222
4527
|
hidden?: boolean | undefined;
|
|
4223
4528
|
}[] | undefined;
|
|
4224
4529
|
anchors?: {
|
|
@@ -4290,6 +4595,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4290
4595
|
name: string;
|
|
4291
4596
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4292
4597
|
} | undefined;
|
|
4598
|
+
color?: {
|
|
4599
|
+
light?: string | undefined;
|
|
4600
|
+
dark?: string | undefined;
|
|
4601
|
+
} | undefined;
|
|
4602
|
+
description?: string | undefined;
|
|
4293
4603
|
hidden?: boolean | undefined;
|
|
4294
4604
|
}[] | undefined;
|
|
4295
4605
|
anchors?: {
|
|
@@ -4337,6 +4647,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4337
4647
|
name: string;
|
|
4338
4648
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4339
4649
|
} | undefined;
|
|
4650
|
+
color?: {
|
|
4651
|
+
light?: string | undefined;
|
|
4652
|
+
dark?: string | undefined;
|
|
4653
|
+
} | undefined;
|
|
4654
|
+
description?: string | undefined;
|
|
4340
4655
|
hidden?: boolean | undefined;
|
|
4341
4656
|
}[] | undefined;
|
|
4342
4657
|
anchors?: {
|
|
@@ -4384,6 +4699,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4384
4699
|
name: string;
|
|
4385
4700
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4386
4701
|
} | undefined;
|
|
4702
|
+
color?: {
|
|
4703
|
+
light?: string | undefined;
|
|
4704
|
+
dark?: string | undefined;
|
|
4705
|
+
} | undefined;
|
|
4706
|
+
description?: string | undefined;
|
|
4387
4707
|
hidden?: boolean | undefined;
|
|
4388
4708
|
}[] | undefined;
|
|
4389
4709
|
anchors?: {
|
|
@@ -4431,6 +4751,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4431
4751
|
name: string;
|
|
4432
4752
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4433
4753
|
} | undefined;
|
|
4754
|
+
color?: {
|
|
4755
|
+
light?: string | undefined;
|
|
4756
|
+
dark?: string | undefined;
|
|
4757
|
+
} | undefined;
|
|
4758
|
+
description?: string | undefined;
|
|
4434
4759
|
hidden?: boolean | undefined;
|
|
4435
4760
|
}[] | undefined;
|
|
4436
4761
|
anchors?: {
|
|
@@ -4478,6 +4803,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4478
4803
|
name: string;
|
|
4479
4804
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4480
4805
|
} | undefined;
|
|
4806
|
+
color?: {
|
|
4807
|
+
light?: string | undefined;
|
|
4808
|
+
dark?: string | undefined;
|
|
4809
|
+
} | undefined;
|
|
4810
|
+
description?: string | undefined;
|
|
4481
4811
|
hidden?: boolean | undefined;
|
|
4482
4812
|
}[] | undefined;
|
|
4483
4813
|
anchors?: {
|
|
@@ -4525,6 +4855,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4525
4855
|
name: string;
|
|
4526
4856
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4527
4857
|
} | undefined;
|
|
4858
|
+
color?: {
|
|
4859
|
+
light?: string | undefined;
|
|
4860
|
+
dark?: string | undefined;
|
|
4861
|
+
} | undefined;
|
|
4862
|
+
description?: string | undefined;
|
|
4528
4863
|
hidden?: boolean | undefined;
|
|
4529
4864
|
}[] | undefined;
|
|
4530
4865
|
anchors?: {
|
|
@@ -4572,6 +4907,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4572
4907
|
name: string;
|
|
4573
4908
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4574
4909
|
} | undefined;
|
|
4910
|
+
color?: {
|
|
4911
|
+
light?: string | undefined;
|
|
4912
|
+
dark?: string | undefined;
|
|
4913
|
+
} | undefined;
|
|
4914
|
+
description?: string | undefined;
|
|
4575
4915
|
hidden?: boolean | undefined;
|
|
4576
4916
|
}[] | undefined;
|
|
4577
4917
|
anchors?: {
|
|
@@ -4643,6 +4983,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4643
4983
|
name: string;
|
|
4644
4984
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4645
4985
|
} | undefined;
|
|
4986
|
+
color?: {
|
|
4987
|
+
light?: string | undefined;
|
|
4988
|
+
dark?: string | undefined;
|
|
4989
|
+
} | undefined;
|
|
4990
|
+
description?: string | undefined;
|
|
4646
4991
|
hidden?: boolean | undefined;
|
|
4647
4992
|
}[] | undefined;
|
|
4648
4993
|
anchors?: {
|
|
@@ -4690,6 +5035,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4690
5035
|
name: string;
|
|
4691
5036
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4692
5037
|
} | undefined;
|
|
5038
|
+
color?: {
|
|
5039
|
+
light?: string | undefined;
|
|
5040
|
+
dark?: string | undefined;
|
|
5041
|
+
} | undefined;
|
|
5042
|
+
description?: string | undefined;
|
|
4693
5043
|
hidden?: boolean | undefined;
|
|
4694
5044
|
}[] | undefined;
|
|
4695
5045
|
anchors?: {
|
|
@@ -4914,6 +5264,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4914
5264
|
name: string;
|
|
4915
5265
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4916
5266
|
} | undefined;
|
|
5267
|
+
color?: {
|
|
5268
|
+
light?: string | undefined;
|
|
5269
|
+
dark?: string | undefined;
|
|
5270
|
+
} | undefined;
|
|
5271
|
+
description?: string | undefined;
|
|
4917
5272
|
hidden?: boolean | undefined;
|
|
4918
5273
|
}[] | undefined;
|
|
4919
5274
|
anchors?: {
|
|
@@ -4961,6 +5316,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4961
5316
|
name: string;
|
|
4962
5317
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4963
5318
|
} | undefined;
|
|
5319
|
+
color?: {
|
|
5320
|
+
light?: string | undefined;
|
|
5321
|
+
dark?: string | undefined;
|
|
5322
|
+
} | undefined;
|
|
5323
|
+
description?: string | undefined;
|
|
4964
5324
|
hidden?: boolean | undefined;
|
|
4965
5325
|
}[] | undefined;
|
|
4966
5326
|
anchors?: {
|
|
@@ -5008,6 +5368,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5008
5368
|
name: string;
|
|
5009
5369
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5010
5370
|
} | undefined;
|
|
5371
|
+
color?: {
|
|
5372
|
+
light?: string | undefined;
|
|
5373
|
+
dark?: string | undefined;
|
|
5374
|
+
} | undefined;
|
|
5375
|
+
description?: string | undefined;
|
|
5011
5376
|
hidden?: boolean | undefined;
|
|
5012
5377
|
}[] | undefined;
|
|
5013
5378
|
anchors?: {
|
|
@@ -5055,6 +5420,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5055
5420
|
name: string;
|
|
5056
5421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5057
5422
|
} | undefined;
|
|
5423
|
+
color?: {
|
|
5424
|
+
light?: string | undefined;
|
|
5425
|
+
dark?: string | undefined;
|
|
5426
|
+
} | undefined;
|
|
5427
|
+
description?: string | undefined;
|
|
5058
5428
|
hidden?: boolean | undefined;
|
|
5059
5429
|
}[] | undefined;
|
|
5060
5430
|
anchors?: {
|
|
@@ -5102,6 +5472,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5102
5472
|
name: string;
|
|
5103
5473
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5104
5474
|
} | undefined;
|
|
5475
|
+
color?: {
|
|
5476
|
+
light?: string | undefined;
|
|
5477
|
+
dark?: string | undefined;
|
|
5478
|
+
} | undefined;
|
|
5479
|
+
description?: string | undefined;
|
|
5105
5480
|
hidden?: boolean | undefined;
|
|
5106
5481
|
}[] | undefined;
|
|
5107
5482
|
anchors?: {
|
|
@@ -5173,6 +5548,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5173
5548
|
name: string;
|
|
5174
5549
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5175
5550
|
} | undefined;
|
|
5551
|
+
color?: {
|
|
5552
|
+
light?: string | undefined;
|
|
5553
|
+
dark?: string | undefined;
|
|
5554
|
+
} | undefined;
|
|
5555
|
+
description?: string | undefined;
|
|
5176
5556
|
hidden?: boolean | undefined;
|
|
5177
5557
|
}[] | undefined;
|
|
5178
5558
|
anchors?: {
|
|
@@ -5220,6 +5600,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5220
5600
|
name: string;
|
|
5221
5601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5222
5602
|
} | undefined;
|
|
5603
|
+
color?: {
|
|
5604
|
+
light?: string | undefined;
|
|
5605
|
+
dark?: string | undefined;
|
|
5606
|
+
} | undefined;
|
|
5607
|
+
description?: string | undefined;
|
|
5223
5608
|
hidden?: boolean | undefined;
|
|
5224
5609
|
}[] | undefined;
|
|
5225
5610
|
anchors?: {
|
|
@@ -5267,6 +5652,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5267
5652
|
name: string;
|
|
5268
5653
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5269
5654
|
} | undefined;
|
|
5655
|
+
color?: {
|
|
5656
|
+
light?: string | undefined;
|
|
5657
|
+
dark?: string | undefined;
|
|
5658
|
+
} | undefined;
|
|
5659
|
+
description?: string | undefined;
|
|
5270
5660
|
hidden?: boolean | undefined;
|
|
5271
5661
|
}[] | undefined;
|
|
5272
5662
|
anchors?: {
|
|
@@ -5314,6 +5704,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5314
5704
|
name: string;
|
|
5315
5705
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5316
5706
|
} | undefined;
|
|
5707
|
+
color?: {
|
|
5708
|
+
light?: string | undefined;
|
|
5709
|
+
dark?: string | undefined;
|
|
5710
|
+
} | undefined;
|
|
5711
|
+
description?: string | undefined;
|
|
5317
5712
|
hidden?: boolean | undefined;
|
|
5318
5713
|
}[] | undefined;
|
|
5319
5714
|
anchors?: {
|
|
@@ -5361,6 +5756,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5361
5756
|
name: string;
|
|
5362
5757
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5363
5758
|
} | undefined;
|
|
5759
|
+
color?: {
|
|
5760
|
+
light?: string | undefined;
|
|
5761
|
+
dark?: string | undefined;
|
|
5762
|
+
} | undefined;
|
|
5763
|
+
description?: string | undefined;
|
|
5364
5764
|
hidden?: boolean | undefined;
|
|
5365
5765
|
}[] | undefined;
|
|
5366
5766
|
anchors?: {
|
|
@@ -5408,6 +5808,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5408
5808
|
name: string;
|
|
5409
5809
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5410
5810
|
} | undefined;
|
|
5811
|
+
color?: {
|
|
5812
|
+
light?: string | undefined;
|
|
5813
|
+
dark?: string | undefined;
|
|
5814
|
+
} | undefined;
|
|
5815
|
+
description?: string | undefined;
|
|
5411
5816
|
hidden?: boolean | undefined;
|
|
5412
5817
|
}[] | undefined;
|
|
5413
5818
|
anchors?: {
|
|
@@ -5455,6 +5860,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5455
5860
|
name: string;
|
|
5456
5861
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5457
5862
|
} | undefined;
|
|
5863
|
+
color?: {
|
|
5864
|
+
light?: string | undefined;
|
|
5865
|
+
dark?: string | undefined;
|
|
5866
|
+
} | undefined;
|
|
5867
|
+
description?: string | undefined;
|
|
5458
5868
|
hidden?: boolean | undefined;
|
|
5459
5869
|
}[] | undefined;
|
|
5460
5870
|
anchors?: {
|
|
@@ -5526,6 +5936,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5526
5936
|
name: string;
|
|
5527
5937
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5528
5938
|
} | undefined;
|
|
5939
|
+
color?: {
|
|
5940
|
+
light?: string | undefined;
|
|
5941
|
+
dark?: string | undefined;
|
|
5942
|
+
} | undefined;
|
|
5943
|
+
description?: string | undefined;
|
|
5529
5944
|
hidden?: boolean | undefined;
|
|
5530
5945
|
}[] | undefined;
|
|
5531
5946
|
anchors?: {
|
|
@@ -5573,6 +5988,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5573
5988
|
name: string;
|
|
5574
5989
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5575
5990
|
} | undefined;
|
|
5991
|
+
color?: {
|
|
5992
|
+
light?: string | undefined;
|
|
5993
|
+
dark?: string | undefined;
|
|
5994
|
+
} | undefined;
|
|
5995
|
+
description?: string | undefined;
|
|
5576
5996
|
hidden?: boolean | undefined;
|
|
5577
5997
|
}[] | undefined;
|
|
5578
5998
|
anchors?: {
|
|
@@ -5793,6 +6213,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5793
6213
|
name: string;
|
|
5794
6214
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5795
6215
|
} | undefined;
|
|
6216
|
+
color?: {
|
|
6217
|
+
light?: string | undefined;
|
|
6218
|
+
dark?: string | undefined;
|
|
6219
|
+
} | undefined;
|
|
6220
|
+
description?: string | undefined;
|
|
5796
6221
|
hidden?: boolean | undefined;
|
|
5797
6222
|
}[] | undefined;
|
|
5798
6223
|
anchors?: {
|
|
@@ -5840,6 +6265,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5840
6265
|
name: string;
|
|
5841
6266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5842
6267
|
} | undefined;
|
|
6268
|
+
color?: {
|
|
6269
|
+
light?: string | undefined;
|
|
6270
|
+
dark?: string | undefined;
|
|
6271
|
+
} | undefined;
|
|
6272
|
+
description?: string | undefined;
|
|
5843
6273
|
hidden?: boolean | undefined;
|
|
5844
6274
|
}[] | undefined;
|
|
5845
6275
|
anchors?: {
|
|
@@ -5887,6 +6317,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5887
6317
|
name: string;
|
|
5888
6318
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5889
6319
|
} | undefined;
|
|
6320
|
+
color?: {
|
|
6321
|
+
light?: string | undefined;
|
|
6322
|
+
dark?: string | undefined;
|
|
6323
|
+
} | undefined;
|
|
6324
|
+
description?: string | undefined;
|
|
5890
6325
|
hidden?: boolean | undefined;
|
|
5891
6326
|
}[] | undefined;
|
|
5892
6327
|
anchors?: {
|
|
@@ -5934,6 +6369,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5934
6369
|
name: string;
|
|
5935
6370
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5936
6371
|
} | undefined;
|
|
6372
|
+
color?: {
|
|
6373
|
+
light?: string | undefined;
|
|
6374
|
+
dark?: string | undefined;
|
|
6375
|
+
} | undefined;
|
|
6376
|
+
description?: string | undefined;
|
|
5937
6377
|
hidden?: boolean | undefined;
|
|
5938
6378
|
}[] | undefined;
|
|
5939
6379
|
anchors?: {
|
|
@@ -5981,6 +6421,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5981
6421
|
name: string;
|
|
5982
6422
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5983
6423
|
} | undefined;
|
|
6424
|
+
color?: {
|
|
6425
|
+
light?: string | undefined;
|
|
6426
|
+
dark?: string | undefined;
|
|
6427
|
+
} | undefined;
|
|
6428
|
+
description?: string | undefined;
|
|
5984
6429
|
hidden?: boolean | undefined;
|
|
5985
6430
|
}[] | undefined;
|
|
5986
6431
|
anchors?: {
|
|
@@ -6052,6 +6497,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6052
6497
|
name: string;
|
|
6053
6498
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6054
6499
|
} | undefined;
|
|
6500
|
+
color?: {
|
|
6501
|
+
light?: string | undefined;
|
|
6502
|
+
dark?: string | undefined;
|
|
6503
|
+
} | undefined;
|
|
6504
|
+
description?: string | undefined;
|
|
6055
6505
|
hidden?: boolean | undefined;
|
|
6056
6506
|
}[] | undefined;
|
|
6057
6507
|
anchors?: {
|
|
@@ -6099,6 +6549,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6099
6549
|
name: string;
|
|
6100
6550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6101
6551
|
} | undefined;
|
|
6552
|
+
color?: {
|
|
6553
|
+
light?: string | undefined;
|
|
6554
|
+
dark?: string | undefined;
|
|
6555
|
+
} | undefined;
|
|
6556
|
+
description?: string | undefined;
|
|
6102
6557
|
hidden?: boolean | undefined;
|
|
6103
6558
|
}[] | undefined;
|
|
6104
6559
|
anchors?: {
|
|
@@ -6146,6 +6601,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6146
6601
|
name: string;
|
|
6147
6602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6148
6603
|
} | undefined;
|
|
6604
|
+
color?: {
|
|
6605
|
+
light?: string | undefined;
|
|
6606
|
+
dark?: string | undefined;
|
|
6607
|
+
} | undefined;
|
|
6608
|
+
description?: string | undefined;
|
|
6149
6609
|
hidden?: boolean | undefined;
|
|
6150
6610
|
}[] | undefined;
|
|
6151
6611
|
anchors?: {
|
|
@@ -6193,6 +6653,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6193
6653
|
name: string;
|
|
6194
6654
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6195
6655
|
} | undefined;
|
|
6656
|
+
color?: {
|
|
6657
|
+
light?: string | undefined;
|
|
6658
|
+
dark?: string | undefined;
|
|
6659
|
+
} | undefined;
|
|
6660
|
+
description?: string | undefined;
|
|
6196
6661
|
hidden?: boolean | undefined;
|
|
6197
6662
|
}[] | undefined;
|
|
6198
6663
|
anchors?: {
|
|
@@ -6240,6 +6705,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6240
6705
|
name: string;
|
|
6241
6706
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6242
6707
|
} | undefined;
|
|
6708
|
+
color?: {
|
|
6709
|
+
light?: string | undefined;
|
|
6710
|
+
dark?: string | undefined;
|
|
6711
|
+
} | undefined;
|
|
6712
|
+
description?: string | undefined;
|
|
6243
6713
|
hidden?: boolean | undefined;
|
|
6244
6714
|
}[] | undefined;
|
|
6245
6715
|
anchors?: {
|
|
@@ -6287,6 +6757,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6287
6757
|
name: string;
|
|
6288
6758
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6289
6759
|
} | undefined;
|
|
6760
|
+
color?: {
|
|
6761
|
+
light?: string | undefined;
|
|
6762
|
+
dark?: string | undefined;
|
|
6763
|
+
} | undefined;
|
|
6764
|
+
description?: string | undefined;
|
|
6290
6765
|
hidden?: boolean | undefined;
|
|
6291
6766
|
}[] | undefined;
|
|
6292
6767
|
anchors?: {
|
|
@@ -6334,6 +6809,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6334
6809
|
name: string;
|
|
6335
6810
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6336
6811
|
} | undefined;
|
|
6812
|
+
color?: {
|
|
6813
|
+
light?: string | undefined;
|
|
6814
|
+
dark?: string | undefined;
|
|
6815
|
+
} | undefined;
|
|
6816
|
+
description?: string | undefined;
|
|
6337
6817
|
hidden?: boolean | undefined;
|
|
6338
6818
|
}[] | undefined;
|
|
6339
6819
|
anchors?: {
|
|
@@ -6405,6 +6885,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6405
6885
|
name: string;
|
|
6406
6886
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6407
6887
|
} | undefined;
|
|
6888
|
+
color?: {
|
|
6889
|
+
light?: string | undefined;
|
|
6890
|
+
dark?: string | undefined;
|
|
6891
|
+
} | undefined;
|
|
6892
|
+
description?: string | undefined;
|
|
6408
6893
|
hidden?: boolean | undefined;
|
|
6409
6894
|
}[] | undefined;
|
|
6410
6895
|
anchors?: {
|
|
@@ -6452,6 +6937,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6452
6937
|
name: string;
|
|
6453
6938
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6454
6939
|
} | undefined;
|
|
6940
|
+
color?: {
|
|
6941
|
+
light?: string | undefined;
|
|
6942
|
+
dark?: string | undefined;
|
|
6943
|
+
} | undefined;
|
|
6944
|
+
description?: string | undefined;
|
|
6455
6945
|
hidden?: boolean | undefined;
|
|
6456
6946
|
}[] | undefined;
|
|
6457
6947
|
anchors?: {
|
|
@@ -6672,6 +7162,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6672
7162
|
name: string;
|
|
6673
7163
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6674
7164
|
} | undefined;
|
|
7165
|
+
color?: {
|
|
7166
|
+
light?: string | undefined;
|
|
7167
|
+
dark?: string | undefined;
|
|
7168
|
+
} | undefined;
|
|
7169
|
+
description?: string | undefined;
|
|
6675
7170
|
hidden?: boolean | undefined;
|
|
6676
7171
|
}[] | undefined;
|
|
6677
7172
|
anchors?: {
|
|
@@ -6719,6 +7214,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6719
7214
|
name: string;
|
|
6720
7215
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6721
7216
|
} | undefined;
|
|
7217
|
+
color?: {
|
|
7218
|
+
light?: string | undefined;
|
|
7219
|
+
dark?: string | undefined;
|
|
7220
|
+
} | undefined;
|
|
7221
|
+
description?: string | undefined;
|
|
6722
7222
|
hidden?: boolean | undefined;
|
|
6723
7223
|
}[] | undefined;
|
|
6724
7224
|
anchors?: {
|
|
@@ -6766,6 +7266,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6766
7266
|
name: string;
|
|
6767
7267
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6768
7268
|
} | undefined;
|
|
7269
|
+
color?: {
|
|
7270
|
+
light?: string | undefined;
|
|
7271
|
+
dark?: string | undefined;
|
|
7272
|
+
} | undefined;
|
|
7273
|
+
description?: string | undefined;
|
|
6769
7274
|
hidden?: boolean | undefined;
|
|
6770
7275
|
}[] | undefined;
|
|
6771
7276
|
anchors?: {
|
|
@@ -6813,6 +7318,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6813
7318
|
name: string;
|
|
6814
7319
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6815
7320
|
} | undefined;
|
|
7321
|
+
color?: {
|
|
7322
|
+
light?: string | undefined;
|
|
7323
|
+
dark?: string | undefined;
|
|
7324
|
+
} | undefined;
|
|
7325
|
+
description?: string | undefined;
|
|
6816
7326
|
hidden?: boolean | undefined;
|
|
6817
7327
|
}[] | undefined;
|
|
6818
7328
|
anchors?: {
|
|
@@ -6860,6 +7370,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6860
7370
|
name: string;
|
|
6861
7371
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6862
7372
|
} | undefined;
|
|
7373
|
+
color?: {
|
|
7374
|
+
light?: string | undefined;
|
|
7375
|
+
dark?: string | undefined;
|
|
7376
|
+
} | undefined;
|
|
7377
|
+
description?: string | undefined;
|
|
6863
7378
|
hidden?: boolean | undefined;
|
|
6864
7379
|
}[] | undefined;
|
|
6865
7380
|
anchors?: {
|
|
@@ -6931,6 +7446,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6931
7446
|
name: string;
|
|
6932
7447
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6933
7448
|
} | undefined;
|
|
7449
|
+
color?: {
|
|
7450
|
+
light?: string | undefined;
|
|
7451
|
+
dark?: string | undefined;
|
|
7452
|
+
} | undefined;
|
|
7453
|
+
description?: string | undefined;
|
|
6934
7454
|
hidden?: boolean | undefined;
|
|
6935
7455
|
}[] | undefined;
|
|
6936
7456
|
anchors?: {
|
|
@@ -6978,6 +7498,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6978
7498
|
name: string;
|
|
6979
7499
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6980
7500
|
} | undefined;
|
|
7501
|
+
color?: {
|
|
7502
|
+
light?: string | undefined;
|
|
7503
|
+
dark?: string | undefined;
|
|
7504
|
+
} | undefined;
|
|
7505
|
+
description?: string | undefined;
|
|
6981
7506
|
hidden?: boolean | undefined;
|
|
6982
7507
|
}[] | undefined;
|
|
6983
7508
|
anchors?: {
|
|
@@ -7025,6 +7550,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7025
7550
|
name: string;
|
|
7026
7551
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7027
7552
|
} | undefined;
|
|
7553
|
+
color?: {
|
|
7554
|
+
light?: string | undefined;
|
|
7555
|
+
dark?: string | undefined;
|
|
7556
|
+
} | undefined;
|
|
7557
|
+
description?: string | undefined;
|
|
7028
7558
|
hidden?: boolean | undefined;
|
|
7029
7559
|
}[] | undefined;
|
|
7030
7560
|
anchors?: {
|
|
@@ -7072,6 +7602,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7072
7602
|
name: string;
|
|
7073
7603
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7074
7604
|
} | undefined;
|
|
7605
|
+
color?: {
|
|
7606
|
+
light?: string | undefined;
|
|
7607
|
+
dark?: string | undefined;
|
|
7608
|
+
} | undefined;
|
|
7609
|
+
description?: string | undefined;
|
|
7075
7610
|
hidden?: boolean | undefined;
|
|
7076
7611
|
}[] | undefined;
|
|
7077
7612
|
anchors?: {
|
|
@@ -7119,6 +7654,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7119
7654
|
name: string;
|
|
7120
7655
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7121
7656
|
} | undefined;
|
|
7657
|
+
color?: {
|
|
7658
|
+
light?: string | undefined;
|
|
7659
|
+
dark?: string | undefined;
|
|
7660
|
+
} | undefined;
|
|
7661
|
+
description?: string | undefined;
|
|
7122
7662
|
hidden?: boolean | undefined;
|
|
7123
7663
|
}[] | undefined;
|
|
7124
7664
|
anchors?: {
|
|
@@ -7166,6 +7706,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7166
7706
|
name: string;
|
|
7167
7707
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7168
7708
|
} | undefined;
|
|
7709
|
+
color?: {
|
|
7710
|
+
light?: string | undefined;
|
|
7711
|
+
dark?: string | undefined;
|
|
7712
|
+
} | undefined;
|
|
7713
|
+
description?: string | undefined;
|
|
7169
7714
|
hidden?: boolean | undefined;
|
|
7170
7715
|
}[] | undefined;
|
|
7171
7716
|
anchors?: {
|
|
@@ -7213,6 +7758,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7213
7758
|
name: string;
|
|
7214
7759
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7215
7760
|
} | undefined;
|
|
7761
|
+
color?: {
|
|
7762
|
+
light?: string | undefined;
|
|
7763
|
+
dark?: string | undefined;
|
|
7764
|
+
} | undefined;
|
|
7765
|
+
description?: string | undefined;
|
|
7216
7766
|
hidden?: boolean | undefined;
|
|
7217
7767
|
}[] | undefined;
|
|
7218
7768
|
anchors?: {
|
|
@@ -7284,6 +7834,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7284
7834
|
name: string;
|
|
7285
7835
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7286
7836
|
} | undefined;
|
|
7837
|
+
color?: {
|
|
7838
|
+
light?: string | undefined;
|
|
7839
|
+
dark?: string | undefined;
|
|
7840
|
+
} | undefined;
|
|
7841
|
+
description?: string | undefined;
|
|
7287
7842
|
hidden?: boolean | undefined;
|
|
7288
7843
|
}[] | undefined;
|
|
7289
7844
|
anchors?: {
|
|
@@ -7331,6 +7886,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7331
7886
|
name: string;
|
|
7332
7887
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7333
7888
|
} | undefined;
|
|
7889
|
+
color?: {
|
|
7890
|
+
light?: string | undefined;
|
|
7891
|
+
dark?: string | undefined;
|
|
7892
|
+
} | undefined;
|
|
7893
|
+
description?: string | undefined;
|
|
7334
7894
|
hidden?: boolean | undefined;
|
|
7335
7895
|
}[] | undefined;
|
|
7336
7896
|
anchors?: {
|
|
@@ -7551,6 +8111,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7551
8111
|
name: string;
|
|
7552
8112
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7553
8113
|
} | undefined;
|
|
8114
|
+
color?: {
|
|
8115
|
+
light?: string | undefined;
|
|
8116
|
+
dark?: string | undefined;
|
|
8117
|
+
} | undefined;
|
|
8118
|
+
description?: string | undefined;
|
|
7554
8119
|
hidden?: boolean | undefined;
|
|
7555
8120
|
}[] | undefined;
|
|
7556
8121
|
anchors?: {
|
|
@@ -7598,6 +8163,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7598
8163
|
name: string;
|
|
7599
8164
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7600
8165
|
} | undefined;
|
|
8166
|
+
color?: {
|
|
8167
|
+
light?: string | undefined;
|
|
8168
|
+
dark?: string | undefined;
|
|
8169
|
+
} | undefined;
|
|
8170
|
+
description?: string | undefined;
|
|
7601
8171
|
hidden?: boolean | undefined;
|
|
7602
8172
|
}[] | undefined;
|
|
7603
8173
|
anchors?: {
|
|
@@ -7645,6 +8215,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7645
8215
|
name: string;
|
|
7646
8216
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7647
8217
|
} | undefined;
|
|
8218
|
+
color?: {
|
|
8219
|
+
light?: string | undefined;
|
|
8220
|
+
dark?: string | undefined;
|
|
8221
|
+
} | undefined;
|
|
8222
|
+
description?: string | undefined;
|
|
7648
8223
|
hidden?: boolean | undefined;
|
|
7649
8224
|
}[] | undefined;
|
|
7650
8225
|
anchors?: {
|
|
@@ -7692,6 +8267,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7692
8267
|
name: string;
|
|
7693
8268
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7694
8269
|
} | undefined;
|
|
8270
|
+
color?: {
|
|
8271
|
+
light?: string | undefined;
|
|
8272
|
+
dark?: string | undefined;
|
|
8273
|
+
} | undefined;
|
|
8274
|
+
description?: string | undefined;
|
|
7695
8275
|
hidden?: boolean | undefined;
|
|
7696
8276
|
}[] | undefined;
|
|
7697
8277
|
anchors?: {
|
|
@@ -7739,6 +8319,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7739
8319
|
name: string;
|
|
7740
8320
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7741
8321
|
} | undefined;
|
|
8322
|
+
color?: {
|
|
8323
|
+
light?: string | undefined;
|
|
8324
|
+
dark?: string | undefined;
|
|
8325
|
+
} | undefined;
|
|
8326
|
+
description?: string | undefined;
|
|
7742
8327
|
hidden?: boolean | undefined;
|
|
7743
8328
|
}[] | undefined;
|
|
7744
8329
|
anchors?: {
|
|
@@ -7810,6 +8395,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7810
8395
|
name: string;
|
|
7811
8396
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7812
8397
|
} | undefined;
|
|
8398
|
+
color?: {
|
|
8399
|
+
light?: string | undefined;
|
|
8400
|
+
dark?: string | undefined;
|
|
8401
|
+
} | undefined;
|
|
8402
|
+
description?: string | undefined;
|
|
7813
8403
|
hidden?: boolean | undefined;
|
|
7814
8404
|
}[] | undefined;
|
|
7815
8405
|
anchors?: {
|
|
@@ -7857,6 +8447,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7857
8447
|
name: string;
|
|
7858
8448
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7859
8449
|
} | undefined;
|
|
8450
|
+
color?: {
|
|
8451
|
+
light?: string | undefined;
|
|
8452
|
+
dark?: string | undefined;
|
|
8453
|
+
} | undefined;
|
|
8454
|
+
description?: string | undefined;
|
|
7860
8455
|
hidden?: boolean | undefined;
|
|
7861
8456
|
}[] | undefined;
|
|
7862
8457
|
anchors?: {
|
|
@@ -7904,6 +8499,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7904
8499
|
name: string;
|
|
7905
8500
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7906
8501
|
} | undefined;
|
|
8502
|
+
color?: {
|
|
8503
|
+
light?: string | undefined;
|
|
8504
|
+
dark?: string | undefined;
|
|
8505
|
+
} | undefined;
|
|
8506
|
+
description?: string | undefined;
|
|
7907
8507
|
hidden?: boolean | undefined;
|
|
7908
8508
|
}[] | undefined;
|
|
7909
8509
|
anchors?: {
|
|
@@ -7951,6 +8551,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7951
8551
|
name: string;
|
|
7952
8552
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7953
8553
|
} | undefined;
|
|
8554
|
+
color?: {
|
|
8555
|
+
light?: string | undefined;
|
|
8556
|
+
dark?: string | undefined;
|
|
8557
|
+
} | undefined;
|
|
8558
|
+
description?: string | undefined;
|
|
7954
8559
|
hidden?: boolean | undefined;
|
|
7955
8560
|
}[] | undefined;
|
|
7956
8561
|
anchors?: {
|
|
@@ -7998,6 +8603,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7998
8603
|
name: string;
|
|
7999
8604
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8000
8605
|
} | undefined;
|
|
8606
|
+
color?: {
|
|
8607
|
+
light?: string | undefined;
|
|
8608
|
+
dark?: string | undefined;
|
|
8609
|
+
} | undefined;
|
|
8610
|
+
description?: string | undefined;
|
|
8001
8611
|
hidden?: boolean | undefined;
|
|
8002
8612
|
}[] | undefined;
|
|
8003
8613
|
anchors?: {
|
|
@@ -8045,6 +8655,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8045
8655
|
name: string;
|
|
8046
8656
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8047
8657
|
} | undefined;
|
|
8658
|
+
color?: {
|
|
8659
|
+
light?: string | undefined;
|
|
8660
|
+
dark?: string | undefined;
|
|
8661
|
+
} | undefined;
|
|
8662
|
+
description?: string | undefined;
|
|
8048
8663
|
hidden?: boolean | undefined;
|
|
8049
8664
|
}[] | undefined;
|
|
8050
8665
|
anchors?: {
|
|
@@ -8092,6 +8707,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8092
8707
|
name: string;
|
|
8093
8708
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8094
8709
|
} | undefined;
|
|
8710
|
+
color?: {
|
|
8711
|
+
light?: string | undefined;
|
|
8712
|
+
dark?: string | undefined;
|
|
8713
|
+
} | undefined;
|
|
8714
|
+
description?: string | undefined;
|
|
8095
8715
|
hidden?: boolean | undefined;
|
|
8096
8716
|
}[] | undefined;
|
|
8097
8717
|
anchors?: {
|
|
@@ -8163,6 +8783,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8163
8783
|
name: string;
|
|
8164
8784
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8165
8785
|
} | undefined;
|
|
8786
|
+
color?: {
|
|
8787
|
+
light?: string | undefined;
|
|
8788
|
+
dark?: string | undefined;
|
|
8789
|
+
} | undefined;
|
|
8790
|
+
description?: string | undefined;
|
|
8166
8791
|
hidden?: boolean | undefined;
|
|
8167
8792
|
}[] | undefined;
|
|
8168
8793
|
anchors?: {
|
|
@@ -8210,6 +8835,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8210
8835
|
name: string;
|
|
8211
8836
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8212
8837
|
} | undefined;
|
|
8838
|
+
color?: {
|
|
8839
|
+
light?: string | undefined;
|
|
8840
|
+
dark?: string | undefined;
|
|
8841
|
+
} | undefined;
|
|
8842
|
+
description?: string | undefined;
|
|
8213
8843
|
hidden?: boolean | undefined;
|
|
8214
8844
|
}[] | undefined;
|
|
8215
8845
|
anchors?: {
|
|
@@ -8430,6 +9060,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8430
9060
|
name: string;
|
|
8431
9061
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8432
9062
|
} | undefined;
|
|
9063
|
+
color?: {
|
|
9064
|
+
light?: string | undefined;
|
|
9065
|
+
dark?: string | undefined;
|
|
9066
|
+
} | undefined;
|
|
9067
|
+
description?: string | undefined;
|
|
8433
9068
|
hidden?: boolean | undefined;
|
|
8434
9069
|
}[] | undefined;
|
|
8435
9070
|
anchors?: {
|
|
@@ -8477,6 +9112,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8477
9112
|
name: string;
|
|
8478
9113
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8479
9114
|
} | undefined;
|
|
9115
|
+
color?: {
|
|
9116
|
+
light?: string | undefined;
|
|
9117
|
+
dark?: string | undefined;
|
|
9118
|
+
} | undefined;
|
|
9119
|
+
description?: string | undefined;
|
|
8480
9120
|
hidden?: boolean | undefined;
|
|
8481
9121
|
}[] | undefined;
|
|
8482
9122
|
anchors?: {
|
|
@@ -8524,6 +9164,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8524
9164
|
name: string;
|
|
8525
9165
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8526
9166
|
} | undefined;
|
|
9167
|
+
color?: {
|
|
9168
|
+
light?: string | undefined;
|
|
9169
|
+
dark?: string | undefined;
|
|
9170
|
+
} | undefined;
|
|
9171
|
+
description?: string | undefined;
|
|
8527
9172
|
hidden?: boolean | undefined;
|
|
8528
9173
|
}[] | undefined;
|
|
8529
9174
|
anchors?: {
|
|
@@ -8571,6 +9216,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8571
9216
|
name: string;
|
|
8572
9217
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8573
9218
|
} | undefined;
|
|
9219
|
+
color?: {
|
|
9220
|
+
light?: string | undefined;
|
|
9221
|
+
dark?: string | undefined;
|
|
9222
|
+
} | undefined;
|
|
9223
|
+
description?: string | undefined;
|
|
8574
9224
|
hidden?: boolean | undefined;
|
|
8575
9225
|
}[] | undefined;
|
|
8576
9226
|
anchors?: {
|
|
@@ -8618,6 +9268,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8618
9268
|
name: string;
|
|
8619
9269
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8620
9270
|
} | undefined;
|
|
9271
|
+
color?: {
|
|
9272
|
+
light?: string | undefined;
|
|
9273
|
+
dark?: string | undefined;
|
|
9274
|
+
} | undefined;
|
|
9275
|
+
description?: string | undefined;
|
|
8621
9276
|
hidden?: boolean | undefined;
|
|
8622
9277
|
}[] | undefined;
|
|
8623
9278
|
anchors?: {
|
|
@@ -8689,6 +9344,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8689
9344
|
name: string;
|
|
8690
9345
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8691
9346
|
} | undefined;
|
|
9347
|
+
color?: {
|
|
9348
|
+
light?: string | undefined;
|
|
9349
|
+
dark?: string | undefined;
|
|
9350
|
+
} | undefined;
|
|
9351
|
+
description?: string | undefined;
|
|
8692
9352
|
hidden?: boolean | undefined;
|
|
8693
9353
|
}[] | undefined;
|
|
8694
9354
|
anchors?: {
|
|
@@ -8736,6 +9396,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8736
9396
|
name: string;
|
|
8737
9397
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8738
9398
|
} | undefined;
|
|
9399
|
+
color?: {
|
|
9400
|
+
light?: string | undefined;
|
|
9401
|
+
dark?: string | undefined;
|
|
9402
|
+
} | undefined;
|
|
9403
|
+
description?: string | undefined;
|
|
8739
9404
|
hidden?: boolean | undefined;
|
|
8740
9405
|
}[] | undefined;
|
|
8741
9406
|
anchors?: {
|
|
@@ -8783,6 +9448,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8783
9448
|
name: string;
|
|
8784
9449
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8785
9450
|
} | undefined;
|
|
9451
|
+
color?: {
|
|
9452
|
+
light?: string | undefined;
|
|
9453
|
+
dark?: string | undefined;
|
|
9454
|
+
} | undefined;
|
|
9455
|
+
description?: string | undefined;
|
|
8786
9456
|
hidden?: boolean | undefined;
|
|
8787
9457
|
}[] | undefined;
|
|
8788
9458
|
anchors?: {
|
|
@@ -8830,6 +9500,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8830
9500
|
name: string;
|
|
8831
9501
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8832
9502
|
} | undefined;
|
|
9503
|
+
color?: {
|
|
9504
|
+
light?: string | undefined;
|
|
9505
|
+
dark?: string | undefined;
|
|
9506
|
+
} | undefined;
|
|
9507
|
+
description?: string | undefined;
|
|
8833
9508
|
hidden?: boolean | undefined;
|
|
8834
9509
|
}[] | undefined;
|
|
8835
9510
|
anchors?: {
|
|
@@ -8877,6 +9552,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8877
9552
|
name: string;
|
|
8878
9553
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8879
9554
|
} | undefined;
|
|
9555
|
+
color?: {
|
|
9556
|
+
light?: string | undefined;
|
|
9557
|
+
dark?: string | undefined;
|
|
9558
|
+
} | undefined;
|
|
9559
|
+
description?: string | undefined;
|
|
8880
9560
|
hidden?: boolean | undefined;
|
|
8881
9561
|
}[] | undefined;
|
|
8882
9562
|
anchors?: {
|
|
@@ -8924,6 +9604,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8924
9604
|
name: string;
|
|
8925
9605
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8926
9606
|
} | undefined;
|
|
9607
|
+
color?: {
|
|
9608
|
+
light?: string | undefined;
|
|
9609
|
+
dark?: string | undefined;
|
|
9610
|
+
} | undefined;
|
|
9611
|
+
description?: string | undefined;
|
|
8927
9612
|
hidden?: boolean | undefined;
|
|
8928
9613
|
}[] | undefined;
|
|
8929
9614
|
anchors?: {
|
|
@@ -8971,6 +9656,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
8971
9656
|
name: string;
|
|
8972
9657
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8973
9658
|
} | undefined;
|
|
9659
|
+
color?: {
|
|
9660
|
+
light?: string | undefined;
|
|
9661
|
+
dark?: string | undefined;
|
|
9662
|
+
} | undefined;
|
|
9663
|
+
description?: string | undefined;
|
|
8974
9664
|
hidden?: boolean | undefined;
|
|
8975
9665
|
}[] | undefined;
|
|
8976
9666
|
anchors?: {
|
|
@@ -9042,6 +9732,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
9042
9732
|
name: string;
|
|
9043
9733
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9044
9734
|
} | undefined;
|
|
9735
|
+
color?: {
|
|
9736
|
+
light?: string | undefined;
|
|
9737
|
+
dark?: string | undefined;
|
|
9738
|
+
} | undefined;
|
|
9739
|
+
description?: string | undefined;
|
|
9045
9740
|
hidden?: boolean | undefined;
|
|
9046
9741
|
}[] | undefined;
|
|
9047
9742
|
anchors?: {
|
|
@@ -9089,6 +9784,11 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
9089
9784
|
name: string;
|
|
9090
9785
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9091
9786
|
} | undefined;
|
|
9787
|
+
color?: {
|
|
9788
|
+
light?: string | undefined;
|
|
9789
|
+
dark?: string | undefined;
|
|
9790
|
+
} | undefined;
|
|
9791
|
+
description?: string | undefined;
|
|
9092
9792
|
hidden?: boolean | undefined;
|
|
9093
9793
|
}[] | undefined;
|
|
9094
9794
|
anchors?: {
|