@mintlify/validation 0.1.241 → 0.1.243
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 +160 -252
- package/dist/mint-config/schemas/v2/properties/background.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/background.js +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +2 -2
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +14 -14
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +18 -18
- package/dist/mint-config/schemas/v2/properties/reusable/color.d.ts +7 -7
- package/dist/mint-config/schemas/v2/properties/reusable/color.js +3 -3
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +40 -63
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +40 -63
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +40 -63
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +28 -41
- package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +40 -63
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +13 -29
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -76,19 +76,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
76
76
|
languages?: string[] | undefined;
|
|
77
77
|
} | undefined;
|
|
78
78
|
}>>;
|
|
79
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
80
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
83
|
-
}, "strip", z.ZodTypeAny, {
|
|
84
|
-
thumbs?: boolean | undefined;
|
|
85
|
-
edits?: boolean | undefined;
|
|
86
|
-
issues?: boolean | undefined;
|
|
87
|
-
}, {
|
|
88
|
-
thumbs?: boolean | undefined;
|
|
89
|
-
edits?: boolean | undefined;
|
|
90
|
-
issues?: boolean | undefined;
|
|
91
|
-
}>>;
|
|
92
79
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
93
80
|
default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
|
|
94
81
|
strict: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -112,14 +99,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
112
99
|
}>]>>;
|
|
113
100
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
114
101
|
color: z.ZodOptional<z.ZodObject<{
|
|
115
|
-
light: z.ZodString
|
|
116
|
-
dark: z.ZodString
|
|
102
|
+
light: z.ZodOptional<z.ZodString>;
|
|
103
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
117
104
|
}, "strict", z.ZodTypeAny, {
|
|
118
|
-
light
|
|
119
|
-
dark
|
|
105
|
+
light?: string | undefined;
|
|
106
|
+
dark?: string | undefined;
|
|
120
107
|
}, {
|
|
121
|
-
light
|
|
122
|
-
dark
|
|
108
|
+
light?: string | undefined;
|
|
109
|
+
dark?: string | undefined;
|
|
123
110
|
}>>;
|
|
124
111
|
}, "strip", z.ZodTypeAny, {
|
|
125
112
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -128,8 +115,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
128
115
|
dark: string;
|
|
129
116
|
} | undefined;
|
|
130
117
|
color?: {
|
|
131
|
-
light
|
|
132
|
-
dark
|
|
118
|
+
light?: string | undefined;
|
|
119
|
+
dark?: string | undefined;
|
|
133
120
|
} | undefined;
|
|
134
121
|
}, {
|
|
135
122
|
image?: string | {
|
|
@@ -138,8 +125,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
138
125
|
} | undefined;
|
|
139
126
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
140
127
|
color?: {
|
|
141
|
-
light
|
|
142
|
-
dark
|
|
128
|
+
light?: string | undefined;
|
|
129
|
+
dark?: string | undefined;
|
|
143
130
|
} | undefined;
|
|
144
131
|
}>>;
|
|
145
132
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -610,14 +597,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
610
597
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
611
598
|
}>]>>;
|
|
612
599
|
color: z.ZodOptional<z.ZodObject<{
|
|
613
|
-
light: z.ZodString
|
|
614
|
-
dark: z.ZodString
|
|
600
|
+
light: z.ZodOptional<z.ZodString>;
|
|
601
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
615
602
|
}, "strict", z.ZodTypeAny, {
|
|
616
|
-
light
|
|
617
|
-
dark
|
|
603
|
+
light?: string | undefined;
|
|
604
|
+
dark?: string | undefined;
|
|
618
605
|
}, {
|
|
619
|
-
light
|
|
620
|
-
dark
|
|
606
|
+
light?: string | undefined;
|
|
607
|
+
dark?: string | undefined;
|
|
621
608
|
}>>;
|
|
622
609
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
623
610
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -627,8 +614,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
627
614
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
628
615
|
} | undefined;
|
|
629
616
|
color?: {
|
|
630
|
-
light
|
|
631
|
-
dark
|
|
617
|
+
light?: string | undefined;
|
|
618
|
+
dark?: string | undefined;
|
|
632
619
|
} | undefined;
|
|
633
620
|
hidden?: boolean | undefined;
|
|
634
621
|
}, {
|
|
@@ -638,8 +625,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
638
625
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
639
626
|
} | undefined;
|
|
640
627
|
color?: {
|
|
641
|
-
light
|
|
642
|
-
dark
|
|
628
|
+
light?: string | undefined;
|
|
629
|
+
dark?: string | undefined;
|
|
643
630
|
} | undefined;
|
|
644
631
|
hidden?: boolean | undefined;
|
|
645
632
|
}>, z.ZodObject<{
|
|
@@ -689,8 +676,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
689
676
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
690
677
|
} | undefined;
|
|
691
678
|
color?: {
|
|
692
|
-
light
|
|
693
|
-
dark
|
|
679
|
+
light?: string | undefined;
|
|
680
|
+
dark?: string | undefined;
|
|
694
681
|
} | undefined;
|
|
695
682
|
hidden?: boolean | undefined;
|
|
696
683
|
} & {
|
|
@@ -736,8 +723,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
736
723
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
737
724
|
} | undefined;
|
|
738
725
|
color?: {
|
|
739
|
-
light
|
|
740
|
-
dark
|
|
726
|
+
light?: string | undefined;
|
|
727
|
+
dark?: string | undefined;
|
|
741
728
|
} | undefined;
|
|
742
729
|
hidden?: boolean | undefined;
|
|
743
730
|
} & {
|
|
@@ -785,8 +772,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
785
772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
786
773
|
} | undefined;
|
|
787
774
|
color?: {
|
|
788
|
-
light
|
|
789
|
-
dark
|
|
775
|
+
light?: string | undefined;
|
|
776
|
+
dark?: string | undefined;
|
|
790
777
|
} | undefined;
|
|
791
778
|
hidden?: boolean | undefined;
|
|
792
779
|
} & {
|
|
@@ -834,8 +821,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
834
821
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
835
822
|
} | undefined;
|
|
836
823
|
color?: {
|
|
837
|
-
light
|
|
838
|
-
dark
|
|
824
|
+
light?: string | undefined;
|
|
825
|
+
dark?: string | undefined;
|
|
839
826
|
} | undefined;
|
|
840
827
|
hidden?: boolean | undefined;
|
|
841
828
|
} & {
|
|
@@ -1400,8 +1387,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1400
1387
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1401
1388
|
} | undefined;
|
|
1402
1389
|
color?: {
|
|
1403
|
-
light
|
|
1404
|
-
dark
|
|
1390
|
+
light?: string | undefined;
|
|
1391
|
+
dark?: string | undefined;
|
|
1405
1392
|
} | undefined;
|
|
1406
1393
|
hidden?: boolean | undefined;
|
|
1407
1394
|
} & {
|
|
@@ -1506,8 +1493,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1506
1493
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1507
1494
|
} | undefined;
|
|
1508
1495
|
color?: {
|
|
1509
|
-
light
|
|
1510
|
-
dark
|
|
1496
|
+
light?: string | undefined;
|
|
1497
|
+
dark?: string | undefined;
|
|
1511
1498
|
} | undefined;
|
|
1512
1499
|
hidden?: boolean | undefined;
|
|
1513
1500
|
} & {
|
|
@@ -1535,11 +1522,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1535
1522
|
languages?: string[] | undefined;
|
|
1536
1523
|
} | undefined;
|
|
1537
1524
|
} | undefined;
|
|
1538
|
-
feedback?: {
|
|
1539
|
-
thumbs?: boolean | undefined;
|
|
1540
|
-
edits?: boolean | undefined;
|
|
1541
|
-
issues?: boolean | undefined;
|
|
1542
|
-
} | undefined;
|
|
1543
1525
|
appearance?: {
|
|
1544
1526
|
strict: boolean;
|
|
1545
1527
|
default: "light" | "dark" | "system";
|
|
@@ -1551,8 +1533,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1551
1533
|
dark: string;
|
|
1552
1534
|
} | undefined;
|
|
1553
1535
|
color?: {
|
|
1554
|
-
light
|
|
1555
|
-
dark
|
|
1536
|
+
light?: string | undefined;
|
|
1537
|
+
dark?: string | undefined;
|
|
1556
1538
|
} | undefined;
|
|
1557
1539
|
} | undefined;
|
|
1558
1540
|
topbar?: {
|
|
@@ -1780,8 +1762,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1780
1762
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1781
1763
|
} | undefined;
|
|
1782
1764
|
color?: {
|
|
1783
|
-
light
|
|
1784
|
-
dark
|
|
1765
|
+
light?: string | undefined;
|
|
1766
|
+
dark?: string | undefined;
|
|
1785
1767
|
} | undefined;
|
|
1786
1768
|
hidden?: boolean | undefined;
|
|
1787
1769
|
} & {
|
|
@@ -1886,8 +1868,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1886
1868
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1887
1869
|
} | undefined;
|
|
1888
1870
|
color?: {
|
|
1889
|
-
light
|
|
1890
|
-
dark
|
|
1871
|
+
light?: string | undefined;
|
|
1872
|
+
dark?: string | undefined;
|
|
1891
1873
|
} | undefined;
|
|
1892
1874
|
hidden?: boolean | undefined;
|
|
1893
1875
|
} & {
|
|
@@ -1916,11 +1898,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1916
1898
|
languages?: string[] | undefined;
|
|
1917
1899
|
} | undefined;
|
|
1918
1900
|
} | undefined;
|
|
1919
|
-
feedback?: {
|
|
1920
|
-
thumbs?: boolean | undefined;
|
|
1921
|
-
edits?: boolean | undefined;
|
|
1922
|
-
issues?: boolean | undefined;
|
|
1923
|
-
} | undefined;
|
|
1924
1901
|
appearance?: {
|
|
1925
1902
|
default?: "light" | "dark" | "system" | undefined;
|
|
1926
1903
|
strict?: boolean | undefined;
|
|
@@ -1932,8 +1909,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1932
1909
|
} | undefined;
|
|
1933
1910
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
1934
1911
|
color?: {
|
|
1935
|
-
light
|
|
1936
|
-
dark
|
|
1912
|
+
light?: string | undefined;
|
|
1913
|
+
dark?: string | undefined;
|
|
1937
1914
|
} | undefined;
|
|
1938
1915
|
} | undefined;
|
|
1939
1916
|
topbar?: {
|
|
@@ -2131,19 +2108,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2131
2108
|
languages?: string[] | undefined;
|
|
2132
2109
|
} | undefined;
|
|
2133
2110
|
}>>;
|
|
2134
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
2135
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
2136
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
2137
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
2138
|
-
}, "strip", z.ZodTypeAny, {
|
|
2139
|
-
thumbs?: boolean | undefined;
|
|
2140
|
-
edits?: boolean | undefined;
|
|
2141
|
-
issues?: boolean | undefined;
|
|
2142
|
-
}, {
|
|
2143
|
-
thumbs?: boolean | undefined;
|
|
2144
|
-
edits?: boolean | undefined;
|
|
2145
|
-
issues?: boolean | undefined;
|
|
2146
|
-
}>>;
|
|
2147
2111
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
2148
2112
|
default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
|
|
2149
2113
|
strict: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -2167,14 +2131,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2167
2131
|
}>]>>;
|
|
2168
2132
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
2169
2133
|
color: z.ZodOptional<z.ZodObject<{
|
|
2170
|
-
light: z.ZodString
|
|
2171
|
-
dark: z.ZodString
|
|
2134
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2135
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2172
2136
|
}, "strict", z.ZodTypeAny, {
|
|
2173
|
-
light
|
|
2174
|
-
dark
|
|
2137
|
+
light?: string | undefined;
|
|
2138
|
+
dark?: string | undefined;
|
|
2175
2139
|
}, {
|
|
2176
|
-
light
|
|
2177
|
-
dark
|
|
2140
|
+
light?: string | undefined;
|
|
2141
|
+
dark?: string | undefined;
|
|
2178
2142
|
}>>;
|
|
2179
2143
|
}, "strip", z.ZodTypeAny, {
|
|
2180
2144
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -2183,8 +2147,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2183
2147
|
dark: string;
|
|
2184
2148
|
} | undefined;
|
|
2185
2149
|
color?: {
|
|
2186
|
-
light
|
|
2187
|
-
dark
|
|
2150
|
+
light?: string | undefined;
|
|
2151
|
+
dark?: string | undefined;
|
|
2188
2152
|
} | undefined;
|
|
2189
2153
|
}, {
|
|
2190
2154
|
image?: string | {
|
|
@@ -2193,8 +2157,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2193
2157
|
} | undefined;
|
|
2194
2158
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
2195
2159
|
color?: {
|
|
2196
|
-
light
|
|
2197
|
-
dark
|
|
2160
|
+
light?: string | undefined;
|
|
2161
|
+
dark?: string | undefined;
|
|
2198
2162
|
} | undefined;
|
|
2199
2163
|
}>>;
|
|
2200
2164
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -2665,14 +2629,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2665
2629
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2666
2630
|
}>]>>;
|
|
2667
2631
|
color: z.ZodOptional<z.ZodObject<{
|
|
2668
|
-
light: z.ZodString
|
|
2669
|
-
dark: z.ZodString
|
|
2632
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2633
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2670
2634
|
}, "strict", z.ZodTypeAny, {
|
|
2671
|
-
light
|
|
2672
|
-
dark
|
|
2635
|
+
light?: string | undefined;
|
|
2636
|
+
dark?: string | undefined;
|
|
2673
2637
|
}, {
|
|
2674
|
-
light
|
|
2675
|
-
dark
|
|
2638
|
+
light?: string | undefined;
|
|
2639
|
+
dark?: string | undefined;
|
|
2676
2640
|
}>>;
|
|
2677
2641
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2678
2642
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2682,8 +2646,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2682
2646
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2683
2647
|
} | undefined;
|
|
2684
2648
|
color?: {
|
|
2685
|
-
light
|
|
2686
|
-
dark
|
|
2649
|
+
light?: string | undefined;
|
|
2650
|
+
dark?: string | undefined;
|
|
2687
2651
|
} | undefined;
|
|
2688
2652
|
hidden?: boolean | undefined;
|
|
2689
2653
|
}, {
|
|
@@ -2693,8 +2657,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2693
2657
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2694
2658
|
} | undefined;
|
|
2695
2659
|
color?: {
|
|
2696
|
-
light
|
|
2697
|
-
dark
|
|
2660
|
+
light?: string | undefined;
|
|
2661
|
+
dark?: string | undefined;
|
|
2698
2662
|
} | undefined;
|
|
2699
2663
|
hidden?: boolean | undefined;
|
|
2700
2664
|
}>, z.ZodObject<{
|
|
@@ -2744,8 +2708,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2744
2708
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2745
2709
|
} | undefined;
|
|
2746
2710
|
color?: {
|
|
2747
|
-
light
|
|
2748
|
-
dark
|
|
2711
|
+
light?: string | undefined;
|
|
2712
|
+
dark?: string | undefined;
|
|
2749
2713
|
} | undefined;
|
|
2750
2714
|
hidden?: boolean | undefined;
|
|
2751
2715
|
} & {
|
|
@@ -2791,8 +2755,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2791
2755
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2792
2756
|
} | undefined;
|
|
2793
2757
|
color?: {
|
|
2794
|
-
light
|
|
2795
|
-
dark
|
|
2758
|
+
light?: string | undefined;
|
|
2759
|
+
dark?: string | undefined;
|
|
2796
2760
|
} | undefined;
|
|
2797
2761
|
hidden?: boolean | undefined;
|
|
2798
2762
|
} & {
|
|
@@ -2840,8 +2804,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2840
2804
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2841
2805
|
} | undefined;
|
|
2842
2806
|
color?: {
|
|
2843
|
-
light
|
|
2844
|
-
dark
|
|
2807
|
+
light?: string | undefined;
|
|
2808
|
+
dark?: string | undefined;
|
|
2845
2809
|
} | undefined;
|
|
2846
2810
|
hidden?: boolean | undefined;
|
|
2847
2811
|
} & {
|
|
@@ -2889,8 +2853,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2889
2853
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2890
2854
|
} | undefined;
|
|
2891
2855
|
color?: {
|
|
2892
|
-
light
|
|
2893
|
-
dark
|
|
2856
|
+
light?: string | undefined;
|
|
2857
|
+
dark?: string | undefined;
|
|
2894
2858
|
} | undefined;
|
|
2895
2859
|
hidden?: boolean | undefined;
|
|
2896
2860
|
} & {
|
|
@@ -3455,8 +3419,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3455
3419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3456
3420
|
} | undefined;
|
|
3457
3421
|
color?: {
|
|
3458
|
-
light
|
|
3459
|
-
dark
|
|
3422
|
+
light?: string | undefined;
|
|
3423
|
+
dark?: string | undefined;
|
|
3460
3424
|
} | undefined;
|
|
3461
3425
|
hidden?: boolean | undefined;
|
|
3462
3426
|
} & {
|
|
@@ -3561,8 +3525,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3561
3525
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3562
3526
|
} | undefined;
|
|
3563
3527
|
color?: {
|
|
3564
|
-
light
|
|
3565
|
-
dark
|
|
3528
|
+
light?: string | undefined;
|
|
3529
|
+
dark?: string | undefined;
|
|
3566
3530
|
} | undefined;
|
|
3567
3531
|
hidden?: boolean | undefined;
|
|
3568
3532
|
} & {
|
|
@@ -3590,11 +3554,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3590
3554
|
languages?: string[] | undefined;
|
|
3591
3555
|
} | undefined;
|
|
3592
3556
|
} | undefined;
|
|
3593
|
-
feedback?: {
|
|
3594
|
-
thumbs?: boolean | undefined;
|
|
3595
|
-
edits?: boolean | undefined;
|
|
3596
|
-
issues?: boolean | undefined;
|
|
3597
|
-
} | undefined;
|
|
3598
3557
|
appearance?: {
|
|
3599
3558
|
strict: boolean;
|
|
3600
3559
|
default: "light" | "dark" | "system";
|
|
@@ -3606,8 +3565,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3606
3565
|
dark: string;
|
|
3607
3566
|
} | undefined;
|
|
3608
3567
|
color?: {
|
|
3609
|
-
light
|
|
3610
|
-
dark
|
|
3568
|
+
light?: string | undefined;
|
|
3569
|
+
dark?: string | undefined;
|
|
3611
3570
|
} | undefined;
|
|
3612
3571
|
} | undefined;
|
|
3613
3572
|
topbar?: {
|
|
@@ -3835,8 +3794,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3835
3794
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3836
3795
|
} | undefined;
|
|
3837
3796
|
color?: {
|
|
3838
|
-
light
|
|
3839
|
-
dark
|
|
3797
|
+
light?: string | undefined;
|
|
3798
|
+
dark?: string | undefined;
|
|
3840
3799
|
} | undefined;
|
|
3841
3800
|
hidden?: boolean | undefined;
|
|
3842
3801
|
} & {
|
|
@@ -3941,8 +3900,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3941
3900
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3942
3901
|
} | undefined;
|
|
3943
3902
|
color?: {
|
|
3944
|
-
light
|
|
3945
|
-
dark
|
|
3903
|
+
light?: string | undefined;
|
|
3904
|
+
dark?: string | undefined;
|
|
3946
3905
|
} | undefined;
|
|
3947
3906
|
hidden?: boolean | undefined;
|
|
3948
3907
|
} & {
|
|
@@ -3971,11 +3930,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3971
3930
|
languages?: string[] | undefined;
|
|
3972
3931
|
} | undefined;
|
|
3973
3932
|
} | undefined;
|
|
3974
|
-
feedback?: {
|
|
3975
|
-
thumbs?: boolean | undefined;
|
|
3976
|
-
edits?: boolean | undefined;
|
|
3977
|
-
issues?: boolean | undefined;
|
|
3978
|
-
} | undefined;
|
|
3979
3933
|
appearance?: {
|
|
3980
3934
|
default?: "light" | "dark" | "system" | undefined;
|
|
3981
3935
|
strict?: boolean | undefined;
|
|
@@ -3987,8 +3941,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3987
3941
|
} | undefined;
|
|
3988
3942
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
3989
3943
|
color?: {
|
|
3990
|
-
light
|
|
3991
|
-
dark
|
|
3944
|
+
light?: string | undefined;
|
|
3945
|
+
dark?: string | undefined;
|
|
3992
3946
|
} | undefined;
|
|
3993
3947
|
} | undefined;
|
|
3994
3948
|
topbar?: {
|
|
@@ -4186,19 +4140,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4186
4140
|
languages?: string[] | undefined;
|
|
4187
4141
|
} | undefined;
|
|
4188
4142
|
}>>;
|
|
4189
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
4190
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
4191
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
4192
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
4193
|
-
}, "strip", z.ZodTypeAny, {
|
|
4194
|
-
thumbs?: boolean | undefined;
|
|
4195
|
-
edits?: boolean | undefined;
|
|
4196
|
-
issues?: boolean | undefined;
|
|
4197
|
-
}, {
|
|
4198
|
-
thumbs?: boolean | undefined;
|
|
4199
|
-
edits?: boolean | undefined;
|
|
4200
|
-
issues?: boolean | undefined;
|
|
4201
|
-
}>>;
|
|
4202
4143
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
4203
4144
|
default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
|
|
4204
4145
|
strict: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -4222,14 +4163,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4222
4163
|
}>]>>;
|
|
4223
4164
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
4224
4165
|
color: z.ZodOptional<z.ZodObject<{
|
|
4225
|
-
light: z.ZodString
|
|
4226
|
-
dark: z.ZodString
|
|
4166
|
+
light: z.ZodOptional<z.ZodString>;
|
|
4167
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
4227
4168
|
}, "strict", z.ZodTypeAny, {
|
|
4228
|
-
light
|
|
4229
|
-
dark
|
|
4169
|
+
light?: string | undefined;
|
|
4170
|
+
dark?: string | undefined;
|
|
4230
4171
|
}, {
|
|
4231
|
-
light
|
|
4232
|
-
dark
|
|
4172
|
+
light?: string | undefined;
|
|
4173
|
+
dark?: string | undefined;
|
|
4233
4174
|
}>>;
|
|
4234
4175
|
}, "strip", z.ZodTypeAny, {
|
|
4235
4176
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -4238,8 +4179,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4238
4179
|
dark: string;
|
|
4239
4180
|
} | undefined;
|
|
4240
4181
|
color?: {
|
|
4241
|
-
light
|
|
4242
|
-
dark
|
|
4182
|
+
light?: string | undefined;
|
|
4183
|
+
dark?: string | undefined;
|
|
4243
4184
|
} | undefined;
|
|
4244
4185
|
}, {
|
|
4245
4186
|
image?: string | {
|
|
@@ -4248,8 +4189,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4248
4189
|
} | undefined;
|
|
4249
4190
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
4250
4191
|
color?: {
|
|
4251
|
-
light
|
|
4252
|
-
dark
|
|
4192
|
+
light?: string | undefined;
|
|
4193
|
+
dark?: string | undefined;
|
|
4253
4194
|
} | undefined;
|
|
4254
4195
|
}>>;
|
|
4255
4196
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -4720,14 +4661,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4720
4661
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4721
4662
|
}>]>>;
|
|
4722
4663
|
color: z.ZodOptional<z.ZodObject<{
|
|
4723
|
-
light: z.ZodString
|
|
4724
|
-
dark: z.ZodString
|
|
4664
|
+
light: z.ZodOptional<z.ZodString>;
|
|
4665
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
4725
4666
|
}, "strict", z.ZodTypeAny, {
|
|
4726
|
-
light
|
|
4727
|
-
dark
|
|
4667
|
+
light?: string | undefined;
|
|
4668
|
+
dark?: string | undefined;
|
|
4728
4669
|
}, {
|
|
4729
|
-
light
|
|
4730
|
-
dark
|
|
4670
|
+
light?: string | undefined;
|
|
4671
|
+
dark?: string | undefined;
|
|
4731
4672
|
}>>;
|
|
4732
4673
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4733
4674
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4737,8 +4678,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4737
4678
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4738
4679
|
} | undefined;
|
|
4739
4680
|
color?: {
|
|
4740
|
-
light
|
|
4741
|
-
dark
|
|
4681
|
+
light?: string | undefined;
|
|
4682
|
+
dark?: string | undefined;
|
|
4742
4683
|
} | undefined;
|
|
4743
4684
|
hidden?: boolean | undefined;
|
|
4744
4685
|
}, {
|
|
@@ -4748,8 +4689,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4748
4689
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4749
4690
|
} | undefined;
|
|
4750
4691
|
color?: {
|
|
4751
|
-
light
|
|
4752
|
-
dark
|
|
4692
|
+
light?: string | undefined;
|
|
4693
|
+
dark?: string | undefined;
|
|
4753
4694
|
} | undefined;
|
|
4754
4695
|
hidden?: boolean | undefined;
|
|
4755
4696
|
}>, z.ZodObject<{
|
|
@@ -4799,8 +4740,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4799
4740
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4800
4741
|
} | undefined;
|
|
4801
4742
|
color?: {
|
|
4802
|
-
light
|
|
4803
|
-
dark
|
|
4743
|
+
light?: string | undefined;
|
|
4744
|
+
dark?: string | undefined;
|
|
4804
4745
|
} | undefined;
|
|
4805
4746
|
hidden?: boolean | undefined;
|
|
4806
4747
|
} & {
|
|
@@ -4846,8 +4787,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4846
4787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4847
4788
|
} | undefined;
|
|
4848
4789
|
color?: {
|
|
4849
|
-
light
|
|
4850
|
-
dark
|
|
4790
|
+
light?: string | undefined;
|
|
4791
|
+
dark?: string | undefined;
|
|
4851
4792
|
} | undefined;
|
|
4852
4793
|
hidden?: boolean | undefined;
|
|
4853
4794
|
} & {
|
|
@@ -4895,8 +4836,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4895
4836
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4896
4837
|
} | undefined;
|
|
4897
4838
|
color?: {
|
|
4898
|
-
light
|
|
4899
|
-
dark
|
|
4839
|
+
light?: string | undefined;
|
|
4840
|
+
dark?: string | undefined;
|
|
4900
4841
|
} | undefined;
|
|
4901
4842
|
hidden?: boolean | undefined;
|
|
4902
4843
|
} & {
|
|
@@ -4944,8 +4885,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4944
4885
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4945
4886
|
} | undefined;
|
|
4946
4887
|
color?: {
|
|
4947
|
-
light
|
|
4948
|
-
dark
|
|
4888
|
+
light?: string | undefined;
|
|
4889
|
+
dark?: string | undefined;
|
|
4949
4890
|
} | undefined;
|
|
4950
4891
|
hidden?: boolean | undefined;
|
|
4951
4892
|
} & {
|
|
@@ -5510,8 +5451,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5510
5451
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5511
5452
|
} | undefined;
|
|
5512
5453
|
color?: {
|
|
5513
|
-
light
|
|
5514
|
-
dark
|
|
5454
|
+
light?: string | undefined;
|
|
5455
|
+
dark?: string | undefined;
|
|
5515
5456
|
} | undefined;
|
|
5516
5457
|
hidden?: boolean | undefined;
|
|
5517
5458
|
} & {
|
|
@@ -5616,8 +5557,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5616
5557
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5617
5558
|
} | undefined;
|
|
5618
5559
|
color?: {
|
|
5619
|
-
light
|
|
5620
|
-
dark
|
|
5560
|
+
light?: string | undefined;
|
|
5561
|
+
dark?: string | undefined;
|
|
5621
5562
|
} | undefined;
|
|
5622
5563
|
hidden?: boolean | undefined;
|
|
5623
5564
|
} & {
|
|
@@ -5645,11 +5586,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5645
5586
|
languages?: string[] | undefined;
|
|
5646
5587
|
} | undefined;
|
|
5647
5588
|
} | undefined;
|
|
5648
|
-
feedback?: {
|
|
5649
|
-
thumbs?: boolean | undefined;
|
|
5650
|
-
edits?: boolean | undefined;
|
|
5651
|
-
issues?: boolean | undefined;
|
|
5652
|
-
} | undefined;
|
|
5653
5589
|
appearance?: {
|
|
5654
5590
|
strict: boolean;
|
|
5655
5591
|
default: "light" | "dark" | "system";
|
|
@@ -5661,8 +5597,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5661
5597
|
dark: string;
|
|
5662
5598
|
} | undefined;
|
|
5663
5599
|
color?: {
|
|
5664
|
-
light
|
|
5665
|
-
dark
|
|
5600
|
+
light?: string | undefined;
|
|
5601
|
+
dark?: string | undefined;
|
|
5666
5602
|
} | undefined;
|
|
5667
5603
|
} | undefined;
|
|
5668
5604
|
topbar?: {
|
|
@@ -5890,8 +5826,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5890
5826
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5891
5827
|
} | undefined;
|
|
5892
5828
|
color?: {
|
|
5893
|
-
light
|
|
5894
|
-
dark
|
|
5829
|
+
light?: string | undefined;
|
|
5830
|
+
dark?: string | undefined;
|
|
5895
5831
|
} | undefined;
|
|
5896
5832
|
hidden?: boolean | undefined;
|
|
5897
5833
|
} & {
|
|
@@ -5996,8 +5932,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5996
5932
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5997
5933
|
} | undefined;
|
|
5998
5934
|
color?: {
|
|
5999
|
-
light
|
|
6000
|
-
dark
|
|
5935
|
+
light?: string | undefined;
|
|
5936
|
+
dark?: string | undefined;
|
|
6001
5937
|
} | undefined;
|
|
6002
5938
|
hidden?: boolean | undefined;
|
|
6003
5939
|
} & {
|
|
@@ -6026,11 +5962,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6026
5962
|
languages?: string[] | undefined;
|
|
6027
5963
|
} | undefined;
|
|
6028
5964
|
} | undefined;
|
|
6029
|
-
feedback?: {
|
|
6030
|
-
thumbs?: boolean | undefined;
|
|
6031
|
-
edits?: boolean | undefined;
|
|
6032
|
-
issues?: boolean | undefined;
|
|
6033
|
-
} | undefined;
|
|
6034
5965
|
appearance?: {
|
|
6035
5966
|
default?: "light" | "dark" | "system" | undefined;
|
|
6036
5967
|
strict?: boolean | undefined;
|
|
@@ -6042,8 +5973,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6042
5973
|
} | undefined;
|
|
6043
5974
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
6044
5975
|
color?: {
|
|
6045
|
-
light
|
|
6046
|
-
dark
|
|
5976
|
+
light?: string | undefined;
|
|
5977
|
+
dark?: string | undefined;
|
|
6047
5978
|
} | undefined;
|
|
6048
5979
|
} | undefined;
|
|
6049
5980
|
topbar?: {
|
|
@@ -6241,19 +6172,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6241
6172
|
languages?: string[] | undefined;
|
|
6242
6173
|
} | undefined;
|
|
6243
6174
|
}>>;
|
|
6244
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
6245
|
-
thumbs: z.ZodOptional<z.ZodBoolean>;
|
|
6246
|
-
edits: z.ZodOptional<z.ZodBoolean>;
|
|
6247
|
-
issues: z.ZodOptional<z.ZodBoolean>;
|
|
6248
|
-
}, "strip", z.ZodTypeAny, {
|
|
6249
|
-
thumbs?: boolean | undefined;
|
|
6250
|
-
edits?: boolean | undefined;
|
|
6251
|
-
issues?: boolean | undefined;
|
|
6252
|
-
}, {
|
|
6253
|
-
thumbs?: boolean | undefined;
|
|
6254
|
-
edits?: boolean | undefined;
|
|
6255
|
-
issues?: boolean | undefined;
|
|
6256
|
-
}>>;
|
|
6257
6175
|
appearance: z.ZodOptional<z.ZodObject<{
|
|
6258
6176
|
default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
|
|
6259
6177
|
strict: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -6277,14 +6195,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6277
6195
|
}>]>>;
|
|
6278
6196
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
6279
6197
|
color: z.ZodOptional<z.ZodObject<{
|
|
6280
|
-
light: z.ZodString
|
|
6281
|
-
dark: z.ZodString
|
|
6198
|
+
light: z.ZodOptional<z.ZodString>;
|
|
6199
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
6282
6200
|
}, "strict", z.ZodTypeAny, {
|
|
6283
|
-
light
|
|
6284
|
-
dark
|
|
6201
|
+
light?: string | undefined;
|
|
6202
|
+
dark?: string | undefined;
|
|
6285
6203
|
}, {
|
|
6286
|
-
light
|
|
6287
|
-
dark
|
|
6204
|
+
light?: string | undefined;
|
|
6205
|
+
dark?: string | undefined;
|
|
6288
6206
|
}>>;
|
|
6289
6207
|
}, "strip", z.ZodTypeAny, {
|
|
6290
6208
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -6293,8 +6211,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6293
6211
|
dark: string;
|
|
6294
6212
|
} | undefined;
|
|
6295
6213
|
color?: {
|
|
6296
|
-
light
|
|
6297
|
-
dark
|
|
6214
|
+
light?: string | undefined;
|
|
6215
|
+
dark?: string | undefined;
|
|
6298
6216
|
} | undefined;
|
|
6299
6217
|
}, {
|
|
6300
6218
|
image?: string | {
|
|
@@ -6303,8 +6221,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6303
6221
|
} | undefined;
|
|
6304
6222
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
6305
6223
|
color?: {
|
|
6306
|
-
light
|
|
6307
|
-
dark
|
|
6224
|
+
light?: string | undefined;
|
|
6225
|
+
dark?: string | undefined;
|
|
6308
6226
|
} | undefined;
|
|
6309
6227
|
}>>;
|
|
6310
6228
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -6775,14 +6693,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6775
6693
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6776
6694
|
}>]>>;
|
|
6777
6695
|
color: z.ZodOptional<z.ZodObject<{
|
|
6778
|
-
light: z.ZodString
|
|
6779
|
-
dark: z.ZodString
|
|
6696
|
+
light: z.ZodOptional<z.ZodString>;
|
|
6697
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
6780
6698
|
}, "strict", z.ZodTypeAny, {
|
|
6781
|
-
light
|
|
6782
|
-
dark
|
|
6699
|
+
light?: string | undefined;
|
|
6700
|
+
dark?: string | undefined;
|
|
6783
6701
|
}, {
|
|
6784
|
-
light
|
|
6785
|
-
dark
|
|
6702
|
+
light?: string | undefined;
|
|
6703
|
+
dark?: string | undefined;
|
|
6786
6704
|
}>>;
|
|
6787
6705
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6788
6706
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6792,8 +6710,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6792
6710
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6793
6711
|
} | undefined;
|
|
6794
6712
|
color?: {
|
|
6795
|
-
light
|
|
6796
|
-
dark
|
|
6713
|
+
light?: string | undefined;
|
|
6714
|
+
dark?: string | undefined;
|
|
6797
6715
|
} | undefined;
|
|
6798
6716
|
hidden?: boolean | undefined;
|
|
6799
6717
|
}, {
|
|
@@ -6803,8 +6721,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6803
6721
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6804
6722
|
} | undefined;
|
|
6805
6723
|
color?: {
|
|
6806
|
-
light
|
|
6807
|
-
dark
|
|
6724
|
+
light?: string | undefined;
|
|
6725
|
+
dark?: string | undefined;
|
|
6808
6726
|
} | undefined;
|
|
6809
6727
|
hidden?: boolean | undefined;
|
|
6810
6728
|
}>, z.ZodObject<{
|
|
@@ -6854,8 +6772,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6854
6772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6855
6773
|
} | undefined;
|
|
6856
6774
|
color?: {
|
|
6857
|
-
light
|
|
6858
|
-
dark
|
|
6775
|
+
light?: string | undefined;
|
|
6776
|
+
dark?: string | undefined;
|
|
6859
6777
|
} | undefined;
|
|
6860
6778
|
hidden?: boolean | undefined;
|
|
6861
6779
|
} & {
|
|
@@ -6901,8 +6819,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6901
6819
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6902
6820
|
} | undefined;
|
|
6903
6821
|
color?: {
|
|
6904
|
-
light
|
|
6905
|
-
dark
|
|
6822
|
+
light?: string | undefined;
|
|
6823
|
+
dark?: string | undefined;
|
|
6906
6824
|
} | undefined;
|
|
6907
6825
|
hidden?: boolean | undefined;
|
|
6908
6826
|
} & {
|
|
@@ -6950,8 +6868,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6950
6868
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6951
6869
|
} | undefined;
|
|
6952
6870
|
color?: {
|
|
6953
|
-
light
|
|
6954
|
-
dark
|
|
6871
|
+
light?: string | undefined;
|
|
6872
|
+
dark?: string | undefined;
|
|
6955
6873
|
} | undefined;
|
|
6956
6874
|
hidden?: boolean | undefined;
|
|
6957
6875
|
} & {
|
|
@@ -6999,8 +6917,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6999
6917
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7000
6918
|
} | undefined;
|
|
7001
6919
|
color?: {
|
|
7002
|
-
light
|
|
7003
|
-
dark
|
|
6920
|
+
light?: string | undefined;
|
|
6921
|
+
dark?: string | undefined;
|
|
7004
6922
|
} | undefined;
|
|
7005
6923
|
hidden?: boolean | undefined;
|
|
7006
6924
|
} & {
|
|
@@ -7565,8 +7483,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7565
7483
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7566
7484
|
} | undefined;
|
|
7567
7485
|
color?: {
|
|
7568
|
-
light
|
|
7569
|
-
dark
|
|
7486
|
+
light?: string | undefined;
|
|
7487
|
+
dark?: string | undefined;
|
|
7570
7488
|
} | undefined;
|
|
7571
7489
|
hidden?: boolean | undefined;
|
|
7572
7490
|
} & {
|
|
@@ -7671,8 +7589,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7671
7589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7672
7590
|
} | undefined;
|
|
7673
7591
|
color?: {
|
|
7674
|
-
light
|
|
7675
|
-
dark
|
|
7592
|
+
light?: string | undefined;
|
|
7593
|
+
dark?: string | undefined;
|
|
7676
7594
|
} | undefined;
|
|
7677
7595
|
hidden?: boolean | undefined;
|
|
7678
7596
|
} & {
|
|
@@ -7700,11 +7618,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7700
7618
|
languages?: string[] | undefined;
|
|
7701
7619
|
} | undefined;
|
|
7702
7620
|
} | undefined;
|
|
7703
|
-
feedback?: {
|
|
7704
|
-
thumbs?: boolean | undefined;
|
|
7705
|
-
edits?: boolean | undefined;
|
|
7706
|
-
issues?: boolean | undefined;
|
|
7707
|
-
} | undefined;
|
|
7708
7621
|
appearance?: {
|
|
7709
7622
|
strict: boolean;
|
|
7710
7623
|
default: "light" | "dark" | "system";
|
|
@@ -7716,8 +7629,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7716
7629
|
dark: string;
|
|
7717
7630
|
} | undefined;
|
|
7718
7631
|
color?: {
|
|
7719
|
-
light
|
|
7720
|
-
dark
|
|
7632
|
+
light?: string | undefined;
|
|
7633
|
+
dark?: string | undefined;
|
|
7721
7634
|
} | undefined;
|
|
7722
7635
|
} | undefined;
|
|
7723
7636
|
topbar?: {
|
|
@@ -7945,8 +7858,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7945
7858
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7946
7859
|
} | undefined;
|
|
7947
7860
|
color?: {
|
|
7948
|
-
light
|
|
7949
|
-
dark
|
|
7861
|
+
light?: string | undefined;
|
|
7862
|
+
dark?: string | undefined;
|
|
7950
7863
|
} | undefined;
|
|
7951
7864
|
hidden?: boolean | undefined;
|
|
7952
7865
|
} & {
|
|
@@ -8051,8 +7964,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8051
7964
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8052
7965
|
} | undefined;
|
|
8053
7966
|
color?: {
|
|
8054
|
-
light
|
|
8055
|
-
dark
|
|
7967
|
+
light?: string | undefined;
|
|
7968
|
+
dark?: string | undefined;
|
|
8056
7969
|
} | undefined;
|
|
8057
7970
|
hidden?: boolean | undefined;
|
|
8058
7971
|
} & {
|
|
@@ -8081,11 +7994,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8081
7994
|
languages?: string[] | undefined;
|
|
8082
7995
|
} | undefined;
|
|
8083
7996
|
} | undefined;
|
|
8084
|
-
feedback?: {
|
|
8085
|
-
thumbs?: boolean | undefined;
|
|
8086
|
-
edits?: boolean | undefined;
|
|
8087
|
-
issues?: boolean | undefined;
|
|
8088
|
-
} | undefined;
|
|
8089
7997
|
appearance?: {
|
|
8090
7998
|
default?: "light" | "dark" | "system" | undefined;
|
|
8091
7999
|
strict?: boolean | undefined;
|
|
@@ -8097,8 +8005,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8097
8005
|
} | undefined;
|
|
8098
8006
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
8099
8007
|
color?: {
|
|
8100
|
-
light
|
|
8101
|
-
dark
|
|
8008
|
+
light?: string | undefined;
|
|
8009
|
+
dark?: string | undefined;
|
|
8102
8010
|
} | undefined;
|
|
8103
8011
|
} | undefined;
|
|
8104
8012
|
topbar?: {
|