@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
|
@@ -81,6 +81,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
81
81
|
name: string;
|
|
82
82
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
83
83
|
}>]>>;
|
|
84
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
85
|
+
light: z.ZodOptional<z.ZodString>;
|
|
86
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
87
|
+
}, "strict", z.ZodTypeAny, {
|
|
88
|
+
light?: string | undefined;
|
|
89
|
+
dark?: string | undefined;
|
|
90
|
+
}, {
|
|
91
|
+
light?: string | undefined;
|
|
92
|
+
dark?: string | undefined;
|
|
93
|
+
}>>;
|
|
94
|
+
description: z.ZodOptional<z.ZodString>;
|
|
84
95
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
85
96
|
dropdown: z.ZodString;
|
|
86
97
|
href: z.ZodString;
|
|
@@ -91,6 +102,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
91
102
|
name: string;
|
|
92
103
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
93
104
|
} | undefined;
|
|
105
|
+
color?: {
|
|
106
|
+
light?: string | undefined;
|
|
107
|
+
dark?: string | undefined;
|
|
108
|
+
} | undefined;
|
|
109
|
+
description?: string | undefined;
|
|
94
110
|
hidden?: boolean | undefined;
|
|
95
111
|
}, {
|
|
96
112
|
href: string;
|
|
@@ -99,6 +115,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
99
115
|
name: string;
|
|
100
116
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
101
117
|
} | undefined;
|
|
118
|
+
color?: {
|
|
119
|
+
light?: string | undefined;
|
|
120
|
+
dark?: string | undefined;
|
|
121
|
+
} | undefined;
|
|
122
|
+
description?: string | undefined;
|
|
102
123
|
hidden?: boolean | undefined;
|
|
103
124
|
}>, "many">>;
|
|
104
125
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -179,6 +200,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
179
200
|
name: string;
|
|
180
201
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
181
202
|
} | undefined;
|
|
203
|
+
color?: {
|
|
204
|
+
light?: string | undefined;
|
|
205
|
+
dark?: string | undefined;
|
|
206
|
+
} | undefined;
|
|
207
|
+
description?: string | undefined;
|
|
182
208
|
hidden?: boolean | undefined;
|
|
183
209
|
}[] | undefined;
|
|
184
210
|
anchors?: {
|
|
@@ -223,6 +249,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
223
249
|
name: string;
|
|
224
250
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
225
251
|
} | undefined;
|
|
252
|
+
color?: {
|
|
253
|
+
light?: string | undefined;
|
|
254
|
+
dark?: string | undefined;
|
|
255
|
+
} | undefined;
|
|
256
|
+
description?: string | undefined;
|
|
226
257
|
hidden?: boolean | undefined;
|
|
227
258
|
}[] | undefined;
|
|
228
259
|
anchors?: {
|
|
@@ -271,6 +302,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
271
302
|
name: string;
|
|
272
303
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
273
304
|
} | undefined;
|
|
305
|
+
color?: {
|
|
306
|
+
light?: string | undefined;
|
|
307
|
+
dark?: string | undefined;
|
|
308
|
+
} | undefined;
|
|
309
|
+
description?: string | undefined;
|
|
274
310
|
hidden?: boolean | undefined;
|
|
275
311
|
}[] | undefined;
|
|
276
312
|
anchors?: {
|
|
@@ -318,6 +354,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
318
354
|
name: string;
|
|
319
355
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
320
356
|
} | undefined;
|
|
357
|
+
color?: {
|
|
358
|
+
light?: string | undefined;
|
|
359
|
+
dark?: string | undefined;
|
|
360
|
+
} | undefined;
|
|
361
|
+
description?: string | undefined;
|
|
321
362
|
hidden?: boolean | undefined;
|
|
322
363
|
}[] | undefined;
|
|
323
364
|
anchors?: {
|
|
@@ -410,6 +451,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
410
451
|
name: string;
|
|
411
452
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
412
453
|
}>]>>;
|
|
454
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
455
|
+
light: z.ZodOptional<z.ZodString>;
|
|
456
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
457
|
+
}, "strict", z.ZodTypeAny, {
|
|
458
|
+
light?: string | undefined;
|
|
459
|
+
dark?: string | undefined;
|
|
460
|
+
}, {
|
|
461
|
+
light?: string | undefined;
|
|
462
|
+
dark?: string | undefined;
|
|
463
|
+
}>>;
|
|
464
|
+
description: z.ZodOptional<z.ZodString>;
|
|
413
465
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
414
466
|
dropdown: z.ZodString;
|
|
415
467
|
href: z.ZodString;
|
|
@@ -420,6 +472,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
420
472
|
name: string;
|
|
421
473
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
422
474
|
} | undefined;
|
|
475
|
+
color?: {
|
|
476
|
+
light?: string | undefined;
|
|
477
|
+
dark?: string | undefined;
|
|
478
|
+
} | undefined;
|
|
479
|
+
description?: string | undefined;
|
|
423
480
|
hidden?: boolean | undefined;
|
|
424
481
|
}, {
|
|
425
482
|
href: string;
|
|
@@ -428,6 +485,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
428
485
|
name: string;
|
|
429
486
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
430
487
|
} | undefined;
|
|
488
|
+
color?: {
|
|
489
|
+
light?: string | undefined;
|
|
490
|
+
dark?: string | undefined;
|
|
491
|
+
} | undefined;
|
|
492
|
+
description?: string | undefined;
|
|
431
493
|
hidden?: boolean | undefined;
|
|
432
494
|
}>, "many">>;
|
|
433
495
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -508,6 +570,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
508
570
|
name: string;
|
|
509
571
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
510
572
|
} | undefined;
|
|
573
|
+
color?: {
|
|
574
|
+
light?: string | undefined;
|
|
575
|
+
dark?: string | undefined;
|
|
576
|
+
} | undefined;
|
|
577
|
+
description?: string | undefined;
|
|
511
578
|
hidden?: boolean | undefined;
|
|
512
579
|
}[] | undefined;
|
|
513
580
|
anchors?: {
|
|
@@ -552,6 +619,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
552
619
|
name: string;
|
|
553
620
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
554
621
|
} | undefined;
|
|
622
|
+
color?: {
|
|
623
|
+
light?: string | undefined;
|
|
624
|
+
dark?: string | undefined;
|
|
625
|
+
} | undefined;
|
|
626
|
+
description?: string | undefined;
|
|
555
627
|
hidden?: boolean | undefined;
|
|
556
628
|
}[] | undefined;
|
|
557
629
|
anchors?: {
|
|
@@ -600,6 +672,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
600
672
|
name: string;
|
|
601
673
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
602
674
|
} | undefined;
|
|
675
|
+
color?: {
|
|
676
|
+
light?: string | undefined;
|
|
677
|
+
dark?: string | undefined;
|
|
678
|
+
} | undefined;
|
|
679
|
+
description?: string | undefined;
|
|
603
680
|
hidden?: boolean | undefined;
|
|
604
681
|
}[] | undefined;
|
|
605
682
|
anchors?: {
|
|
@@ -647,6 +724,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
647
724
|
name: string;
|
|
648
725
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
649
726
|
} | undefined;
|
|
727
|
+
color?: {
|
|
728
|
+
light?: string | undefined;
|
|
729
|
+
dark?: string | undefined;
|
|
730
|
+
} | undefined;
|
|
731
|
+
description?: string | undefined;
|
|
650
732
|
hidden?: boolean | undefined;
|
|
651
733
|
}[] | undefined;
|
|
652
734
|
anchors?: {
|
|
@@ -739,6 +821,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
739
821
|
name: string;
|
|
740
822
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
741
823
|
}>]>>;
|
|
824
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
825
|
+
light: z.ZodOptional<z.ZodString>;
|
|
826
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
827
|
+
}, "strict", z.ZodTypeAny, {
|
|
828
|
+
light?: string | undefined;
|
|
829
|
+
dark?: string | undefined;
|
|
830
|
+
}, {
|
|
831
|
+
light?: string | undefined;
|
|
832
|
+
dark?: string | undefined;
|
|
833
|
+
}>>;
|
|
834
|
+
description: z.ZodOptional<z.ZodString>;
|
|
742
835
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
743
836
|
dropdown: z.ZodString;
|
|
744
837
|
href: z.ZodString;
|
|
@@ -749,6 +842,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
749
842
|
name: string;
|
|
750
843
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
751
844
|
} | undefined;
|
|
845
|
+
color?: {
|
|
846
|
+
light?: string | undefined;
|
|
847
|
+
dark?: string | undefined;
|
|
848
|
+
} | undefined;
|
|
849
|
+
description?: string | undefined;
|
|
752
850
|
hidden?: boolean | undefined;
|
|
753
851
|
}, {
|
|
754
852
|
href: string;
|
|
@@ -757,6 +855,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
757
855
|
name: string;
|
|
758
856
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
759
857
|
} | undefined;
|
|
858
|
+
color?: {
|
|
859
|
+
light?: string | undefined;
|
|
860
|
+
dark?: string | undefined;
|
|
861
|
+
} | undefined;
|
|
862
|
+
description?: string | undefined;
|
|
760
863
|
hidden?: boolean | undefined;
|
|
761
864
|
}>, "many">>;
|
|
762
865
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -837,6 +940,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
837
940
|
name: string;
|
|
838
941
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
839
942
|
} | undefined;
|
|
943
|
+
color?: {
|
|
944
|
+
light?: string | undefined;
|
|
945
|
+
dark?: string | undefined;
|
|
946
|
+
} | undefined;
|
|
947
|
+
description?: string | undefined;
|
|
840
948
|
hidden?: boolean | undefined;
|
|
841
949
|
}[] | undefined;
|
|
842
950
|
anchors?: {
|
|
@@ -881,6 +989,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
881
989
|
name: string;
|
|
882
990
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
883
991
|
} | undefined;
|
|
992
|
+
color?: {
|
|
993
|
+
light?: string | undefined;
|
|
994
|
+
dark?: string | undefined;
|
|
995
|
+
} | undefined;
|
|
996
|
+
description?: string | undefined;
|
|
884
997
|
hidden?: boolean | undefined;
|
|
885
998
|
}[] | undefined;
|
|
886
999
|
anchors?: {
|
|
@@ -929,6 +1042,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
929
1042
|
name: string;
|
|
930
1043
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
931
1044
|
} | undefined;
|
|
1045
|
+
color?: {
|
|
1046
|
+
light?: string | undefined;
|
|
1047
|
+
dark?: string | undefined;
|
|
1048
|
+
} | undefined;
|
|
1049
|
+
description?: string | undefined;
|
|
932
1050
|
hidden?: boolean | undefined;
|
|
933
1051
|
}[] | undefined;
|
|
934
1052
|
anchors?: {
|
|
@@ -976,6 +1094,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
976
1094
|
name: string;
|
|
977
1095
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
978
1096
|
} | undefined;
|
|
1097
|
+
color?: {
|
|
1098
|
+
light?: string | undefined;
|
|
1099
|
+
dark?: string | undefined;
|
|
1100
|
+
} | undefined;
|
|
1101
|
+
description?: string | undefined;
|
|
979
1102
|
hidden?: boolean | undefined;
|
|
980
1103
|
}[] | undefined;
|
|
981
1104
|
anchors?: {
|
|
@@ -1068,6 +1191,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1068
1191
|
name: string;
|
|
1069
1192
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1070
1193
|
}>]>>;
|
|
1194
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1195
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1197
|
+
}, "strict", z.ZodTypeAny, {
|
|
1198
|
+
light?: string | undefined;
|
|
1199
|
+
dark?: string | undefined;
|
|
1200
|
+
}, {
|
|
1201
|
+
light?: string | undefined;
|
|
1202
|
+
dark?: string | undefined;
|
|
1203
|
+
}>>;
|
|
1204
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1071
1205
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1072
1206
|
dropdown: z.ZodString;
|
|
1073
1207
|
href: z.ZodString;
|
|
@@ -1078,6 +1212,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1078
1212
|
name: string;
|
|
1079
1213
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1080
1214
|
} | undefined;
|
|
1215
|
+
color?: {
|
|
1216
|
+
light?: string | undefined;
|
|
1217
|
+
dark?: string | undefined;
|
|
1218
|
+
} | undefined;
|
|
1219
|
+
description?: string | undefined;
|
|
1081
1220
|
hidden?: boolean | undefined;
|
|
1082
1221
|
}, {
|
|
1083
1222
|
href: string;
|
|
@@ -1086,6 +1225,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1086
1225
|
name: string;
|
|
1087
1226
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1088
1227
|
} | undefined;
|
|
1228
|
+
color?: {
|
|
1229
|
+
light?: string | undefined;
|
|
1230
|
+
dark?: string | undefined;
|
|
1231
|
+
} | undefined;
|
|
1232
|
+
description?: string | undefined;
|
|
1089
1233
|
hidden?: boolean | undefined;
|
|
1090
1234
|
}>, "many">>;
|
|
1091
1235
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1166,6 +1310,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1166
1310
|
name: string;
|
|
1167
1311
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1168
1312
|
} | undefined;
|
|
1313
|
+
color?: {
|
|
1314
|
+
light?: string | undefined;
|
|
1315
|
+
dark?: string | undefined;
|
|
1316
|
+
} | undefined;
|
|
1317
|
+
description?: string | undefined;
|
|
1169
1318
|
hidden?: boolean | undefined;
|
|
1170
1319
|
}[] | undefined;
|
|
1171
1320
|
anchors?: {
|
|
@@ -1210,6 +1359,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1210
1359
|
name: string;
|
|
1211
1360
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1212
1361
|
} | undefined;
|
|
1362
|
+
color?: {
|
|
1363
|
+
light?: string | undefined;
|
|
1364
|
+
dark?: string | undefined;
|
|
1365
|
+
} | undefined;
|
|
1366
|
+
description?: string | undefined;
|
|
1213
1367
|
hidden?: boolean | undefined;
|
|
1214
1368
|
}[] | undefined;
|
|
1215
1369
|
anchors?: {
|
|
@@ -1258,6 +1412,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1258
1412
|
name: string;
|
|
1259
1413
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1260
1414
|
} | undefined;
|
|
1415
|
+
color?: {
|
|
1416
|
+
light?: string | undefined;
|
|
1417
|
+
dark?: string | undefined;
|
|
1418
|
+
} | undefined;
|
|
1419
|
+
description?: string | undefined;
|
|
1261
1420
|
hidden?: boolean | undefined;
|
|
1262
1421
|
}[] | undefined;
|
|
1263
1422
|
anchors?: {
|
|
@@ -1305,6 +1464,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1305
1464
|
name: string;
|
|
1306
1465
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1307
1466
|
} | undefined;
|
|
1467
|
+
color?: {
|
|
1468
|
+
light?: string | undefined;
|
|
1469
|
+
dark?: string | undefined;
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
description?: string | undefined;
|
|
1308
1472
|
hidden?: boolean | undefined;
|
|
1309
1473
|
}[] | undefined;
|
|
1310
1474
|
anchors?: {
|
|
@@ -1397,6 +1561,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1397
1561
|
name: string;
|
|
1398
1562
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1399
1563
|
}>]>>;
|
|
1564
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1565
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
}, "strict", z.ZodTypeAny, {
|
|
1568
|
+
light?: string | undefined;
|
|
1569
|
+
dark?: string | undefined;
|
|
1570
|
+
}, {
|
|
1571
|
+
light?: string | undefined;
|
|
1572
|
+
dark?: string | undefined;
|
|
1573
|
+
}>>;
|
|
1574
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1400
1575
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1401
1576
|
dropdown: z.ZodString;
|
|
1402
1577
|
href: z.ZodString;
|
|
@@ -1407,6 +1582,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1407
1582
|
name: string;
|
|
1408
1583
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1409
1584
|
} | undefined;
|
|
1585
|
+
color?: {
|
|
1586
|
+
light?: string | undefined;
|
|
1587
|
+
dark?: string | undefined;
|
|
1588
|
+
} | undefined;
|
|
1589
|
+
description?: string | undefined;
|
|
1410
1590
|
hidden?: boolean | undefined;
|
|
1411
1591
|
}, {
|
|
1412
1592
|
href: string;
|
|
@@ -1415,6 +1595,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1415
1595
|
name: string;
|
|
1416
1596
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1417
1597
|
} | undefined;
|
|
1598
|
+
color?: {
|
|
1599
|
+
light?: string | undefined;
|
|
1600
|
+
dark?: string | undefined;
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
description?: string | undefined;
|
|
1418
1603
|
hidden?: boolean | undefined;
|
|
1419
1604
|
}>, "many">>;
|
|
1420
1605
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1495,6 +1680,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1495
1680
|
name: string;
|
|
1496
1681
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1497
1682
|
} | undefined;
|
|
1683
|
+
color?: {
|
|
1684
|
+
light?: string | undefined;
|
|
1685
|
+
dark?: string | undefined;
|
|
1686
|
+
} | undefined;
|
|
1687
|
+
description?: string | undefined;
|
|
1498
1688
|
hidden?: boolean | undefined;
|
|
1499
1689
|
}[] | undefined;
|
|
1500
1690
|
anchors?: {
|
|
@@ -1539,6 +1729,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1539
1729
|
name: string;
|
|
1540
1730
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1541
1731
|
} | undefined;
|
|
1732
|
+
color?: {
|
|
1733
|
+
light?: string | undefined;
|
|
1734
|
+
dark?: string | undefined;
|
|
1735
|
+
} | undefined;
|
|
1736
|
+
description?: string | undefined;
|
|
1542
1737
|
hidden?: boolean | undefined;
|
|
1543
1738
|
}[] | undefined;
|
|
1544
1739
|
anchors?: {
|
|
@@ -1587,6 +1782,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1587
1782
|
name: string;
|
|
1588
1783
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1589
1784
|
} | undefined;
|
|
1785
|
+
color?: {
|
|
1786
|
+
light?: string | undefined;
|
|
1787
|
+
dark?: string | undefined;
|
|
1788
|
+
} | undefined;
|
|
1789
|
+
description?: string | undefined;
|
|
1590
1790
|
hidden?: boolean | undefined;
|
|
1591
1791
|
}[] | undefined;
|
|
1592
1792
|
anchors?: {
|
|
@@ -1634,6 +1834,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1634
1834
|
name: string;
|
|
1635
1835
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1636
1836
|
} | undefined;
|
|
1837
|
+
color?: {
|
|
1838
|
+
light?: string | undefined;
|
|
1839
|
+
dark?: string | undefined;
|
|
1840
|
+
} | undefined;
|
|
1841
|
+
description?: string | undefined;
|
|
1637
1842
|
hidden?: boolean | undefined;
|
|
1638
1843
|
}[] | undefined;
|
|
1639
1844
|
anchors?: {
|
|
@@ -1726,6 +1931,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1726
1931
|
name: string;
|
|
1727
1932
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1728
1933
|
}>]>>;
|
|
1934
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1935
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1936
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1937
|
+
}, "strict", z.ZodTypeAny, {
|
|
1938
|
+
light?: string | undefined;
|
|
1939
|
+
dark?: string | undefined;
|
|
1940
|
+
}, {
|
|
1941
|
+
light?: string | undefined;
|
|
1942
|
+
dark?: string | undefined;
|
|
1943
|
+
}>>;
|
|
1944
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1729
1945
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1730
1946
|
dropdown: z.ZodString;
|
|
1731
1947
|
href: z.ZodString;
|
|
@@ -1736,6 +1952,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1736
1952
|
name: string;
|
|
1737
1953
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1738
1954
|
} | undefined;
|
|
1955
|
+
color?: {
|
|
1956
|
+
light?: string | undefined;
|
|
1957
|
+
dark?: string | undefined;
|
|
1958
|
+
} | undefined;
|
|
1959
|
+
description?: string | undefined;
|
|
1739
1960
|
hidden?: boolean | undefined;
|
|
1740
1961
|
}, {
|
|
1741
1962
|
href: string;
|
|
@@ -1744,6 +1965,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1744
1965
|
name: string;
|
|
1745
1966
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1746
1967
|
} | undefined;
|
|
1968
|
+
color?: {
|
|
1969
|
+
light?: string | undefined;
|
|
1970
|
+
dark?: string | undefined;
|
|
1971
|
+
} | undefined;
|
|
1972
|
+
description?: string | undefined;
|
|
1747
1973
|
hidden?: boolean | undefined;
|
|
1748
1974
|
}>, "many">>;
|
|
1749
1975
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1824,6 +2050,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1824
2050
|
name: string;
|
|
1825
2051
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1826
2052
|
} | undefined;
|
|
2053
|
+
color?: {
|
|
2054
|
+
light?: string | undefined;
|
|
2055
|
+
dark?: string | undefined;
|
|
2056
|
+
} | undefined;
|
|
2057
|
+
description?: string | undefined;
|
|
1827
2058
|
hidden?: boolean | undefined;
|
|
1828
2059
|
}[] | undefined;
|
|
1829
2060
|
anchors?: {
|
|
@@ -1868,6 +2099,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1868
2099
|
name: string;
|
|
1869
2100
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1870
2101
|
} | undefined;
|
|
2102
|
+
color?: {
|
|
2103
|
+
light?: string | undefined;
|
|
2104
|
+
dark?: string | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
description?: string | undefined;
|
|
1871
2107
|
hidden?: boolean | undefined;
|
|
1872
2108
|
}[] | undefined;
|
|
1873
2109
|
anchors?: {
|
|
@@ -2027,6 +2263,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2027
2263
|
name: string;
|
|
2028
2264
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2029
2265
|
} | undefined;
|
|
2266
|
+
color?: {
|
|
2267
|
+
light?: string | undefined;
|
|
2268
|
+
dark?: string | undefined;
|
|
2269
|
+
} | undefined;
|
|
2270
|
+
description?: string | undefined;
|
|
2030
2271
|
hidden?: boolean | undefined;
|
|
2031
2272
|
}[] | undefined;
|
|
2032
2273
|
anchors?: {
|
|
@@ -2098,6 +2339,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2098
2339
|
name: string;
|
|
2099
2340
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2100
2341
|
} | undefined;
|
|
2342
|
+
color?: {
|
|
2343
|
+
light?: string | undefined;
|
|
2344
|
+
dark?: string | undefined;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
description?: string | undefined;
|
|
2101
2347
|
hidden?: boolean | undefined;
|
|
2102
2348
|
}[] | undefined;
|
|
2103
2349
|
anchors?: {
|
|
@@ -2190,6 +2436,17 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2190
2436
|
name: string;
|
|
2191
2437
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2192
2438
|
}>]>>;
|
|
2439
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
2440
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2441
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2442
|
+
}, "strict", z.ZodTypeAny, {
|
|
2443
|
+
light?: string | undefined;
|
|
2444
|
+
dark?: string | undefined;
|
|
2445
|
+
}, {
|
|
2446
|
+
light?: string | undefined;
|
|
2447
|
+
dark?: string | undefined;
|
|
2448
|
+
}>>;
|
|
2449
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2193
2450
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2194
2451
|
dropdown: z.ZodString;
|
|
2195
2452
|
href: z.ZodString;
|
|
@@ -2200,6 +2457,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2200
2457
|
name: string;
|
|
2201
2458
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2202
2459
|
} | undefined;
|
|
2460
|
+
color?: {
|
|
2461
|
+
light?: string | undefined;
|
|
2462
|
+
dark?: string | undefined;
|
|
2463
|
+
} | undefined;
|
|
2464
|
+
description?: string | undefined;
|
|
2203
2465
|
hidden?: boolean | undefined;
|
|
2204
2466
|
}, {
|
|
2205
2467
|
href: string;
|
|
@@ -2208,6 +2470,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2208
2470
|
name: string;
|
|
2209
2471
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2210
2472
|
} | undefined;
|
|
2473
|
+
color?: {
|
|
2474
|
+
light?: string | undefined;
|
|
2475
|
+
dark?: string | undefined;
|
|
2476
|
+
} | undefined;
|
|
2477
|
+
description?: string | undefined;
|
|
2211
2478
|
hidden?: boolean | undefined;
|
|
2212
2479
|
}>, "many">>;
|
|
2213
2480
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2288,6 +2555,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2288
2555
|
name: string;
|
|
2289
2556
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2290
2557
|
} | undefined;
|
|
2558
|
+
color?: {
|
|
2559
|
+
light?: string | undefined;
|
|
2560
|
+
dark?: string | undefined;
|
|
2561
|
+
} | undefined;
|
|
2562
|
+
description?: string | undefined;
|
|
2291
2563
|
hidden?: boolean | undefined;
|
|
2292
2564
|
}[] | undefined;
|
|
2293
2565
|
anchors?: {
|
|
@@ -2332,6 +2604,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2332
2604
|
name: string;
|
|
2333
2605
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2334
2606
|
} | undefined;
|
|
2607
|
+
color?: {
|
|
2608
|
+
light?: string | undefined;
|
|
2609
|
+
dark?: string | undefined;
|
|
2610
|
+
} | undefined;
|
|
2611
|
+
description?: string | undefined;
|
|
2335
2612
|
hidden?: boolean | undefined;
|
|
2336
2613
|
}[] | undefined;
|
|
2337
2614
|
anchors?: {
|
|
@@ -2380,6 +2657,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2380
2657
|
name: string;
|
|
2381
2658
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2382
2659
|
} | undefined;
|
|
2660
|
+
color?: {
|
|
2661
|
+
light?: string | undefined;
|
|
2662
|
+
dark?: string | undefined;
|
|
2663
|
+
} | undefined;
|
|
2664
|
+
description?: string | undefined;
|
|
2383
2665
|
hidden?: boolean | undefined;
|
|
2384
2666
|
}[] | undefined;
|
|
2385
2667
|
anchors?: {
|
|
@@ -2427,6 +2709,11 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2427
2709
|
name: string;
|
|
2428
2710
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2429
2711
|
} | undefined;
|
|
2712
|
+
color?: {
|
|
2713
|
+
light?: string | undefined;
|
|
2714
|
+
dark?: string | undefined;
|
|
2715
|
+
} | undefined;
|
|
2716
|
+
description?: string | undefined;
|
|
2430
2717
|
hidden?: boolean | undefined;
|
|
2431
2718
|
}[] | undefined;
|
|
2432
2719
|
anchors?: {
|
|
@@ -2613,6 +2900,17 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2613
2900
|
name: string;
|
|
2614
2901
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2615
2902
|
}>]>>;
|
|
2903
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
2904
|
+
light: z.ZodOptional<z.ZodString>;
|
|
2905
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
2906
|
+
}, "strict", z.ZodTypeAny, {
|
|
2907
|
+
light?: string | undefined;
|
|
2908
|
+
dark?: string | undefined;
|
|
2909
|
+
}, {
|
|
2910
|
+
light?: string | undefined;
|
|
2911
|
+
dark?: string | undefined;
|
|
2912
|
+
}>>;
|
|
2913
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2616
2914
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2617
2915
|
dropdown: z.ZodString;
|
|
2618
2916
|
href: z.ZodString;
|
|
@@ -2623,6 +2921,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2623
2921
|
name: string;
|
|
2624
2922
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2625
2923
|
} | undefined;
|
|
2924
|
+
color?: {
|
|
2925
|
+
light?: string | undefined;
|
|
2926
|
+
dark?: string | undefined;
|
|
2927
|
+
} | undefined;
|
|
2928
|
+
description?: string | undefined;
|
|
2626
2929
|
hidden?: boolean | undefined;
|
|
2627
2930
|
}, {
|
|
2628
2931
|
href: string;
|
|
@@ -2631,6 +2934,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2631
2934
|
name: string;
|
|
2632
2935
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2633
2936
|
} | undefined;
|
|
2937
|
+
color?: {
|
|
2938
|
+
light?: string | undefined;
|
|
2939
|
+
dark?: string | undefined;
|
|
2940
|
+
} | undefined;
|
|
2941
|
+
description?: string | undefined;
|
|
2634
2942
|
hidden?: boolean | undefined;
|
|
2635
2943
|
}>, "many">>;
|
|
2636
2944
|
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2711,6 +3019,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2711
3019
|
name: string;
|
|
2712
3020
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2713
3021
|
} | undefined;
|
|
3022
|
+
color?: {
|
|
3023
|
+
light?: string | undefined;
|
|
3024
|
+
dark?: string | undefined;
|
|
3025
|
+
} | undefined;
|
|
3026
|
+
description?: string | undefined;
|
|
2714
3027
|
hidden?: boolean | undefined;
|
|
2715
3028
|
}[] | undefined;
|
|
2716
3029
|
anchors?: {
|
|
@@ -2755,6 +3068,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2755
3068
|
name: string;
|
|
2756
3069
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2757
3070
|
} | undefined;
|
|
3071
|
+
color?: {
|
|
3072
|
+
light?: string | undefined;
|
|
3073
|
+
dark?: string | undefined;
|
|
3074
|
+
} | undefined;
|
|
3075
|
+
description?: string | undefined;
|
|
2758
3076
|
hidden?: boolean | undefined;
|
|
2759
3077
|
}[] | undefined;
|
|
2760
3078
|
anchors?: {
|
|
@@ -2801,6 +3119,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2801
3119
|
name: string;
|
|
2802
3120
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2803
3121
|
} | undefined;
|
|
3122
|
+
color?: {
|
|
3123
|
+
light?: string | undefined;
|
|
3124
|
+
dark?: string | undefined;
|
|
3125
|
+
} | undefined;
|
|
3126
|
+
description?: string | undefined;
|
|
2804
3127
|
hidden?: boolean | undefined;
|
|
2805
3128
|
}[] | undefined;
|
|
2806
3129
|
anchors?: {
|
|
@@ -2847,6 +3170,11 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
2847
3170
|
name: string;
|
|
2848
3171
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2849
3172
|
} | undefined;
|
|
3173
|
+
color?: {
|
|
3174
|
+
light?: string | undefined;
|
|
3175
|
+
dark?: string | undefined;
|
|
3176
|
+
} | undefined;
|
|
3177
|
+
description?: string | undefined;
|
|
2850
3178
|
hidden?: boolean | undefined;
|
|
2851
3179
|
}[] | undefined;
|
|
2852
3180
|
anchors?: {
|