@mintlify/validation 0.1.241 → 0.1.242
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 -160
- 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 -40
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +40 -40
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +40 -40
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +28 -28
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +40 -40
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +12 -12
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -112,14 +112,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
112
112
|
}>]>>;
|
|
113
113
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
114
114
|
color: z.ZodOptional<z.ZodObject<{
|
|
115
|
-
light: z.ZodString
|
|
116
|
-
dark: z.ZodString
|
|
115
|
+
light: z.ZodOptional<z.ZodString>;
|
|
116
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
117
117
|
}, "strict", z.ZodTypeAny, {
|
|
118
|
-
light
|
|
119
|
-
dark
|
|
118
|
+
light?: string | undefined;
|
|
119
|
+
dark?: string | undefined;
|
|
120
120
|
}, {
|
|
121
|
-
light
|
|
122
|
-
dark
|
|
121
|
+
light?: string | undefined;
|
|
122
|
+
dark?: string | undefined;
|
|
123
123
|
}>>;
|
|
124
124
|
}, "strip", z.ZodTypeAny, {
|
|
125
125
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -128,8 +128,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
128
128
|
dark: string;
|
|
129
129
|
} | undefined;
|
|
130
130
|
color?: {
|
|
131
|
-
light
|
|
132
|
-
dark
|
|
131
|
+
light?: string | undefined;
|
|
132
|
+
dark?: string | undefined;
|
|
133
133
|
} | undefined;
|
|
134
134
|
}, {
|
|
135
135
|
image?: string | {
|
|
@@ -138,8 +138,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
138
138
|
} | undefined;
|
|
139
139
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
140
140
|
color?: {
|
|
141
|
-
light
|
|
142
|
-
dark
|
|
141
|
+
light?: string | undefined;
|
|
142
|
+
dark?: string | undefined;
|
|
143
143
|
} | undefined;
|
|
144
144
|
}>>;
|
|
145
145
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -610,14 +610,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
610
610
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
611
611
|
}>]>>;
|
|
612
612
|
color: z.ZodOptional<z.ZodObject<{
|
|
613
|
-
light: z.ZodString
|
|
614
|
-
dark: z.ZodString
|
|
613
|
+
light: z.ZodOptional<z.ZodString>;
|
|
614
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
615
615
|
}, "strict", z.ZodTypeAny, {
|
|
616
|
-
light
|
|
617
|
-
dark
|
|
616
|
+
light?: string | undefined;
|
|
617
|
+
dark?: string | undefined;
|
|
618
618
|
}, {
|
|
619
|
-
light
|
|
620
|
-
dark
|
|
619
|
+
light?: string | undefined;
|
|
620
|
+
dark?: string | undefined;
|
|
621
621
|
}>>;
|
|
622
622
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
623
623
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -627,8 +627,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
627
627
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
628
628
|
} | undefined;
|
|
629
629
|
color?: {
|
|
630
|
-
light
|
|
631
|
-
dark
|
|
630
|
+
light?: string | undefined;
|
|
631
|
+
dark?: string | undefined;
|
|
632
632
|
} | undefined;
|
|
633
633
|
hidden?: boolean | undefined;
|
|
634
634
|
}, {
|
|
@@ -638,8 +638,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
638
638
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
639
639
|
} | undefined;
|
|
640
640
|
color?: {
|
|
641
|
-
light
|
|
642
|
-
dark
|
|
641
|
+
light?: string | undefined;
|
|
642
|
+
dark?: string | undefined;
|
|
643
643
|
} | undefined;
|
|
644
644
|
hidden?: boolean | undefined;
|
|
645
645
|
}>, z.ZodObject<{
|
|
@@ -689,8 +689,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
689
689
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
690
690
|
} | undefined;
|
|
691
691
|
color?: {
|
|
692
|
-
light
|
|
693
|
-
dark
|
|
692
|
+
light?: string | undefined;
|
|
693
|
+
dark?: string | undefined;
|
|
694
694
|
} | undefined;
|
|
695
695
|
hidden?: boolean | undefined;
|
|
696
696
|
} & {
|
|
@@ -736,8 +736,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
736
736
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
737
737
|
} | undefined;
|
|
738
738
|
color?: {
|
|
739
|
-
light
|
|
740
|
-
dark
|
|
739
|
+
light?: string | undefined;
|
|
740
|
+
dark?: string | undefined;
|
|
741
741
|
} | undefined;
|
|
742
742
|
hidden?: boolean | undefined;
|
|
743
743
|
} & {
|
|
@@ -785,8 +785,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
785
785
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
786
786
|
} | undefined;
|
|
787
787
|
color?: {
|
|
788
|
-
light
|
|
789
|
-
dark
|
|
788
|
+
light?: string | undefined;
|
|
789
|
+
dark?: string | undefined;
|
|
790
790
|
} | undefined;
|
|
791
791
|
hidden?: boolean | undefined;
|
|
792
792
|
} & {
|
|
@@ -834,8 +834,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
834
834
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
835
835
|
} | undefined;
|
|
836
836
|
color?: {
|
|
837
|
-
light
|
|
838
|
-
dark
|
|
837
|
+
light?: string | undefined;
|
|
838
|
+
dark?: string | undefined;
|
|
839
839
|
} | undefined;
|
|
840
840
|
hidden?: boolean | undefined;
|
|
841
841
|
} & {
|
|
@@ -1400,8 +1400,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1400
1400
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1401
1401
|
} | undefined;
|
|
1402
1402
|
color?: {
|
|
1403
|
-
light
|
|
1404
|
-
dark
|
|
1403
|
+
light?: string | undefined;
|
|
1404
|
+
dark?: string | undefined;
|
|
1405
1405
|
} | undefined;
|
|
1406
1406
|
hidden?: boolean | undefined;
|
|
1407
1407
|
} & {
|
|
@@ -1506,8 +1506,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1506
1506
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1507
1507
|
} | undefined;
|
|
1508
1508
|
color?: {
|
|
1509
|
-
light
|
|
1510
|
-
dark
|
|
1509
|
+
light?: string | undefined;
|
|
1510
|
+
dark?: string | undefined;
|
|
1511
1511
|
} | undefined;
|
|
1512
1512
|
hidden?: boolean | undefined;
|
|
1513
1513
|
} & {
|
|
@@ -1551,8 +1551,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1551
1551
|
dark: string;
|
|
1552
1552
|
} | undefined;
|
|
1553
1553
|
color?: {
|
|
1554
|
-
light
|
|
1555
|
-
dark
|
|
1554
|
+
light?: string | undefined;
|
|
1555
|
+
dark?: string | undefined;
|
|
1556
1556
|
} | undefined;
|
|
1557
1557
|
} | undefined;
|
|
1558
1558
|
topbar?: {
|
|
@@ -1780,8 +1780,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1780
1780
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1781
1781
|
} | undefined;
|
|
1782
1782
|
color?: {
|
|
1783
|
-
light
|
|
1784
|
-
dark
|
|
1783
|
+
light?: string | undefined;
|
|
1784
|
+
dark?: string | undefined;
|
|
1785
1785
|
} | undefined;
|
|
1786
1786
|
hidden?: boolean | undefined;
|
|
1787
1787
|
} & {
|
|
@@ -1886,8 +1886,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1886
1886
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1887
1887
|
} | undefined;
|
|
1888
1888
|
color?: {
|
|
1889
|
-
light
|
|
1890
|
-
dark
|
|
1889
|
+
light?: string | undefined;
|
|
1890
|
+
dark?: string | undefined;
|
|
1891
1891
|
} | undefined;
|
|
1892
1892
|
hidden?: boolean | undefined;
|
|
1893
1893
|
} & {
|
|
@@ -1932,8 +1932,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1932
1932
|
} | undefined;
|
|
1933
1933
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
1934
1934
|
color?: {
|
|
1935
|
-
light
|
|
1936
|
-
dark
|
|
1935
|
+
light?: string | undefined;
|
|
1936
|
+
dark?: string | undefined;
|
|
1937
1937
|
} | undefined;
|
|
1938
1938
|
} | undefined;
|
|
1939
1939
|
topbar?: {
|
|
@@ -2167,14 +2167,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2167
2167
|
}>]>>;
|
|
2168
2168
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
2169
2169
|
color: z.ZodOptional<z.ZodObject<{
|
|
2170
|
-
light: z.ZodString
|
|
2171
|
-
dark: z.ZodString
|
|
2170
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2171
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2172
2172
|
}, "strict", z.ZodTypeAny, {
|
|
2173
|
-
light
|
|
2174
|
-
dark
|
|
2173
|
+
light?: string | undefined;
|
|
2174
|
+
dark?: string | undefined;
|
|
2175
2175
|
}, {
|
|
2176
|
-
light
|
|
2177
|
-
dark
|
|
2176
|
+
light?: string | undefined;
|
|
2177
|
+
dark?: string | undefined;
|
|
2178
2178
|
}>>;
|
|
2179
2179
|
}, "strip", z.ZodTypeAny, {
|
|
2180
2180
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -2183,8 +2183,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2183
2183
|
dark: string;
|
|
2184
2184
|
} | undefined;
|
|
2185
2185
|
color?: {
|
|
2186
|
-
light
|
|
2187
|
-
dark
|
|
2186
|
+
light?: string | undefined;
|
|
2187
|
+
dark?: string | undefined;
|
|
2188
2188
|
} | undefined;
|
|
2189
2189
|
}, {
|
|
2190
2190
|
image?: string | {
|
|
@@ -2193,8 +2193,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2193
2193
|
} | undefined;
|
|
2194
2194
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
2195
2195
|
color?: {
|
|
2196
|
-
light
|
|
2197
|
-
dark
|
|
2196
|
+
light?: string | undefined;
|
|
2197
|
+
dark?: string | undefined;
|
|
2198
2198
|
} | undefined;
|
|
2199
2199
|
}>>;
|
|
2200
2200
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -2665,14 +2665,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2665
2665
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2666
2666
|
}>]>>;
|
|
2667
2667
|
color: z.ZodOptional<z.ZodObject<{
|
|
2668
|
-
light: z.ZodString
|
|
2669
|
-
dark: z.ZodString
|
|
2668
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2669
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2670
2670
|
}, "strict", z.ZodTypeAny, {
|
|
2671
|
-
light
|
|
2672
|
-
dark
|
|
2671
|
+
light?: string | undefined;
|
|
2672
|
+
dark?: string | undefined;
|
|
2673
2673
|
}, {
|
|
2674
|
-
light
|
|
2675
|
-
dark
|
|
2674
|
+
light?: string | undefined;
|
|
2675
|
+
dark?: string | undefined;
|
|
2676
2676
|
}>>;
|
|
2677
2677
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2678
2678
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2682,8 +2682,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2682
2682
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2683
2683
|
} | undefined;
|
|
2684
2684
|
color?: {
|
|
2685
|
-
light
|
|
2686
|
-
dark
|
|
2685
|
+
light?: string | undefined;
|
|
2686
|
+
dark?: string | undefined;
|
|
2687
2687
|
} | undefined;
|
|
2688
2688
|
hidden?: boolean | undefined;
|
|
2689
2689
|
}, {
|
|
@@ -2693,8 +2693,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2693
2693
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2694
2694
|
} | undefined;
|
|
2695
2695
|
color?: {
|
|
2696
|
-
light
|
|
2697
|
-
dark
|
|
2696
|
+
light?: string | undefined;
|
|
2697
|
+
dark?: string | undefined;
|
|
2698
2698
|
} | undefined;
|
|
2699
2699
|
hidden?: boolean | undefined;
|
|
2700
2700
|
}>, z.ZodObject<{
|
|
@@ -2744,8 +2744,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2744
2744
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2745
2745
|
} | undefined;
|
|
2746
2746
|
color?: {
|
|
2747
|
-
light
|
|
2748
|
-
dark
|
|
2747
|
+
light?: string | undefined;
|
|
2748
|
+
dark?: string | undefined;
|
|
2749
2749
|
} | undefined;
|
|
2750
2750
|
hidden?: boolean | undefined;
|
|
2751
2751
|
} & {
|
|
@@ -2791,8 +2791,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2791
2791
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2792
2792
|
} | undefined;
|
|
2793
2793
|
color?: {
|
|
2794
|
-
light
|
|
2795
|
-
dark
|
|
2794
|
+
light?: string | undefined;
|
|
2795
|
+
dark?: string | undefined;
|
|
2796
2796
|
} | undefined;
|
|
2797
2797
|
hidden?: boolean | undefined;
|
|
2798
2798
|
} & {
|
|
@@ -2840,8 +2840,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2840
2840
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2841
2841
|
} | undefined;
|
|
2842
2842
|
color?: {
|
|
2843
|
-
light
|
|
2844
|
-
dark
|
|
2843
|
+
light?: string | undefined;
|
|
2844
|
+
dark?: string | undefined;
|
|
2845
2845
|
} | undefined;
|
|
2846
2846
|
hidden?: boolean | undefined;
|
|
2847
2847
|
} & {
|
|
@@ -2889,8 +2889,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2889
2889
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2890
2890
|
} | undefined;
|
|
2891
2891
|
color?: {
|
|
2892
|
-
light
|
|
2893
|
-
dark
|
|
2892
|
+
light?: string | undefined;
|
|
2893
|
+
dark?: string | undefined;
|
|
2894
2894
|
} | undefined;
|
|
2895
2895
|
hidden?: boolean | undefined;
|
|
2896
2896
|
} & {
|
|
@@ -3455,8 +3455,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3455
3455
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3456
3456
|
} | undefined;
|
|
3457
3457
|
color?: {
|
|
3458
|
-
light
|
|
3459
|
-
dark
|
|
3458
|
+
light?: string | undefined;
|
|
3459
|
+
dark?: string | undefined;
|
|
3460
3460
|
} | undefined;
|
|
3461
3461
|
hidden?: boolean | undefined;
|
|
3462
3462
|
} & {
|
|
@@ -3561,8 +3561,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3561
3561
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3562
3562
|
} | undefined;
|
|
3563
3563
|
color?: {
|
|
3564
|
-
light
|
|
3565
|
-
dark
|
|
3564
|
+
light?: string | undefined;
|
|
3565
|
+
dark?: string | undefined;
|
|
3566
3566
|
} | undefined;
|
|
3567
3567
|
hidden?: boolean | undefined;
|
|
3568
3568
|
} & {
|
|
@@ -3606,8 +3606,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3606
3606
|
dark: string;
|
|
3607
3607
|
} | undefined;
|
|
3608
3608
|
color?: {
|
|
3609
|
-
light
|
|
3610
|
-
dark
|
|
3609
|
+
light?: string | undefined;
|
|
3610
|
+
dark?: string | undefined;
|
|
3611
3611
|
} | undefined;
|
|
3612
3612
|
} | undefined;
|
|
3613
3613
|
topbar?: {
|
|
@@ -3835,8 +3835,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3835
3835
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3836
3836
|
} | undefined;
|
|
3837
3837
|
color?: {
|
|
3838
|
-
light
|
|
3839
|
-
dark
|
|
3838
|
+
light?: string | undefined;
|
|
3839
|
+
dark?: string | undefined;
|
|
3840
3840
|
} | undefined;
|
|
3841
3841
|
hidden?: boolean | undefined;
|
|
3842
3842
|
} & {
|
|
@@ -3941,8 +3941,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3941
3941
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3942
3942
|
} | undefined;
|
|
3943
3943
|
color?: {
|
|
3944
|
-
light
|
|
3945
|
-
dark
|
|
3944
|
+
light?: string | undefined;
|
|
3945
|
+
dark?: string | undefined;
|
|
3946
3946
|
} | undefined;
|
|
3947
3947
|
hidden?: boolean | undefined;
|
|
3948
3948
|
} & {
|
|
@@ -3987,8 +3987,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3987
3987
|
} | undefined;
|
|
3988
3988
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
3989
3989
|
color?: {
|
|
3990
|
-
light
|
|
3991
|
-
dark
|
|
3990
|
+
light?: string | undefined;
|
|
3991
|
+
dark?: string | undefined;
|
|
3992
3992
|
} | undefined;
|
|
3993
3993
|
} | undefined;
|
|
3994
3994
|
topbar?: {
|
|
@@ -4222,14 +4222,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4222
4222
|
}>]>>;
|
|
4223
4223
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
4224
4224
|
color: z.ZodOptional<z.ZodObject<{
|
|
4225
|
-
light: z.ZodString
|
|
4226
|
-
dark: z.ZodString
|
|
4225
|
+
light: z.ZodOptional<z.ZodString>;
|
|
4226
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
4227
4227
|
}, "strict", z.ZodTypeAny, {
|
|
4228
|
-
light
|
|
4229
|
-
dark
|
|
4228
|
+
light?: string | undefined;
|
|
4229
|
+
dark?: string | undefined;
|
|
4230
4230
|
}, {
|
|
4231
|
-
light
|
|
4232
|
-
dark
|
|
4231
|
+
light?: string | undefined;
|
|
4232
|
+
dark?: string | undefined;
|
|
4233
4233
|
}>>;
|
|
4234
4234
|
}, "strip", z.ZodTypeAny, {
|
|
4235
4235
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -4238,8 +4238,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4238
4238
|
dark: string;
|
|
4239
4239
|
} | undefined;
|
|
4240
4240
|
color?: {
|
|
4241
|
-
light
|
|
4242
|
-
dark
|
|
4241
|
+
light?: string | undefined;
|
|
4242
|
+
dark?: string | undefined;
|
|
4243
4243
|
} | undefined;
|
|
4244
4244
|
}, {
|
|
4245
4245
|
image?: string | {
|
|
@@ -4248,8 +4248,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4248
4248
|
} | undefined;
|
|
4249
4249
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
4250
4250
|
color?: {
|
|
4251
|
-
light
|
|
4252
|
-
dark
|
|
4251
|
+
light?: string | undefined;
|
|
4252
|
+
dark?: string | undefined;
|
|
4253
4253
|
} | undefined;
|
|
4254
4254
|
}>>;
|
|
4255
4255
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -4720,14 +4720,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4720
4720
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4721
4721
|
}>]>>;
|
|
4722
4722
|
color: z.ZodOptional<z.ZodObject<{
|
|
4723
|
-
light: z.ZodString
|
|
4724
|
-
dark: z.ZodString
|
|
4723
|
+
light: z.ZodOptional<z.ZodString>;
|
|
4724
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
4725
4725
|
}, "strict", z.ZodTypeAny, {
|
|
4726
|
-
light
|
|
4727
|
-
dark
|
|
4726
|
+
light?: string | undefined;
|
|
4727
|
+
dark?: string | undefined;
|
|
4728
4728
|
}, {
|
|
4729
|
-
light
|
|
4730
|
-
dark
|
|
4729
|
+
light?: string | undefined;
|
|
4730
|
+
dark?: string | undefined;
|
|
4731
4731
|
}>>;
|
|
4732
4732
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4733
4733
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4737,8 +4737,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4737
4737
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4738
4738
|
} | undefined;
|
|
4739
4739
|
color?: {
|
|
4740
|
-
light
|
|
4741
|
-
dark
|
|
4740
|
+
light?: string | undefined;
|
|
4741
|
+
dark?: string | undefined;
|
|
4742
4742
|
} | undefined;
|
|
4743
4743
|
hidden?: boolean | undefined;
|
|
4744
4744
|
}, {
|
|
@@ -4748,8 +4748,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4748
4748
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4749
4749
|
} | undefined;
|
|
4750
4750
|
color?: {
|
|
4751
|
-
light
|
|
4752
|
-
dark
|
|
4751
|
+
light?: string | undefined;
|
|
4752
|
+
dark?: string | undefined;
|
|
4753
4753
|
} | undefined;
|
|
4754
4754
|
hidden?: boolean | undefined;
|
|
4755
4755
|
}>, z.ZodObject<{
|
|
@@ -4799,8 +4799,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4799
4799
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4800
4800
|
} | undefined;
|
|
4801
4801
|
color?: {
|
|
4802
|
-
light
|
|
4803
|
-
dark
|
|
4802
|
+
light?: string | undefined;
|
|
4803
|
+
dark?: string | undefined;
|
|
4804
4804
|
} | undefined;
|
|
4805
4805
|
hidden?: boolean | undefined;
|
|
4806
4806
|
} & {
|
|
@@ -4846,8 +4846,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4846
4846
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4847
4847
|
} | undefined;
|
|
4848
4848
|
color?: {
|
|
4849
|
-
light
|
|
4850
|
-
dark
|
|
4849
|
+
light?: string | undefined;
|
|
4850
|
+
dark?: string | undefined;
|
|
4851
4851
|
} | undefined;
|
|
4852
4852
|
hidden?: boolean | undefined;
|
|
4853
4853
|
} & {
|
|
@@ -4895,8 +4895,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4895
4895
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4896
4896
|
} | undefined;
|
|
4897
4897
|
color?: {
|
|
4898
|
-
light
|
|
4899
|
-
dark
|
|
4898
|
+
light?: string | undefined;
|
|
4899
|
+
dark?: string | undefined;
|
|
4900
4900
|
} | undefined;
|
|
4901
4901
|
hidden?: boolean | undefined;
|
|
4902
4902
|
} & {
|
|
@@ -4944,8 +4944,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4944
4944
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4945
4945
|
} | undefined;
|
|
4946
4946
|
color?: {
|
|
4947
|
-
light
|
|
4948
|
-
dark
|
|
4947
|
+
light?: string | undefined;
|
|
4948
|
+
dark?: string | undefined;
|
|
4949
4949
|
} | undefined;
|
|
4950
4950
|
hidden?: boolean | undefined;
|
|
4951
4951
|
} & {
|
|
@@ -5510,8 +5510,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5510
5510
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5511
5511
|
} | undefined;
|
|
5512
5512
|
color?: {
|
|
5513
|
-
light
|
|
5514
|
-
dark
|
|
5513
|
+
light?: string | undefined;
|
|
5514
|
+
dark?: string | undefined;
|
|
5515
5515
|
} | undefined;
|
|
5516
5516
|
hidden?: boolean | undefined;
|
|
5517
5517
|
} & {
|
|
@@ -5616,8 +5616,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5616
5616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5617
5617
|
} | undefined;
|
|
5618
5618
|
color?: {
|
|
5619
|
-
light
|
|
5620
|
-
dark
|
|
5619
|
+
light?: string | undefined;
|
|
5620
|
+
dark?: string | undefined;
|
|
5621
5621
|
} | undefined;
|
|
5622
5622
|
hidden?: boolean | undefined;
|
|
5623
5623
|
} & {
|
|
@@ -5661,8 +5661,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5661
5661
|
dark: string;
|
|
5662
5662
|
} | undefined;
|
|
5663
5663
|
color?: {
|
|
5664
|
-
light
|
|
5665
|
-
dark
|
|
5664
|
+
light?: string | undefined;
|
|
5665
|
+
dark?: string | undefined;
|
|
5666
5666
|
} | undefined;
|
|
5667
5667
|
} | undefined;
|
|
5668
5668
|
topbar?: {
|
|
@@ -5890,8 +5890,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5890
5890
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5891
5891
|
} | undefined;
|
|
5892
5892
|
color?: {
|
|
5893
|
-
light
|
|
5894
|
-
dark
|
|
5893
|
+
light?: string | undefined;
|
|
5894
|
+
dark?: string | undefined;
|
|
5895
5895
|
} | undefined;
|
|
5896
5896
|
hidden?: boolean | undefined;
|
|
5897
5897
|
} & {
|
|
@@ -5996,8 +5996,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5996
5996
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5997
5997
|
} | undefined;
|
|
5998
5998
|
color?: {
|
|
5999
|
-
light
|
|
6000
|
-
dark
|
|
5999
|
+
light?: string | undefined;
|
|
6000
|
+
dark?: string | undefined;
|
|
6001
6001
|
} | undefined;
|
|
6002
6002
|
hidden?: boolean | undefined;
|
|
6003
6003
|
} & {
|
|
@@ -6042,8 +6042,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6042
6042
|
} | undefined;
|
|
6043
6043
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
6044
6044
|
color?: {
|
|
6045
|
-
light
|
|
6046
|
-
dark
|
|
6045
|
+
light?: string | undefined;
|
|
6046
|
+
dark?: string | undefined;
|
|
6047
6047
|
} | undefined;
|
|
6048
6048
|
} | undefined;
|
|
6049
6049
|
topbar?: {
|
|
@@ -6277,14 +6277,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6277
6277
|
}>]>>;
|
|
6278
6278
|
decoration: z.ZodDefault<z.ZodEnum<["gradient", "grid", "windows", "none"]>>;
|
|
6279
6279
|
color: z.ZodOptional<z.ZodObject<{
|
|
6280
|
-
light: z.ZodString
|
|
6281
|
-
dark: z.ZodString
|
|
6280
|
+
light: z.ZodOptional<z.ZodString>;
|
|
6281
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
6282
6282
|
}, "strict", z.ZodTypeAny, {
|
|
6283
|
-
light
|
|
6284
|
-
dark
|
|
6283
|
+
light?: string | undefined;
|
|
6284
|
+
dark?: string | undefined;
|
|
6285
6285
|
}, {
|
|
6286
|
-
light
|
|
6287
|
-
dark
|
|
6286
|
+
light?: string | undefined;
|
|
6287
|
+
dark?: string | undefined;
|
|
6288
6288
|
}>>;
|
|
6289
6289
|
}, "strip", z.ZodTypeAny, {
|
|
6290
6290
|
decoration: "none" | "gradient" | "grid" | "windows";
|
|
@@ -6293,8 +6293,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6293
6293
|
dark: string;
|
|
6294
6294
|
} | undefined;
|
|
6295
6295
|
color?: {
|
|
6296
|
-
light
|
|
6297
|
-
dark
|
|
6296
|
+
light?: string | undefined;
|
|
6297
|
+
dark?: string | undefined;
|
|
6298
6298
|
} | undefined;
|
|
6299
6299
|
}, {
|
|
6300
6300
|
image?: string | {
|
|
@@ -6303,8 +6303,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6303
6303
|
} | undefined;
|
|
6304
6304
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
6305
6305
|
color?: {
|
|
6306
|
-
light
|
|
6307
|
-
dark
|
|
6306
|
+
light?: string | undefined;
|
|
6307
|
+
dark?: string | undefined;
|
|
6308
6308
|
} | undefined;
|
|
6309
6309
|
}>>;
|
|
6310
6310
|
topbar: z.ZodOptional<z.ZodObject<{
|
|
@@ -6775,14 +6775,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6775
6775
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6776
6776
|
}>]>>;
|
|
6777
6777
|
color: z.ZodOptional<z.ZodObject<{
|
|
6778
|
-
light: z.ZodString
|
|
6779
|
-
dark: z.ZodString
|
|
6778
|
+
light: z.ZodOptional<z.ZodString>;
|
|
6779
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
6780
6780
|
}, "strict", z.ZodTypeAny, {
|
|
6781
|
-
light
|
|
6782
|
-
dark
|
|
6781
|
+
light?: string | undefined;
|
|
6782
|
+
dark?: string | undefined;
|
|
6783
6783
|
}, {
|
|
6784
|
-
light
|
|
6785
|
-
dark
|
|
6784
|
+
light?: string | undefined;
|
|
6785
|
+
dark?: string | undefined;
|
|
6786
6786
|
}>>;
|
|
6787
6787
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6788
6788
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6792,8 +6792,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6792
6792
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6793
6793
|
} | undefined;
|
|
6794
6794
|
color?: {
|
|
6795
|
-
light
|
|
6796
|
-
dark
|
|
6795
|
+
light?: string | undefined;
|
|
6796
|
+
dark?: string | undefined;
|
|
6797
6797
|
} | undefined;
|
|
6798
6798
|
hidden?: boolean | undefined;
|
|
6799
6799
|
}, {
|
|
@@ -6803,8 +6803,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6803
6803
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6804
6804
|
} | undefined;
|
|
6805
6805
|
color?: {
|
|
6806
|
-
light
|
|
6807
|
-
dark
|
|
6806
|
+
light?: string | undefined;
|
|
6807
|
+
dark?: string | undefined;
|
|
6808
6808
|
} | undefined;
|
|
6809
6809
|
hidden?: boolean | undefined;
|
|
6810
6810
|
}>, z.ZodObject<{
|
|
@@ -6854,8 +6854,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6854
6854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6855
6855
|
} | undefined;
|
|
6856
6856
|
color?: {
|
|
6857
|
-
light
|
|
6858
|
-
dark
|
|
6857
|
+
light?: string | undefined;
|
|
6858
|
+
dark?: string | undefined;
|
|
6859
6859
|
} | undefined;
|
|
6860
6860
|
hidden?: boolean | undefined;
|
|
6861
6861
|
} & {
|
|
@@ -6901,8 +6901,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6901
6901
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6902
6902
|
} | undefined;
|
|
6903
6903
|
color?: {
|
|
6904
|
-
light
|
|
6905
|
-
dark
|
|
6904
|
+
light?: string | undefined;
|
|
6905
|
+
dark?: string | undefined;
|
|
6906
6906
|
} | undefined;
|
|
6907
6907
|
hidden?: boolean | undefined;
|
|
6908
6908
|
} & {
|
|
@@ -6950,8 +6950,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6950
6950
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6951
6951
|
} | undefined;
|
|
6952
6952
|
color?: {
|
|
6953
|
-
light
|
|
6954
|
-
dark
|
|
6953
|
+
light?: string | undefined;
|
|
6954
|
+
dark?: string | undefined;
|
|
6955
6955
|
} | undefined;
|
|
6956
6956
|
hidden?: boolean | undefined;
|
|
6957
6957
|
} & {
|
|
@@ -6999,8 +6999,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6999
6999
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7000
7000
|
} | undefined;
|
|
7001
7001
|
color?: {
|
|
7002
|
-
light
|
|
7003
|
-
dark
|
|
7002
|
+
light?: string | undefined;
|
|
7003
|
+
dark?: string | undefined;
|
|
7004
7004
|
} | undefined;
|
|
7005
7005
|
hidden?: boolean | undefined;
|
|
7006
7006
|
} & {
|
|
@@ -7565,8 +7565,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7565
7565
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7566
7566
|
} | undefined;
|
|
7567
7567
|
color?: {
|
|
7568
|
-
light
|
|
7569
|
-
dark
|
|
7568
|
+
light?: string | undefined;
|
|
7569
|
+
dark?: string | undefined;
|
|
7570
7570
|
} | undefined;
|
|
7571
7571
|
hidden?: boolean | undefined;
|
|
7572
7572
|
} & {
|
|
@@ -7671,8 +7671,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7671
7671
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7672
7672
|
} | undefined;
|
|
7673
7673
|
color?: {
|
|
7674
|
-
light
|
|
7675
|
-
dark
|
|
7674
|
+
light?: string | undefined;
|
|
7675
|
+
dark?: string | undefined;
|
|
7676
7676
|
} | undefined;
|
|
7677
7677
|
hidden?: boolean | undefined;
|
|
7678
7678
|
} & {
|
|
@@ -7716,8 +7716,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7716
7716
|
dark: string;
|
|
7717
7717
|
} | undefined;
|
|
7718
7718
|
color?: {
|
|
7719
|
-
light
|
|
7720
|
-
dark
|
|
7719
|
+
light?: string | undefined;
|
|
7720
|
+
dark?: string | undefined;
|
|
7721
7721
|
} | undefined;
|
|
7722
7722
|
} | undefined;
|
|
7723
7723
|
topbar?: {
|
|
@@ -7945,8 +7945,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7945
7945
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7946
7946
|
} | undefined;
|
|
7947
7947
|
color?: {
|
|
7948
|
-
light
|
|
7949
|
-
dark
|
|
7948
|
+
light?: string | undefined;
|
|
7949
|
+
dark?: string | undefined;
|
|
7950
7950
|
} | undefined;
|
|
7951
7951
|
hidden?: boolean | undefined;
|
|
7952
7952
|
} & {
|
|
@@ -8051,8 +8051,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8051
8051
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8052
8052
|
} | undefined;
|
|
8053
8053
|
color?: {
|
|
8054
|
-
light
|
|
8055
|
-
dark
|
|
8054
|
+
light?: string | undefined;
|
|
8055
|
+
dark?: string | undefined;
|
|
8056
8056
|
} | undefined;
|
|
8057
8057
|
hidden?: boolean | undefined;
|
|
8058
8058
|
} & {
|
|
@@ -8097,8 +8097,8 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8097
8097
|
} | undefined;
|
|
8098
8098
|
decoration?: "none" | "gradient" | "grid" | "windows" | undefined;
|
|
8099
8099
|
color?: {
|
|
8100
|
-
light
|
|
8101
|
-
dark
|
|
8100
|
+
light?: string | undefined;
|
|
8101
|
+
dark?: string | undefined;
|
|
8102
8102
|
} | undefined;
|
|
8103
8103
|
} | undefined;
|
|
8104
8104
|
topbar?: {
|