@mintlify/validation 0.1.272 → 0.1.274
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 +19674 -4894
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +6 -9
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -9
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +53 -78
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +2110 -245
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +8 -8
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +6 -9
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +6 -9
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +5 -8
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +1 -1
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +3385 -429
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +3385 -429
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +3385 -429
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +3385 -429
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +2020 -120
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +3385 -429
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +13 -4
- package/dist/mint-config/validateConfig.d.ts +6961 -1681
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +2 -2
- package/package.json +2 -2
|
@@ -5,37 +5,1885 @@ import { DecoratedGroupConfig, GroupConfig } from './groups.js';
|
|
|
5
5
|
import { DecoratedLanguageConfig, LanguageConfig } from './languages.js';
|
|
6
6
|
import { DecoratedTabConfig, TabConfig } from './tabs.js';
|
|
7
7
|
import { DecoratedVersionConfig, VersionConfig } from './version.js';
|
|
8
|
-
export declare const navigationSchema: z.
|
|
8
|
+
export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
9
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
10
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
14
|
+
href: z.ZodString;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
href: string;
|
|
17
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
18
|
+
default?: boolean | undefined;
|
|
19
|
+
hidden?: boolean | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
href: string;
|
|
22
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
23
|
+
default?: boolean | undefined;
|
|
24
|
+
hidden?: boolean | undefined;
|
|
25
|
+
}>, "many">>;
|
|
26
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27
|
+
version: z.ZodString;
|
|
28
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
30
|
+
href: z.ZodString;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
version: string;
|
|
33
|
+
href: string;
|
|
34
|
+
default?: boolean | undefined;
|
|
35
|
+
hidden?: boolean | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
version: string;
|
|
38
|
+
href: string;
|
|
39
|
+
default?: boolean | undefined;
|
|
40
|
+
hidden?: boolean | undefined;
|
|
41
|
+
}>, "many">>;
|
|
42
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
44
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
45
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
46
|
+
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
name: string;
|
|
48
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
49
|
+
}, {
|
|
50
|
+
name: string;
|
|
51
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
52
|
+
}>]>>;
|
|
53
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
54
|
+
tab: z.ZodString;
|
|
55
|
+
href: z.ZodString;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
href: string;
|
|
58
|
+
tab: string;
|
|
59
|
+
icon?: string | {
|
|
60
|
+
name: string;
|
|
61
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
62
|
+
} | undefined;
|
|
63
|
+
hidden?: boolean | undefined;
|
|
64
|
+
}, {
|
|
65
|
+
href: string;
|
|
66
|
+
tab: string;
|
|
67
|
+
icon?: string | {
|
|
68
|
+
name: string;
|
|
69
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
70
|
+
} | undefined;
|
|
71
|
+
hidden?: boolean | undefined;
|
|
72
|
+
}>, "many">>;
|
|
73
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
74
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
75
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
76
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
name: string;
|
|
79
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
name: string;
|
|
82
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
83
|
+
}>]>>;
|
|
84
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
85
|
+
dropdown: z.ZodString;
|
|
86
|
+
href: z.ZodString;
|
|
87
|
+
}, "strip", z.ZodTypeAny, {
|
|
88
|
+
href: string;
|
|
89
|
+
dropdown: string;
|
|
90
|
+
icon?: string | {
|
|
91
|
+
name: string;
|
|
92
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
93
|
+
} | undefined;
|
|
94
|
+
hidden?: boolean | undefined;
|
|
95
|
+
}, {
|
|
96
|
+
href: string;
|
|
97
|
+
dropdown: string;
|
|
98
|
+
icon?: string | {
|
|
99
|
+
name: string;
|
|
100
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
101
|
+
} | undefined;
|
|
102
|
+
hidden?: boolean | undefined;
|
|
103
|
+
}>, "many">>;
|
|
104
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
105
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
106
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
107
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
name: string;
|
|
110
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
111
|
+
}, {
|
|
112
|
+
name: string;
|
|
113
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
114
|
+
}>]>>;
|
|
115
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
116
|
+
light: z.ZodOptional<z.ZodString>;
|
|
117
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
118
|
+
}, "strict", z.ZodTypeAny, {
|
|
119
|
+
light?: string | undefined;
|
|
120
|
+
dark?: string | undefined;
|
|
121
|
+
}, {
|
|
122
|
+
light?: string | undefined;
|
|
123
|
+
dark?: string | undefined;
|
|
124
|
+
}>>;
|
|
125
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
126
|
+
anchor: z.ZodString;
|
|
127
|
+
href: z.ZodString;
|
|
128
|
+
}, "strip", z.ZodTypeAny, {
|
|
129
|
+
href: string;
|
|
130
|
+
anchor: string;
|
|
131
|
+
icon?: string | {
|
|
132
|
+
name: string;
|
|
133
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
134
|
+
} | undefined;
|
|
135
|
+
color?: {
|
|
136
|
+
light?: string | undefined;
|
|
137
|
+
dark?: string | undefined;
|
|
138
|
+
} | undefined;
|
|
139
|
+
hidden?: boolean | undefined;
|
|
140
|
+
}, {
|
|
141
|
+
href: string;
|
|
142
|
+
anchor: string;
|
|
143
|
+
icon?: string | {
|
|
144
|
+
name: string;
|
|
145
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
146
|
+
} | undefined;
|
|
147
|
+
color?: {
|
|
148
|
+
light?: string | undefined;
|
|
149
|
+
dark?: string | undefined;
|
|
150
|
+
} | undefined;
|
|
151
|
+
hidden?: boolean | undefined;
|
|
152
|
+
}>, "many">>;
|
|
153
|
+
}, "strict", z.ZodTypeAny, {
|
|
154
|
+
languages?: {
|
|
155
|
+
href: string;
|
|
156
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
157
|
+
default?: boolean | undefined;
|
|
158
|
+
hidden?: boolean | undefined;
|
|
159
|
+
}[] | undefined;
|
|
160
|
+
versions?: {
|
|
161
|
+
version: string;
|
|
162
|
+
href: string;
|
|
163
|
+
default?: boolean | undefined;
|
|
164
|
+
hidden?: boolean | undefined;
|
|
165
|
+
}[] | undefined;
|
|
166
|
+
tabs?: {
|
|
167
|
+
href: string;
|
|
168
|
+
tab: string;
|
|
169
|
+
icon?: string | {
|
|
170
|
+
name: string;
|
|
171
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
172
|
+
} | undefined;
|
|
173
|
+
hidden?: boolean | undefined;
|
|
174
|
+
}[] | undefined;
|
|
175
|
+
dropdowns?: {
|
|
176
|
+
href: string;
|
|
177
|
+
dropdown: string;
|
|
178
|
+
icon?: string | {
|
|
179
|
+
name: string;
|
|
180
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
181
|
+
} | undefined;
|
|
182
|
+
hidden?: boolean | undefined;
|
|
183
|
+
}[] | undefined;
|
|
184
|
+
anchors?: {
|
|
185
|
+
href: string;
|
|
186
|
+
anchor: string;
|
|
187
|
+
icon?: string | {
|
|
188
|
+
name: string;
|
|
189
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
190
|
+
} | undefined;
|
|
191
|
+
color?: {
|
|
192
|
+
light?: string | undefined;
|
|
193
|
+
dark?: string | undefined;
|
|
194
|
+
} | undefined;
|
|
195
|
+
hidden?: boolean | undefined;
|
|
196
|
+
}[] | undefined;
|
|
197
|
+
}, {
|
|
198
|
+
languages?: {
|
|
199
|
+
href: string;
|
|
200
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
201
|
+
default?: boolean | undefined;
|
|
202
|
+
hidden?: boolean | undefined;
|
|
203
|
+
}[] | undefined;
|
|
204
|
+
versions?: {
|
|
205
|
+
version: string;
|
|
206
|
+
href: string;
|
|
207
|
+
default?: boolean | undefined;
|
|
208
|
+
hidden?: boolean | undefined;
|
|
209
|
+
}[] | undefined;
|
|
210
|
+
tabs?: {
|
|
211
|
+
href: string;
|
|
212
|
+
tab: string;
|
|
213
|
+
icon?: string | {
|
|
214
|
+
name: string;
|
|
215
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
216
|
+
} | undefined;
|
|
217
|
+
hidden?: boolean | undefined;
|
|
218
|
+
}[] | undefined;
|
|
219
|
+
dropdowns?: {
|
|
220
|
+
href: string;
|
|
221
|
+
dropdown: string;
|
|
222
|
+
icon?: string | {
|
|
223
|
+
name: string;
|
|
224
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
225
|
+
} | undefined;
|
|
226
|
+
hidden?: boolean | undefined;
|
|
227
|
+
}[] | undefined;
|
|
228
|
+
anchors?: {
|
|
229
|
+
href: string;
|
|
230
|
+
anchor: string;
|
|
231
|
+
icon?: string | {
|
|
232
|
+
name: string;
|
|
233
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
234
|
+
} | undefined;
|
|
235
|
+
color?: {
|
|
236
|
+
light?: string | undefined;
|
|
237
|
+
dark?: string | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
hidden?: boolean | undefined;
|
|
240
|
+
}[] | undefined;
|
|
241
|
+
}>>;
|
|
9
242
|
languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"default">>, "many">;
|
|
10
243
|
}, "strip", z.ZodTypeAny, {
|
|
11
244
|
languages: import("./divisionNav.js").LanguageNavigation<"default">[];
|
|
245
|
+
global?: {
|
|
246
|
+
languages?: {
|
|
247
|
+
href: string;
|
|
248
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
249
|
+
default?: boolean | undefined;
|
|
250
|
+
hidden?: boolean | undefined;
|
|
251
|
+
}[] | undefined;
|
|
252
|
+
versions?: {
|
|
253
|
+
version: string;
|
|
254
|
+
href: string;
|
|
255
|
+
default?: boolean | undefined;
|
|
256
|
+
hidden?: boolean | undefined;
|
|
257
|
+
}[] | undefined;
|
|
258
|
+
tabs?: {
|
|
259
|
+
href: string;
|
|
260
|
+
tab: string;
|
|
261
|
+
icon?: string | {
|
|
262
|
+
name: string;
|
|
263
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
264
|
+
} | undefined;
|
|
265
|
+
hidden?: boolean | undefined;
|
|
266
|
+
}[] | undefined;
|
|
267
|
+
dropdowns?: {
|
|
268
|
+
href: string;
|
|
269
|
+
dropdown: string;
|
|
270
|
+
icon?: string | {
|
|
271
|
+
name: string;
|
|
272
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
273
|
+
} | undefined;
|
|
274
|
+
hidden?: boolean | undefined;
|
|
275
|
+
}[] | undefined;
|
|
276
|
+
anchors?: {
|
|
277
|
+
href: string;
|
|
278
|
+
anchor: string;
|
|
279
|
+
icon?: string | {
|
|
280
|
+
name: string;
|
|
281
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
282
|
+
} | undefined;
|
|
283
|
+
color?: {
|
|
284
|
+
light?: string | undefined;
|
|
285
|
+
dark?: string | undefined;
|
|
286
|
+
} | undefined;
|
|
287
|
+
hidden?: boolean | undefined;
|
|
288
|
+
}[] | undefined;
|
|
289
|
+
} | undefined;
|
|
12
290
|
}, {
|
|
13
291
|
languages: import("./divisionNav.js").LanguageNavigation<"default">[];
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
292
|
+
global?: {
|
|
293
|
+
languages?: {
|
|
294
|
+
href: string;
|
|
295
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
296
|
+
default?: boolean | undefined;
|
|
297
|
+
hidden?: boolean | undefined;
|
|
298
|
+
}[] | undefined;
|
|
299
|
+
versions?: {
|
|
300
|
+
version: string;
|
|
301
|
+
href: string;
|
|
302
|
+
default?: boolean | undefined;
|
|
303
|
+
hidden?: boolean | undefined;
|
|
304
|
+
}[] | undefined;
|
|
305
|
+
tabs?: {
|
|
306
|
+
href: string;
|
|
307
|
+
tab: string;
|
|
308
|
+
icon?: string | {
|
|
309
|
+
name: string;
|
|
310
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
311
|
+
} | undefined;
|
|
312
|
+
hidden?: boolean | undefined;
|
|
313
|
+
}[] | undefined;
|
|
314
|
+
dropdowns?: {
|
|
315
|
+
href: string;
|
|
316
|
+
dropdown: string;
|
|
317
|
+
icon?: string | {
|
|
318
|
+
name: string;
|
|
319
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
320
|
+
} | undefined;
|
|
321
|
+
hidden?: boolean | undefined;
|
|
322
|
+
}[] | undefined;
|
|
323
|
+
anchors?: {
|
|
324
|
+
href: string;
|
|
325
|
+
anchor: string;
|
|
326
|
+
icon?: string | {
|
|
327
|
+
name: string;
|
|
328
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
329
|
+
} | undefined;
|
|
330
|
+
color?: {
|
|
331
|
+
light?: string | undefined;
|
|
332
|
+
dark?: string | undefined;
|
|
333
|
+
} | undefined;
|
|
334
|
+
hidden?: boolean | undefined;
|
|
335
|
+
}[] | undefined;
|
|
336
|
+
} | undefined;
|
|
337
|
+
}>, z.ZodObject<{
|
|
338
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
339
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
340
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
341
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
342
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
343
|
+
href: z.ZodString;
|
|
344
|
+
}, "strip", z.ZodTypeAny, {
|
|
345
|
+
href: string;
|
|
346
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
347
|
+
default?: boolean | undefined;
|
|
348
|
+
hidden?: boolean | undefined;
|
|
349
|
+
}, {
|
|
350
|
+
href: string;
|
|
351
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
352
|
+
default?: boolean | undefined;
|
|
353
|
+
hidden?: boolean | undefined;
|
|
354
|
+
}>, "many">>;
|
|
355
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
356
|
+
version: z.ZodString;
|
|
357
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
358
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
359
|
+
href: z.ZodString;
|
|
360
|
+
}, "strip", z.ZodTypeAny, {
|
|
361
|
+
version: string;
|
|
362
|
+
href: string;
|
|
363
|
+
default?: boolean | undefined;
|
|
364
|
+
hidden?: boolean | undefined;
|
|
365
|
+
}, {
|
|
366
|
+
version: string;
|
|
367
|
+
href: string;
|
|
368
|
+
default?: boolean | undefined;
|
|
369
|
+
hidden?: boolean | undefined;
|
|
370
|
+
}>, "many">>;
|
|
371
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
372
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
373
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
374
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
375
|
+
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
name: string;
|
|
377
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
378
|
+
}, {
|
|
379
|
+
name: string;
|
|
380
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
381
|
+
}>]>>;
|
|
382
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
383
|
+
tab: z.ZodString;
|
|
384
|
+
href: z.ZodString;
|
|
385
|
+
}, "strip", z.ZodTypeAny, {
|
|
386
|
+
href: string;
|
|
387
|
+
tab: string;
|
|
388
|
+
icon?: string | {
|
|
389
|
+
name: string;
|
|
390
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
391
|
+
} | undefined;
|
|
392
|
+
hidden?: boolean | undefined;
|
|
393
|
+
}, {
|
|
394
|
+
href: string;
|
|
395
|
+
tab: string;
|
|
396
|
+
icon?: string | {
|
|
397
|
+
name: string;
|
|
398
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
399
|
+
} | undefined;
|
|
400
|
+
hidden?: boolean | undefined;
|
|
401
|
+
}>, "many">>;
|
|
402
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
403
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
404
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
405
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
406
|
+
}, "strip", z.ZodTypeAny, {
|
|
407
|
+
name: string;
|
|
408
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
409
|
+
}, {
|
|
410
|
+
name: string;
|
|
411
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
412
|
+
}>]>>;
|
|
413
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
414
|
+
dropdown: z.ZodString;
|
|
415
|
+
href: z.ZodString;
|
|
416
|
+
}, "strip", z.ZodTypeAny, {
|
|
417
|
+
href: string;
|
|
418
|
+
dropdown: string;
|
|
419
|
+
icon?: string | {
|
|
420
|
+
name: string;
|
|
421
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
422
|
+
} | undefined;
|
|
423
|
+
hidden?: boolean | undefined;
|
|
424
|
+
}, {
|
|
425
|
+
href: string;
|
|
426
|
+
dropdown: string;
|
|
427
|
+
icon?: string | {
|
|
428
|
+
name: string;
|
|
429
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
430
|
+
} | undefined;
|
|
431
|
+
hidden?: boolean | undefined;
|
|
432
|
+
}>, "many">>;
|
|
433
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
434
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
435
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
436
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
437
|
+
}, "strip", z.ZodTypeAny, {
|
|
438
|
+
name: string;
|
|
439
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
440
|
+
}, {
|
|
441
|
+
name: string;
|
|
442
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
443
|
+
}>]>>;
|
|
444
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
445
|
+
light: z.ZodOptional<z.ZodString>;
|
|
446
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
447
|
+
}, "strict", z.ZodTypeAny, {
|
|
448
|
+
light?: string | undefined;
|
|
449
|
+
dark?: string | undefined;
|
|
450
|
+
}, {
|
|
451
|
+
light?: string | undefined;
|
|
452
|
+
dark?: string | undefined;
|
|
453
|
+
}>>;
|
|
454
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
455
|
+
anchor: z.ZodString;
|
|
456
|
+
href: z.ZodString;
|
|
457
|
+
}, "strip", z.ZodTypeAny, {
|
|
458
|
+
href: string;
|
|
459
|
+
anchor: string;
|
|
460
|
+
icon?: string | {
|
|
461
|
+
name: string;
|
|
462
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
463
|
+
} | undefined;
|
|
464
|
+
color?: {
|
|
465
|
+
light?: string | undefined;
|
|
466
|
+
dark?: string | undefined;
|
|
467
|
+
} | undefined;
|
|
468
|
+
hidden?: boolean | undefined;
|
|
469
|
+
}, {
|
|
470
|
+
href: string;
|
|
471
|
+
anchor: string;
|
|
472
|
+
icon?: string | {
|
|
473
|
+
name: string;
|
|
474
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
475
|
+
} | undefined;
|
|
476
|
+
color?: {
|
|
477
|
+
light?: string | undefined;
|
|
478
|
+
dark?: string | undefined;
|
|
479
|
+
} | undefined;
|
|
480
|
+
hidden?: boolean | undefined;
|
|
481
|
+
}>, "many">>;
|
|
482
|
+
}, "strict", z.ZodTypeAny, {
|
|
483
|
+
languages?: {
|
|
484
|
+
href: string;
|
|
485
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
486
|
+
default?: boolean | undefined;
|
|
487
|
+
hidden?: boolean | undefined;
|
|
488
|
+
}[] | undefined;
|
|
489
|
+
versions?: {
|
|
490
|
+
version: string;
|
|
491
|
+
href: string;
|
|
492
|
+
default?: boolean | undefined;
|
|
493
|
+
hidden?: boolean | undefined;
|
|
494
|
+
}[] | undefined;
|
|
495
|
+
tabs?: {
|
|
496
|
+
href: string;
|
|
497
|
+
tab: string;
|
|
498
|
+
icon?: string | {
|
|
499
|
+
name: string;
|
|
500
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
501
|
+
} | undefined;
|
|
502
|
+
hidden?: boolean | undefined;
|
|
503
|
+
}[] | undefined;
|
|
504
|
+
dropdowns?: {
|
|
505
|
+
href: string;
|
|
506
|
+
dropdown: string;
|
|
507
|
+
icon?: string | {
|
|
508
|
+
name: string;
|
|
509
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
510
|
+
} | undefined;
|
|
511
|
+
hidden?: boolean | undefined;
|
|
512
|
+
}[] | undefined;
|
|
513
|
+
anchors?: {
|
|
514
|
+
href: string;
|
|
515
|
+
anchor: string;
|
|
516
|
+
icon?: string | {
|
|
517
|
+
name: string;
|
|
518
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
519
|
+
} | undefined;
|
|
520
|
+
color?: {
|
|
521
|
+
light?: string | undefined;
|
|
522
|
+
dark?: string | undefined;
|
|
523
|
+
} | undefined;
|
|
524
|
+
hidden?: boolean | undefined;
|
|
525
|
+
}[] | undefined;
|
|
526
|
+
}, {
|
|
527
|
+
languages?: {
|
|
528
|
+
href: string;
|
|
529
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
530
|
+
default?: boolean | undefined;
|
|
531
|
+
hidden?: boolean | undefined;
|
|
532
|
+
}[] | undefined;
|
|
533
|
+
versions?: {
|
|
534
|
+
version: string;
|
|
535
|
+
href: string;
|
|
536
|
+
default?: boolean | undefined;
|
|
537
|
+
hidden?: boolean | undefined;
|
|
538
|
+
}[] | undefined;
|
|
539
|
+
tabs?: {
|
|
540
|
+
href: string;
|
|
541
|
+
tab: string;
|
|
542
|
+
icon?: string | {
|
|
543
|
+
name: string;
|
|
544
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
545
|
+
} | undefined;
|
|
546
|
+
hidden?: boolean | undefined;
|
|
547
|
+
}[] | undefined;
|
|
548
|
+
dropdowns?: {
|
|
549
|
+
href: string;
|
|
550
|
+
dropdown: string;
|
|
551
|
+
icon?: string | {
|
|
552
|
+
name: string;
|
|
553
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
554
|
+
} | undefined;
|
|
555
|
+
hidden?: boolean | undefined;
|
|
556
|
+
}[] | undefined;
|
|
557
|
+
anchors?: {
|
|
558
|
+
href: string;
|
|
559
|
+
anchor: string;
|
|
560
|
+
icon?: string | {
|
|
561
|
+
name: string;
|
|
562
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
563
|
+
} | undefined;
|
|
564
|
+
color?: {
|
|
565
|
+
light?: string | undefined;
|
|
566
|
+
dark?: string | undefined;
|
|
567
|
+
} | undefined;
|
|
568
|
+
hidden?: boolean | undefined;
|
|
569
|
+
}[] | undefined;
|
|
570
|
+
}>>;
|
|
571
|
+
versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"default">>, "many">;
|
|
572
|
+
}, "strip", z.ZodTypeAny, {
|
|
573
|
+
versions: import("./divisionNav.js").VersionNavigation<"default">[];
|
|
574
|
+
global?: {
|
|
575
|
+
languages?: {
|
|
576
|
+
href: string;
|
|
577
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
578
|
+
default?: boolean | undefined;
|
|
579
|
+
hidden?: boolean | undefined;
|
|
580
|
+
}[] | undefined;
|
|
581
|
+
versions?: {
|
|
582
|
+
version: string;
|
|
583
|
+
href: string;
|
|
584
|
+
default?: boolean | undefined;
|
|
585
|
+
hidden?: boolean | undefined;
|
|
586
|
+
}[] | undefined;
|
|
587
|
+
tabs?: {
|
|
588
|
+
href: string;
|
|
589
|
+
tab: string;
|
|
590
|
+
icon?: string | {
|
|
591
|
+
name: string;
|
|
592
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
593
|
+
} | undefined;
|
|
594
|
+
hidden?: boolean | undefined;
|
|
595
|
+
}[] | undefined;
|
|
596
|
+
dropdowns?: {
|
|
597
|
+
href: string;
|
|
598
|
+
dropdown: string;
|
|
599
|
+
icon?: string | {
|
|
600
|
+
name: string;
|
|
601
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
602
|
+
} | undefined;
|
|
603
|
+
hidden?: boolean | undefined;
|
|
604
|
+
}[] | undefined;
|
|
605
|
+
anchors?: {
|
|
606
|
+
href: string;
|
|
607
|
+
anchor: string;
|
|
608
|
+
icon?: string | {
|
|
609
|
+
name: string;
|
|
610
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
611
|
+
} | undefined;
|
|
612
|
+
color?: {
|
|
613
|
+
light?: string | undefined;
|
|
614
|
+
dark?: string | undefined;
|
|
615
|
+
} | undefined;
|
|
616
|
+
hidden?: boolean | undefined;
|
|
617
|
+
}[] | undefined;
|
|
618
|
+
} | undefined;
|
|
619
|
+
}, {
|
|
620
|
+
versions: import("./divisionNav.js").VersionNavigation<"default">[];
|
|
621
|
+
global?: {
|
|
622
|
+
languages?: {
|
|
623
|
+
href: string;
|
|
624
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
625
|
+
default?: boolean | undefined;
|
|
626
|
+
hidden?: boolean | undefined;
|
|
627
|
+
}[] | undefined;
|
|
628
|
+
versions?: {
|
|
629
|
+
version: string;
|
|
630
|
+
href: string;
|
|
631
|
+
default?: boolean | undefined;
|
|
632
|
+
hidden?: boolean | undefined;
|
|
633
|
+
}[] | undefined;
|
|
634
|
+
tabs?: {
|
|
635
|
+
href: string;
|
|
636
|
+
tab: string;
|
|
637
|
+
icon?: string | {
|
|
638
|
+
name: string;
|
|
639
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
hidden?: boolean | undefined;
|
|
642
|
+
}[] | undefined;
|
|
643
|
+
dropdowns?: {
|
|
644
|
+
href: string;
|
|
645
|
+
dropdown: string;
|
|
646
|
+
icon?: string | {
|
|
647
|
+
name: string;
|
|
648
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
649
|
+
} | undefined;
|
|
650
|
+
hidden?: boolean | undefined;
|
|
651
|
+
}[] | undefined;
|
|
652
|
+
anchors?: {
|
|
653
|
+
href: string;
|
|
654
|
+
anchor: string;
|
|
655
|
+
icon?: string | {
|
|
656
|
+
name: string;
|
|
657
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
658
|
+
} | undefined;
|
|
659
|
+
color?: {
|
|
660
|
+
light?: string | undefined;
|
|
661
|
+
dark?: string | undefined;
|
|
662
|
+
} | undefined;
|
|
663
|
+
hidden?: boolean | undefined;
|
|
664
|
+
}[] | undefined;
|
|
665
|
+
} | undefined;
|
|
666
|
+
}>, z.ZodObject<{
|
|
667
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
668
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
669
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
670
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
671
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
672
|
+
href: z.ZodString;
|
|
673
|
+
}, "strip", z.ZodTypeAny, {
|
|
674
|
+
href: string;
|
|
675
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
676
|
+
default?: boolean | undefined;
|
|
677
|
+
hidden?: boolean | undefined;
|
|
678
|
+
}, {
|
|
679
|
+
href: string;
|
|
680
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
681
|
+
default?: boolean | undefined;
|
|
682
|
+
hidden?: boolean | undefined;
|
|
683
|
+
}>, "many">>;
|
|
684
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
685
|
+
version: z.ZodString;
|
|
686
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
687
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
688
|
+
href: z.ZodString;
|
|
689
|
+
}, "strip", z.ZodTypeAny, {
|
|
690
|
+
version: string;
|
|
691
|
+
href: string;
|
|
692
|
+
default?: boolean | undefined;
|
|
693
|
+
hidden?: boolean | undefined;
|
|
694
|
+
}, {
|
|
695
|
+
version: string;
|
|
696
|
+
href: string;
|
|
697
|
+
default?: boolean | undefined;
|
|
698
|
+
hidden?: boolean | undefined;
|
|
699
|
+
}>, "many">>;
|
|
700
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
701
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
702
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
703
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
704
|
+
}, "strip", z.ZodTypeAny, {
|
|
705
|
+
name: string;
|
|
706
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
707
|
+
}, {
|
|
708
|
+
name: string;
|
|
709
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
710
|
+
}>]>>;
|
|
711
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
712
|
+
tab: z.ZodString;
|
|
713
|
+
href: z.ZodString;
|
|
714
|
+
}, "strip", z.ZodTypeAny, {
|
|
715
|
+
href: string;
|
|
716
|
+
tab: string;
|
|
717
|
+
icon?: string | {
|
|
718
|
+
name: string;
|
|
719
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
720
|
+
} | undefined;
|
|
721
|
+
hidden?: boolean | undefined;
|
|
722
|
+
}, {
|
|
723
|
+
href: string;
|
|
724
|
+
tab: string;
|
|
725
|
+
icon?: string | {
|
|
726
|
+
name: string;
|
|
727
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
728
|
+
} | undefined;
|
|
729
|
+
hidden?: boolean | undefined;
|
|
730
|
+
}>, "many">>;
|
|
731
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
732
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
733
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
734
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
735
|
+
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
name: string;
|
|
737
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
738
|
+
}, {
|
|
739
|
+
name: string;
|
|
740
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
741
|
+
}>]>>;
|
|
742
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
743
|
+
dropdown: z.ZodString;
|
|
744
|
+
href: z.ZodString;
|
|
745
|
+
}, "strip", z.ZodTypeAny, {
|
|
746
|
+
href: string;
|
|
747
|
+
dropdown: string;
|
|
748
|
+
icon?: string | {
|
|
749
|
+
name: string;
|
|
750
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
751
|
+
} | undefined;
|
|
752
|
+
hidden?: boolean | undefined;
|
|
753
|
+
}, {
|
|
754
|
+
href: string;
|
|
755
|
+
dropdown: string;
|
|
756
|
+
icon?: string | {
|
|
757
|
+
name: string;
|
|
758
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
759
|
+
} | undefined;
|
|
760
|
+
hidden?: boolean | undefined;
|
|
761
|
+
}>, "many">>;
|
|
762
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
763
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
764
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
765
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
766
|
+
}, "strip", z.ZodTypeAny, {
|
|
767
|
+
name: string;
|
|
768
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
769
|
+
}, {
|
|
770
|
+
name: string;
|
|
771
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
772
|
+
}>]>>;
|
|
773
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
774
|
+
light: z.ZodOptional<z.ZodString>;
|
|
775
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
776
|
+
}, "strict", z.ZodTypeAny, {
|
|
777
|
+
light?: string | undefined;
|
|
778
|
+
dark?: string | undefined;
|
|
779
|
+
}, {
|
|
780
|
+
light?: string | undefined;
|
|
781
|
+
dark?: string | undefined;
|
|
782
|
+
}>>;
|
|
783
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
784
|
+
anchor: z.ZodString;
|
|
785
|
+
href: z.ZodString;
|
|
786
|
+
}, "strip", z.ZodTypeAny, {
|
|
787
|
+
href: string;
|
|
788
|
+
anchor: string;
|
|
789
|
+
icon?: string | {
|
|
790
|
+
name: string;
|
|
791
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
792
|
+
} | undefined;
|
|
793
|
+
color?: {
|
|
794
|
+
light?: string | undefined;
|
|
795
|
+
dark?: string | undefined;
|
|
796
|
+
} | undefined;
|
|
797
|
+
hidden?: boolean | undefined;
|
|
798
|
+
}, {
|
|
799
|
+
href: string;
|
|
800
|
+
anchor: string;
|
|
801
|
+
icon?: string | {
|
|
802
|
+
name: string;
|
|
803
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
804
|
+
} | undefined;
|
|
805
|
+
color?: {
|
|
806
|
+
light?: string | undefined;
|
|
807
|
+
dark?: string | undefined;
|
|
808
|
+
} | undefined;
|
|
809
|
+
hidden?: boolean | undefined;
|
|
810
|
+
}>, "many">>;
|
|
811
|
+
}, "strict", z.ZodTypeAny, {
|
|
812
|
+
languages?: {
|
|
813
|
+
href: string;
|
|
814
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
815
|
+
default?: boolean | undefined;
|
|
816
|
+
hidden?: boolean | undefined;
|
|
817
|
+
}[] | undefined;
|
|
818
|
+
versions?: {
|
|
819
|
+
version: string;
|
|
820
|
+
href: string;
|
|
821
|
+
default?: boolean | undefined;
|
|
822
|
+
hidden?: boolean | undefined;
|
|
823
|
+
}[] | undefined;
|
|
824
|
+
tabs?: {
|
|
825
|
+
href: string;
|
|
826
|
+
tab: string;
|
|
827
|
+
icon?: string | {
|
|
828
|
+
name: string;
|
|
829
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
830
|
+
} | undefined;
|
|
831
|
+
hidden?: boolean | undefined;
|
|
832
|
+
}[] | undefined;
|
|
833
|
+
dropdowns?: {
|
|
834
|
+
href: string;
|
|
835
|
+
dropdown: string;
|
|
836
|
+
icon?: string | {
|
|
837
|
+
name: string;
|
|
838
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
839
|
+
} | undefined;
|
|
840
|
+
hidden?: boolean | undefined;
|
|
841
|
+
}[] | undefined;
|
|
842
|
+
anchors?: {
|
|
843
|
+
href: string;
|
|
844
|
+
anchor: string;
|
|
845
|
+
icon?: string | {
|
|
846
|
+
name: string;
|
|
847
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
848
|
+
} | undefined;
|
|
849
|
+
color?: {
|
|
850
|
+
light?: string | undefined;
|
|
851
|
+
dark?: string | undefined;
|
|
852
|
+
} | undefined;
|
|
853
|
+
hidden?: boolean | undefined;
|
|
854
|
+
}[] | undefined;
|
|
855
|
+
}, {
|
|
856
|
+
languages?: {
|
|
857
|
+
href: string;
|
|
858
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
859
|
+
default?: boolean | undefined;
|
|
860
|
+
hidden?: boolean | undefined;
|
|
861
|
+
}[] | undefined;
|
|
862
|
+
versions?: {
|
|
863
|
+
version: string;
|
|
864
|
+
href: string;
|
|
865
|
+
default?: boolean | undefined;
|
|
866
|
+
hidden?: boolean | undefined;
|
|
867
|
+
}[] | undefined;
|
|
868
|
+
tabs?: {
|
|
869
|
+
href: string;
|
|
870
|
+
tab: string;
|
|
871
|
+
icon?: string | {
|
|
872
|
+
name: string;
|
|
873
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
874
|
+
} | undefined;
|
|
875
|
+
hidden?: boolean | undefined;
|
|
876
|
+
}[] | undefined;
|
|
877
|
+
dropdowns?: {
|
|
878
|
+
href: string;
|
|
879
|
+
dropdown: string;
|
|
880
|
+
icon?: string | {
|
|
881
|
+
name: string;
|
|
882
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
883
|
+
} | undefined;
|
|
884
|
+
hidden?: boolean | undefined;
|
|
885
|
+
}[] | undefined;
|
|
886
|
+
anchors?: {
|
|
887
|
+
href: string;
|
|
888
|
+
anchor: string;
|
|
889
|
+
icon?: string | {
|
|
890
|
+
name: string;
|
|
891
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
892
|
+
} | undefined;
|
|
893
|
+
color?: {
|
|
894
|
+
light?: string | undefined;
|
|
895
|
+
dark?: string | undefined;
|
|
896
|
+
} | undefined;
|
|
897
|
+
hidden?: boolean | undefined;
|
|
898
|
+
}[] | undefined;
|
|
899
|
+
}>>;
|
|
900
|
+
tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"default">>, "many">;
|
|
901
|
+
}, "strip", z.ZodTypeAny, {
|
|
902
|
+
tabs: import("./divisionNav.js").TabNavigation<"default">[];
|
|
903
|
+
global?: {
|
|
904
|
+
languages?: {
|
|
905
|
+
href: string;
|
|
906
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
907
|
+
default?: boolean | undefined;
|
|
908
|
+
hidden?: boolean | undefined;
|
|
909
|
+
}[] | undefined;
|
|
910
|
+
versions?: {
|
|
911
|
+
version: string;
|
|
912
|
+
href: string;
|
|
913
|
+
default?: boolean | undefined;
|
|
914
|
+
hidden?: boolean | undefined;
|
|
915
|
+
}[] | undefined;
|
|
916
|
+
tabs?: {
|
|
917
|
+
href: string;
|
|
918
|
+
tab: string;
|
|
919
|
+
icon?: string | {
|
|
920
|
+
name: string;
|
|
921
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
922
|
+
} | undefined;
|
|
923
|
+
hidden?: boolean | undefined;
|
|
924
|
+
}[] | undefined;
|
|
925
|
+
dropdowns?: {
|
|
926
|
+
href: string;
|
|
927
|
+
dropdown: string;
|
|
928
|
+
icon?: string | {
|
|
929
|
+
name: string;
|
|
930
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
931
|
+
} | undefined;
|
|
932
|
+
hidden?: boolean | undefined;
|
|
933
|
+
}[] | undefined;
|
|
934
|
+
anchors?: {
|
|
935
|
+
href: string;
|
|
936
|
+
anchor: string;
|
|
937
|
+
icon?: string | {
|
|
938
|
+
name: string;
|
|
939
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
940
|
+
} | undefined;
|
|
941
|
+
color?: {
|
|
942
|
+
light?: string | undefined;
|
|
943
|
+
dark?: string | undefined;
|
|
944
|
+
} | undefined;
|
|
945
|
+
hidden?: boolean | undefined;
|
|
946
|
+
}[] | undefined;
|
|
947
|
+
} | undefined;
|
|
948
|
+
}, {
|
|
949
|
+
tabs: import("./divisionNav.js").TabNavigation<"default">[];
|
|
950
|
+
global?: {
|
|
951
|
+
languages?: {
|
|
952
|
+
href: string;
|
|
953
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
954
|
+
default?: boolean | undefined;
|
|
955
|
+
hidden?: boolean | undefined;
|
|
956
|
+
}[] | undefined;
|
|
957
|
+
versions?: {
|
|
958
|
+
version: string;
|
|
959
|
+
href: string;
|
|
960
|
+
default?: boolean | undefined;
|
|
961
|
+
hidden?: boolean | undefined;
|
|
962
|
+
}[] | undefined;
|
|
963
|
+
tabs?: {
|
|
964
|
+
href: string;
|
|
965
|
+
tab: string;
|
|
966
|
+
icon?: string | {
|
|
967
|
+
name: string;
|
|
968
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
969
|
+
} | undefined;
|
|
970
|
+
hidden?: boolean | undefined;
|
|
971
|
+
}[] | undefined;
|
|
972
|
+
dropdowns?: {
|
|
973
|
+
href: string;
|
|
974
|
+
dropdown: string;
|
|
975
|
+
icon?: string | {
|
|
976
|
+
name: string;
|
|
977
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
978
|
+
} | undefined;
|
|
979
|
+
hidden?: boolean | undefined;
|
|
980
|
+
}[] | undefined;
|
|
981
|
+
anchors?: {
|
|
982
|
+
href: string;
|
|
983
|
+
anchor: string;
|
|
984
|
+
icon?: string | {
|
|
985
|
+
name: string;
|
|
986
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
987
|
+
} | undefined;
|
|
988
|
+
color?: {
|
|
989
|
+
light?: string | undefined;
|
|
990
|
+
dark?: string | undefined;
|
|
991
|
+
} | undefined;
|
|
992
|
+
hidden?: boolean | undefined;
|
|
993
|
+
}[] | undefined;
|
|
994
|
+
} | undefined;
|
|
995
|
+
}>, z.ZodObject<{
|
|
996
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
997
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
998
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
999
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1000
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1001
|
+
href: z.ZodString;
|
|
1002
|
+
}, "strip", z.ZodTypeAny, {
|
|
1003
|
+
href: string;
|
|
1004
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1005
|
+
default?: boolean | undefined;
|
|
1006
|
+
hidden?: boolean | undefined;
|
|
1007
|
+
}, {
|
|
1008
|
+
href: string;
|
|
1009
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1010
|
+
default?: boolean | undefined;
|
|
1011
|
+
hidden?: boolean | undefined;
|
|
1012
|
+
}>, "many">>;
|
|
1013
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1014
|
+
version: z.ZodString;
|
|
1015
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
1016
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1017
|
+
href: z.ZodString;
|
|
1018
|
+
}, "strip", z.ZodTypeAny, {
|
|
1019
|
+
version: string;
|
|
1020
|
+
href: string;
|
|
1021
|
+
default?: boolean | undefined;
|
|
1022
|
+
hidden?: boolean | undefined;
|
|
1023
|
+
}, {
|
|
1024
|
+
version: string;
|
|
1025
|
+
href: string;
|
|
1026
|
+
default?: boolean | undefined;
|
|
1027
|
+
hidden?: boolean | undefined;
|
|
1028
|
+
}>, "many">>;
|
|
1029
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1030
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1031
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1032
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1033
|
+
}, "strip", z.ZodTypeAny, {
|
|
1034
|
+
name: string;
|
|
1035
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1036
|
+
}, {
|
|
1037
|
+
name: string;
|
|
1038
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1039
|
+
}>]>>;
|
|
1040
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1041
|
+
tab: z.ZodString;
|
|
1042
|
+
href: z.ZodString;
|
|
1043
|
+
}, "strip", z.ZodTypeAny, {
|
|
1044
|
+
href: string;
|
|
1045
|
+
tab: string;
|
|
1046
|
+
icon?: string | {
|
|
1047
|
+
name: string;
|
|
1048
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1049
|
+
} | undefined;
|
|
1050
|
+
hidden?: boolean | undefined;
|
|
1051
|
+
}, {
|
|
1052
|
+
href: string;
|
|
1053
|
+
tab: string;
|
|
1054
|
+
icon?: string | {
|
|
1055
|
+
name: string;
|
|
1056
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1057
|
+
} | undefined;
|
|
1058
|
+
hidden?: boolean | undefined;
|
|
1059
|
+
}>, "many">>;
|
|
1060
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1061
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1062
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1063
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1064
|
+
}, "strip", z.ZodTypeAny, {
|
|
1065
|
+
name: string;
|
|
1066
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1067
|
+
}, {
|
|
1068
|
+
name: string;
|
|
1069
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1070
|
+
}>]>>;
|
|
1071
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1072
|
+
dropdown: z.ZodString;
|
|
1073
|
+
href: z.ZodString;
|
|
1074
|
+
}, "strip", z.ZodTypeAny, {
|
|
1075
|
+
href: string;
|
|
1076
|
+
dropdown: string;
|
|
1077
|
+
icon?: string | {
|
|
1078
|
+
name: string;
|
|
1079
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1080
|
+
} | undefined;
|
|
1081
|
+
hidden?: boolean | undefined;
|
|
1082
|
+
}, {
|
|
1083
|
+
href: string;
|
|
1084
|
+
dropdown: string;
|
|
1085
|
+
icon?: string | {
|
|
1086
|
+
name: string;
|
|
1087
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1088
|
+
} | undefined;
|
|
1089
|
+
hidden?: boolean | undefined;
|
|
1090
|
+
}>, "many">>;
|
|
1091
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1092
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1093
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1094
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1095
|
+
}, "strip", z.ZodTypeAny, {
|
|
1096
|
+
name: string;
|
|
1097
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1098
|
+
}, {
|
|
1099
|
+
name: string;
|
|
1100
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1101
|
+
}>]>>;
|
|
1102
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1103
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1104
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1105
|
+
}, "strict", z.ZodTypeAny, {
|
|
1106
|
+
light?: string | undefined;
|
|
1107
|
+
dark?: string | undefined;
|
|
1108
|
+
}, {
|
|
1109
|
+
light?: string | undefined;
|
|
1110
|
+
dark?: string | undefined;
|
|
1111
|
+
}>>;
|
|
1112
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1113
|
+
anchor: z.ZodString;
|
|
1114
|
+
href: z.ZodString;
|
|
1115
|
+
}, "strip", z.ZodTypeAny, {
|
|
1116
|
+
href: string;
|
|
1117
|
+
anchor: string;
|
|
1118
|
+
icon?: string | {
|
|
1119
|
+
name: string;
|
|
1120
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1121
|
+
} | undefined;
|
|
1122
|
+
color?: {
|
|
1123
|
+
light?: string | undefined;
|
|
1124
|
+
dark?: string | undefined;
|
|
1125
|
+
} | undefined;
|
|
1126
|
+
hidden?: boolean | undefined;
|
|
1127
|
+
}, {
|
|
1128
|
+
href: string;
|
|
1129
|
+
anchor: string;
|
|
1130
|
+
icon?: string | {
|
|
1131
|
+
name: string;
|
|
1132
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1133
|
+
} | undefined;
|
|
1134
|
+
color?: {
|
|
1135
|
+
light?: string | undefined;
|
|
1136
|
+
dark?: string | undefined;
|
|
1137
|
+
} | undefined;
|
|
1138
|
+
hidden?: boolean | undefined;
|
|
1139
|
+
}>, "many">>;
|
|
1140
|
+
}, "strict", z.ZodTypeAny, {
|
|
1141
|
+
languages?: {
|
|
1142
|
+
href: string;
|
|
1143
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1144
|
+
default?: boolean | undefined;
|
|
1145
|
+
hidden?: boolean | undefined;
|
|
1146
|
+
}[] | undefined;
|
|
1147
|
+
versions?: {
|
|
1148
|
+
version: string;
|
|
1149
|
+
href: string;
|
|
1150
|
+
default?: boolean | undefined;
|
|
1151
|
+
hidden?: boolean | undefined;
|
|
1152
|
+
}[] | undefined;
|
|
1153
|
+
tabs?: {
|
|
1154
|
+
href: string;
|
|
1155
|
+
tab: string;
|
|
1156
|
+
icon?: string | {
|
|
1157
|
+
name: string;
|
|
1158
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1159
|
+
} | undefined;
|
|
1160
|
+
hidden?: boolean | undefined;
|
|
1161
|
+
}[] | undefined;
|
|
1162
|
+
dropdowns?: {
|
|
1163
|
+
href: string;
|
|
1164
|
+
dropdown: string;
|
|
1165
|
+
icon?: string | {
|
|
1166
|
+
name: string;
|
|
1167
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1168
|
+
} | undefined;
|
|
1169
|
+
hidden?: boolean | undefined;
|
|
1170
|
+
}[] | undefined;
|
|
1171
|
+
anchors?: {
|
|
1172
|
+
href: string;
|
|
1173
|
+
anchor: string;
|
|
1174
|
+
icon?: string | {
|
|
1175
|
+
name: string;
|
|
1176
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1177
|
+
} | undefined;
|
|
1178
|
+
color?: {
|
|
1179
|
+
light?: string | undefined;
|
|
1180
|
+
dark?: string | undefined;
|
|
1181
|
+
} | undefined;
|
|
1182
|
+
hidden?: boolean | undefined;
|
|
1183
|
+
}[] | undefined;
|
|
1184
|
+
}, {
|
|
1185
|
+
languages?: {
|
|
1186
|
+
href: string;
|
|
1187
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1188
|
+
default?: boolean | undefined;
|
|
1189
|
+
hidden?: boolean | undefined;
|
|
1190
|
+
}[] | undefined;
|
|
1191
|
+
versions?: {
|
|
1192
|
+
version: string;
|
|
1193
|
+
href: string;
|
|
1194
|
+
default?: boolean | undefined;
|
|
1195
|
+
hidden?: boolean | undefined;
|
|
1196
|
+
}[] | undefined;
|
|
1197
|
+
tabs?: {
|
|
1198
|
+
href: string;
|
|
1199
|
+
tab: string;
|
|
1200
|
+
icon?: string | {
|
|
1201
|
+
name: string;
|
|
1202
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1203
|
+
} | undefined;
|
|
1204
|
+
hidden?: boolean | undefined;
|
|
1205
|
+
}[] | undefined;
|
|
1206
|
+
dropdowns?: {
|
|
1207
|
+
href: string;
|
|
1208
|
+
dropdown: string;
|
|
1209
|
+
icon?: string | {
|
|
1210
|
+
name: string;
|
|
1211
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1212
|
+
} | undefined;
|
|
1213
|
+
hidden?: boolean | undefined;
|
|
1214
|
+
}[] | undefined;
|
|
1215
|
+
anchors?: {
|
|
1216
|
+
href: string;
|
|
1217
|
+
anchor: string;
|
|
1218
|
+
icon?: string | {
|
|
1219
|
+
name: string;
|
|
1220
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1221
|
+
} | undefined;
|
|
1222
|
+
color?: {
|
|
1223
|
+
light?: string | undefined;
|
|
1224
|
+
dark?: string | undefined;
|
|
1225
|
+
} | undefined;
|
|
1226
|
+
hidden?: boolean | undefined;
|
|
1227
|
+
}[] | undefined;
|
|
1228
|
+
}>>;
|
|
27
1229
|
dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"default">>, "many">;
|
|
28
1230
|
}, "strip", z.ZodTypeAny, {
|
|
29
1231
|
dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
|
|
1232
|
+
global?: {
|
|
1233
|
+
languages?: {
|
|
1234
|
+
href: string;
|
|
1235
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1236
|
+
default?: boolean | undefined;
|
|
1237
|
+
hidden?: boolean | undefined;
|
|
1238
|
+
}[] | undefined;
|
|
1239
|
+
versions?: {
|
|
1240
|
+
version: string;
|
|
1241
|
+
href: string;
|
|
1242
|
+
default?: boolean | undefined;
|
|
1243
|
+
hidden?: boolean | undefined;
|
|
1244
|
+
}[] | undefined;
|
|
1245
|
+
tabs?: {
|
|
1246
|
+
href: string;
|
|
1247
|
+
tab: string;
|
|
1248
|
+
icon?: string | {
|
|
1249
|
+
name: string;
|
|
1250
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1251
|
+
} | undefined;
|
|
1252
|
+
hidden?: boolean | undefined;
|
|
1253
|
+
}[] | undefined;
|
|
1254
|
+
dropdowns?: {
|
|
1255
|
+
href: string;
|
|
1256
|
+
dropdown: string;
|
|
1257
|
+
icon?: string | {
|
|
1258
|
+
name: string;
|
|
1259
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1260
|
+
} | undefined;
|
|
1261
|
+
hidden?: boolean | undefined;
|
|
1262
|
+
}[] | undefined;
|
|
1263
|
+
anchors?: {
|
|
1264
|
+
href: string;
|
|
1265
|
+
anchor: string;
|
|
1266
|
+
icon?: string | {
|
|
1267
|
+
name: string;
|
|
1268
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1269
|
+
} | undefined;
|
|
1270
|
+
color?: {
|
|
1271
|
+
light?: string | undefined;
|
|
1272
|
+
dark?: string | undefined;
|
|
1273
|
+
} | undefined;
|
|
1274
|
+
hidden?: boolean | undefined;
|
|
1275
|
+
}[] | undefined;
|
|
1276
|
+
} | undefined;
|
|
30
1277
|
}, {
|
|
31
1278
|
dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
|
|
1279
|
+
global?: {
|
|
1280
|
+
languages?: {
|
|
1281
|
+
href: string;
|
|
1282
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1283
|
+
default?: boolean | undefined;
|
|
1284
|
+
hidden?: boolean | undefined;
|
|
1285
|
+
}[] | undefined;
|
|
1286
|
+
versions?: {
|
|
1287
|
+
version: string;
|
|
1288
|
+
href: string;
|
|
1289
|
+
default?: boolean | undefined;
|
|
1290
|
+
hidden?: boolean | undefined;
|
|
1291
|
+
}[] | undefined;
|
|
1292
|
+
tabs?: {
|
|
1293
|
+
href: string;
|
|
1294
|
+
tab: string;
|
|
1295
|
+
icon?: string | {
|
|
1296
|
+
name: string;
|
|
1297
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1298
|
+
} | undefined;
|
|
1299
|
+
hidden?: boolean | undefined;
|
|
1300
|
+
}[] | undefined;
|
|
1301
|
+
dropdowns?: {
|
|
1302
|
+
href: string;
|
|
1303
|
+
dropdown: string;
|
|
1304
|
+
icon?: string | {
|
|
1305
|
+
name: string;
|
|
1306
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1307
|
+
} | undefined;
|
|
1308
|
+
hidden?: boolean | undefined;
|
|
1309
|
+
}[] | undefined;
|
|
1310
|
+
anchors?: {
|
|
1311
|
+
href: string;
|
|
1312
|
+
anchor: string;
|
|
1313
|
+
icon?: string | {
|
|
1314
|
+
name: string;
|
|
1315
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1316
|
+
} | undefined;
|
|
1317
|
+
color?: {
|
|
1318
|
+
light?: string | undefined;
|
|
1319
|
+
dark?: string | undefined;
|
|
1320
|
+
} | undefined;
|
|
1321
|
+
hidden?: boolean | undefined;
|
|
1322
|
+
}[] | undefined;
|
|
1323
|
+
} | undefined;
|
|
32
1324
|
}>, z.ZodObject<{
|
|
1325
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
1326
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1327
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
1328
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1329
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1330
|
+
href: z.ZodString;
|
|
1331
|
+
}, "strip", z.ZodTypeAny, {
|
|
1332
|
+
href: string;
|
|
1333
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1334
|
+
default?: boolean | undefined;
|
|
1335
|
+
hidden?: boolean | undefined;
|
|
1336
|
+
}, {
|
|
1337
|
+
href: string;
|
|
1338
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1339
|
+
default?: boolean | undefined;
|
|
1340
|
+
hidden?: boolean | undefined;
|
|
1341
|
+
}>, "many">>;
|
|
1342
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1343
|
+
version: z.ZodString;
|
|
1344
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
1345
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1346
|
+
href: z.ZodString;
|
|
1347
|
+
}, "strip", z.ZodTypeAny, {
|
|
1348
|
+
version: string;
|
|
1349
|
+
href: string;
|
|
1350
|
+
default?: boolean | undefined;
|
|
1351
|
+
hidden?: boolean | undefined;
|
|
1352
|
+
}, {
|
|
1353
|
+
version: string;
|
|
1354
|
+
href: string;
|
|
1355
|
+
default?: boolean | undefined;
|
|
1356
|
+
hidden?: boolean | undefined;
|
|
1357
|
+
}>, "many">>;
|
|
1358
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1359
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1360
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1361
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1362
|
+
}, "strip", z.ZodTypeAny, {
|
|
1363
|
+
name: string;
|
|
1364
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1365
|
+
}, {
|
|
1366
|
+
name: string;
|
|
1367
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1368
|
+
}>]>>;
|
|
1369
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1370
|
+
tab: z.ZodString;
|
|
1371
|
+
href: z.ZodString;
|
|
1372
|
+
}, "strip", z.ZodTypeAny, {
|
|
1373
|
+
href: string;
|
|
1374
|
+
tab: string;
|
|
1375
|
+
icon?: string | {
|
|
1376
|
+
name: string;
|
|
1377
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1378
|
+
} | undefined;
|
|
1379
|
+
hidden?: boolean | undefined;
|
|
1380
|
+
}, {
|
|
1381
|
+
href: string;
|
|
1382
|
+
tab: string;
|
|
1383
|
+
icon?: string | {
|
|
1384
|
+
name: string;
|
|
1385
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1386
|
+
} | undefined;
|
|
1387
|
+
hidden?: boolean | undefined;
|
|
1388
|
+
}>, "many">>;
|
|
1389
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1390
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1391
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1392
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1393
|
+
}, "strip", z.ZodTypeAny, {
|
|
1394
|
+
name: string;
|
|
1395
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1396
|
+
}, {
|
|
1397
|
+
name: string;
|
|
1398
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1399
|
+
}>]>>;
|
|
1400
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1401
|
+
dropdown: z.ZodString;
|
|
1402
|
+
href: z.ZodString;
|
|
1403
|
+
}, "strip", z.ZodTypeAny, {
|
|
1404
|
+
href: string;
|
|
1405
|
+
dropdown: string;
|
|
1406
|
+
icon?: string | {
|
|
1407
|
+
name: string;
|
|
1408
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1409
|
+
} | undefined;
|
|
1410
|
+
hidden?: boolean | undefined;
|
|
1411
|
+
}, {
|
|
1412
|
+
href: string;
|
|
1413
|
+
dropdown: string;
|
|
1414
|
+
icon?: string | {
|
|
1415
|
+
name: string;
|
|
1416
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1417
|
+
} | undefined;
|
|
1418
|
+
hidden?: boolean | undefined;
|
|
1419
|
+
}>, "many">>;
|
|
1420
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1421
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1422
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1423
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1424
|
+
}, "strip", z.ZodTypeAny, {
|
|
1425
|
+
name: string;
|
|
1426
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1427
|
+
}, {
|
|
1428
|
+
name: string;
|
|
1429
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1430
|
+
}>]>>;
|
|
1431
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1432
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1433
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
}, "strict", z.ZodTypeAny, {
|
|
1435
|
+
light?: string | undefined;
|
|
1436
|
+
dark?: string | undefined;
|
|
1437
|
+
}, {
|
|
1438
|
+
light?: string | undefined;
|
|
1439
|
+
dark?: string | undefined;
|
|
1440
|
+
}>>;
|
|
1441
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1442
|
+
anchor: z.ZodString;
|
|
1443
|
+
href: z.ZodString;
|
|
1444
|
+
}, "strip", z.ZodTypeAny, {
|
|
1445
|
+
href: string;
|
|
1446
|
+
anchor: string;
|
|
1447
|
+
icon?: string | {
|
|
1448
|
+
name: string;
|
|
1449
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1450
|
+
} | undefined;
|
|
1451
|
+
color?: {
|
|
1452
|
+
light?: string | undefined;
|
|
1453
|
+
dark?: string | undefined;
|
|
1454
|
+
} | undefined;
|
|
1455
|
+
hidden?: boolean | undefined;
|
|
1456
|
+
}, {
|
|
1457
|
+
href: string;
|
|
1458
|
+
anchor: string;
|
|
1459
|
+
icon?: string | {
|
|
1460
|
+
name: string;
|
|
1461
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1462
|
+
} | undefined;
|
|
1463
|
+
color?: {
|
|
1464
|
+
light?: string | undefined;
|
|
1465
|
+
dark?: string | undefined;
|
|
1466
|
+
} | undefined;
|
|
1467
|
+
hidden?: boolean | undefined;
|
|
1468
|
+
}>, "many">>;
|
|
1469
|
+
}, "strict", z.ZodTypeAny, {
|
|
1470
|
+
languages?: {
|
|
1471
|
+
href: string;
|
|
1472
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1473
|
+
default?: boolean | undefined;
|
|
1474
|
+
hidden?: boolean | undefined;
|
|
1475
|
+
}[] | undefined;
|
|
1476
|
+
versions?: {
|
|
1477
|
+
version: string;
|
|
1478
|
+
href: string;
|
|
1479
|
+
default?: boolean | undefined;
|
|
1480
|
+
hidden?: boolean | undefined;
|
|
1481
|
+
}[] | undefined;
|
|
1482
|
+
tabs?: {
|
|
1483
|
+
href: string;
|
|
1484
|
+
tab: string;
|
|
1485
|
+
icon?: string | {
|
|
1486
|
+
name: string;
|
|
1487
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1488
|
+
} | undefined;
|
|
1489
|
+
hidden?: boolean | undefined;
|
|
1490
|
+
}[] | undefined;
|
|
1491
|
+
dropdowns?: {
|
|
1492
|
+
href: string;
|
|
1493
|
+
dropdown: string;
|
|
1494
|
+
icon?: string | {
|
|
1495
|
+
name: string;
|
|
1496
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1497
|
+
} | undefined;
|
|
1498
|
+
hidden?: boolean | undefined;
|
|
1499
|
+
}[] | undefined;
|
|
1500
|
+
anchors?: {
|
|
1501
|
+
href: string;
|
|
1502
|
+
anchor: string;
|
|
1503
|
+
icon?: string | {
|
|
1504
|
+
name: string;
|
|
1505
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1506
|
+
} | undefined;
|
|
1507
|
+
color?: {
|
|
1508
|
+
light?: string | undefined;
|
|
1509
|
+
dark?: string | undefined;
|
|
1510
|
+
} | undefined;
|
|
1511
|
+
hidden?: boolean | undefined;
|
|
1512
|
+
}[] | undefined;
|
|
1513
|
+
}, {
|
|
1514
|
+
languages?: {
|
|
1515
|
+
href: string;
|
|
1516
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1517
|
+
default?: boolean | undefined;
|
|
1518
|
+
hidden?: boolean | undefined;
|
|
1519
|
+
}[] | undefined;
|
|
1520
|
+
versions?: {
|
|
1521
|
+
version: string;
|
|
1522
|
+
href: string;
|
|
1523
|
+
default?: boolean | undefined;
|
|
1524
|
+
hidden?: boolean | undefined;
|
|
1525
|
+
}[] | undefined;
|
|
1526
|
+
tabs?: {
|
|
1527
|
+
href: string;
|
|
1528
|
+
tab: string;
|
|
1529
|
+
icon?: string | {
|
|
1530
|
+
name: string;
|
|
1531
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1532
|
+
} | undefined;
|
|
1533
|
+
hidden?: boolean | undefined;
|
|
1534
|
+
}[] | undefined;
|
|
1535
|
+
dropdowns?: {
|
|
1536
|
+
href: string;
|
|
1537
|
+
dropdown: string;
|
|
1538
|
+
icon?: string | {
|
|
1539
|
+
name: string;
|
|
1540
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1541
|
+
} | undefined;
|
|
1542
|
+
hidden?: boolean | undefined;
|
|
1543
|
+
}[] | undefined;
|
|
1544
|
+
anchors?: {
|
|
1545
|
+
href: string;
|
|
1546
|
+
anchor: string;
|
|
1547
|
+
icon?: string | {
|
|
1548
|
+
name: string;
|
|
1549
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1550
|
+
} | undefined;
|
|
1551
|
+
color?: {
|
|
1552
|
+
light?: string | undefined;
|
|
1553
|
+
dark?: string | undefined;
|
|
1554
|
+
} | undefined;
|
|
1555
|
+
hidden?: boolean | undefined;
|
|
1556
|
+
}[] | undefined;
|
|
1557
|
+
}>>;
|
|
33
1558
|
anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"default">>, "many">;
|
|
34
1559
|
}, "strip", z.ZodTypeAny, {
|
|
35
1560
|
anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
|
|
1561
|
+
global?: {
|
|
1562
|
+
languages?: {
|
|
1563
|
+
href: string;
|
|
1564
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1565
|
+
default?: boolean | undefined;
|
|
1566
|
+
hidden?: boolean | undefined;
|
|
1567
|
+
}[] | undefined;
|
|
1568
|
+
versions?: {
|
|
1569
|
+
version: string;
|
|
1570
|
+
href: string;
|
|
1571
|
+
default?: boolean | undefined;
|
|
1572
|
+
hidden?: boolean | undefined;
|
|
1573
|
+
}[] | undefined;
|
|
1574
|
+
tabs?: {
|
|
1575
|
+
href: string;
|
|
1576
|
+
tab: string;
|
|
1577
|
+
icon?: string | {
|
|
1578
|
+
name: string;
|
|
1579
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1580
|
+
} | undefined;
|
|
1581
|
+
hidden?: boolean | undefined;
|
|
1582
|
+
}[] | undefined;
|
|
1583
|
+
dropdowns?: {
|
|
1584
|
+
href: string;
|
|
1585
|
+
dropdown: string;
|
|
1586
|
+
icon?: string | {
|
|
1587
|
+
name: string;
|
|
1588
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1589
|
+
} | undefined;
|
|
1590
|
+
hidden?: boolean | undefined;
|
|
1591
|
+
}[] | undefined;
|
|
1592
|
+
anchors?: {
|
|
1593
|
+
href: string;
|
|
1594
|
+
anchor: string;
|
|
1595
|
+
icon?: string | {
|
|
1596
|
+
name: string;
|
|
1597
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1598
|
+
} | undefined;
|
|
1599
|
+
color?: {
|
|
1600
|
+
light?: string | undefined;
|
|
1601
|
+
dark?: string | undefined;
|
|
1602
|
+
} | undefined;
|
|
1603
|
+
hidden?: boolean | undefined;
|
|
1604
|
+
}[] | undefined;
|
|
1605
|
+
} | undefined;
|
|
36
1606
|
}, {
|
|
37
1607
|
anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
|
|
1608
|
+
global?: {
|
|
1609
|
+
languages?: {
|
|
1610
|
+
href: string;
|
|
1611
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1612
|
+
default?: boolean | undefined;
|
|
1613
|
+
hidden?: boolean | undefined;
|
|
1614
|
+
}[] | undefined;
|
|
1615
|
+
versions?: {
|
|
1616
|
+
version: string;
|
|
1617
|
+
href: string;
|
|
1618
|
+
default?: boolean | undefined;
|
|
1619
|
+
hidden?: boolean | undefined;
|
|
1620
|
+
}[] | undefined;
|
|
1621
|
+
tabs?: {
|
|
1622
|
+
href: string;
|
|
1623
|
+
tab: string;
|
|
1624
|
+
icon?: string | {
|
|
1625
|
+
name: string;
|
|
1626
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1627
|
+
} | undefined;
|
|
1628
|
+
hidden?: boolean | undefined;
|
|
1629
|
+
}[] | undefined;
|
|
1630
|
+
dropdowns?: {
|
|
1631
|
+
href: string;
|
|
1632
|
+
dropdown: string;
|
|
1633
|
+
icon?: string | {
|
|
1634
|
+
name: string;
|
|
1635
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1636
|
+
} | undefined;
|
|
1637
|
+
hidden?: boolean | undefined;
|
|
1638
|
+
}[] | undefined;
|
|
1639
|
+
anchors?: {
|
|
1640
|
+
href: string;
|
|
1641
|
+
anchor: string;
|
|
1642
|
+
icon?: string | {
|
|
1643
|
+
name: string;
|
|
1644
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1645
|
+
} | undefined;
|
|
1646
|
+
color?: {
|
|
1647
|
+
light?: string | undefined;
|
|
1648
|
+
dark?: string | undefined;
|
|
1649
|
+
} | undefined;
|
|
1650
|
+
hidden?: boolean | undefined;
|
|
1651
|
+
}[] | undefined;
|
|
1652
|
+
} | undefined;
|
|
38
1653
|
}>, z.ZodObject<{
|
|
1654
|
+
global: z.ZodOptional<z.ZodObject<{
|
|
1655
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1656
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
1657
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1658
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
1659
|
+
href: z.ZodString;
|
|
1660
|
+
}, "strip", z.ZodTypeAny, {
|
|
1661
|
+
href: string;
|
|
1662
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1663
|
+
default?: boolean | undefined;
|
|
1664
|
+
hidden?: boolean | undefined;
|
|
1665
|
+
}, {
|
|
1666
|
+
href: string;
|
|
1667
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1668
|
+
default?: boolean | undefined;
|
|
1669
|
+
hidden?: boolean | undefined;
|
|
1670
|
+
}>, "many">>;
|
|
1671
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1672
|
+
version: z.ZodString;
|
|
1673
|
+
default: z.ZodOptional<z.ZodBoolean>;
|
|
1674
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1675
|
+
href: z.ZodString;
|
|
1676
|
+
}, "strip", z.ZodTypeAny, {
|
|
1677
|
+
version: string;
|
|
1678
|
+
href: string;
|
|
1679
|
+
default?: boolean | undefined;
|
|
1680
|
+
hidden?: boolean | undefined;
|
|
1681
|
+
}, {
|
|
1682
|
+
version: string;
|
|
1683
|
+
href: string;
|
|
1684
|
+
default?: boolean | undefined;
|
|
1685
|
+
hidden?: boolean | undefined;
|
|
1686
|
+
}>, "many">>;
|
|
1687
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1688
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1689
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1690
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1691
|
+
}, "strip", z.ZodTypeAny, {
|
|
1692
|
+
name: string;
|
|
1693
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1694
|
+
}, {
|
|
1695
|
+
name: string;
|
|
1696
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1697
|
+
}>]>>;
|
|
1698
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1699
|
+
tab: z.ZodString;
|
|
1700
|
+
href: z.ZodString;
|
|
1701
|
+
}, "strip", z.ZodTypeAny, {
|
|
1702
|
+
href: string;
|
|
1703
|
+
tab: string;
|
|
1704
|
+
icon?: string | {
|
|
1705
|
+
name: string;
|
|
1706
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1707
|
+
} | undefined;
|
|
1708
|
+
hidden?: boolean | undefined;
|
|
1709
|
+
}, {
|
|
1710
|
+
href: string;
|
|
1711
|
+
tab: string;
|
|
1712
|
+
icon?: string | {
|
|
1713
|
+
name: string;
|
|
1714
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1715
|
+
} | undefined;
|
|
1716
|
+
hidden?: boolean | undefined;
|
|
1717
|
+
}>, "many">>;
|
|
1718
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1719
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1720
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1721
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1722
|
+
}, "strip", z.ZodTypeAny, {
|
|
1723
|
+
name: string;
|
|
1724
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1725
|
+
}, {
|
|
1726
|
+
name: string;
|
|
1727
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1728
|
+
}>]>>;
|
|
1729
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1730
|
+
dropdown: z.ZodString;
|
|
1731
|
+
href: z.ZodString;
|
|
1732
|
+
}, "strip", z.ZodTypeAny, {
|
|
1733
|
+
href: string;
|
|
1734
|
+
dropdown: string;
|
|
1735
|
+
icon?: string | {
|
|
1736
|
+
name: string;
|
|
1737
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1738
|
+
} | undefined;
|
|
1739
|
+
hidden?: boolean | undefined;
|
|
1740
|
+
}, {
|
|
1741
|
+
href: string;
|
|
1742
|
+
dropdown: string;
|
|
1743
|
+
icon?: string | {
|
|
1744
|
+
name: string;
|
|
1745
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1746
|
+
} | undefined;
|
|
1747
|
+
hidden?: boolean | undefined;
|
|
1748
|
+
}>, "many">>;
|
|
1749
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1750
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1751
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1752
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1753
|
+
}, "strip", z.ZodTypeAny, {
|
|
1754
|
+
name: string;
|
|
1755
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1756
|
+
}, {
|
|
1757
|
+
name: string;
|
|
1758
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1759
|
+
}>]>>;
|
|
1760
|
+
color: z.ZodOptional<z.ZodObject<{
|
|
1761
|
+
light: z.ZodOptional<z.ZodString>;
|
|
1762
|
+
dark: z.ZodOptional<z.ZodString>;
|
|
1763
|
+
}, "strict", z.ZodTypeAny, {
|
|
1764
|
+
light?: string | undefined;
|
|
1765
|
+
dark?: string | undefined;
|
|
1766
|
+
}, {
|
|
1767
|
+
light?: string | undefined;
|
|
1768
|
+
dark?: string | undefined;
|
|
1769
|
+
}>>;
|
|
1770
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1771
|
+
anchor: z.ZodString;
|
|
1772
|
+
href: z.ZodString;
|
|
1773
|
+
}, "strip", z.ZodTypeAny, {
|
|
1774
|
+
href: string;
|
|
1775
|
+
anchor: string;
|
|
1776
|
+
icon?: string | {
|
|
1777
|
+
name: string;
|
|
1778
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1779
|
+
} | undefined;
|
|
1780
|
+
color?: {
|
|
1781
|
+
light?: string | undefined;
|
|
1782
|
+
dark?: string | undefined;
|
|
1783
|
+
} | undefined;
|
|
1784
|
+
hidden?: boolean | undefined;
|
|
1785
|
+
}, {
|
|
1786
|
+
href: string;
|
|
1787
|
+
anchor: string;
|
|
1788
|
+
icon?: string | {
|
|
1789
|
+
name: string;
|
|
1790
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1791
|
+
} | undefined;
|
|
1792
|
+
color?: {
|
|
1793
|
+
light?: string | undefined;
|
|
1794
|
+
dark?: string | undefined;
|
|
1795
|
+
} | undefined;
|
|
1796
|
+
hidden?: boolean | undefined;
|
|
1797
|
+
}>, "many">>;
|
|
1798
|
+
}, "strict", z.ZodTypeAny, {
|
|
1799
|
+
languages?: {
|
|
1800
|
+
href: string;
|
|
1801
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1802
|
+
default?: boolean | undefined;
|
|
1803
|
+
hidden?: boolean | undefined;
|
|
1804
|
+
}[] | undefined;
|
|
1805
|
+
versions?: {
|
|
1806
|
+
version: string;
|
|
1807
|
+
href: string;
|
|
1808
|
+
default?: boolean | undefined;
|
|
1809
|
+
hidden?: boolean | undefined;
|
|
1810
|
+
}[] | undefined;
|
|
1811
|
+
tabs?: {
|
|
1812
|
+
href: string;
|
|
1813
|
+
tab: string;
|
|
1814
|
+
icon?: string | {
|
|
1815
|
+
name: string;
|
|
1816
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1817
|
+
} | undefined;
|
|
1818
|
+
hidden?: boolean | undefined;
|
|
1819
|
+
}[] | undefined;
|
|
1820
|
+
dropdowns?: {
|
|
1821
|
+
href: string;
|
|
1822
|
+
dropdown: string;
|
|
1823
|
+
icon?: string | {
|
|
1824
|
+
name: string;
|
|
1825
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1826
|
+
} | undefined;
|
|
1827
|
+
hidden?: boolean | undefined;
|
|
1828
|
+
}[] | undefined;
|
|
1829
|
+
anchors?: {
|
|
1830
|
+
href: string;
|
|
1831
|
+
anchor: string;
|
|
1832
|
+
icon?: string | {
|
|
1833
|
+
name: string;
|
|
1834
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1835
|
+
} | undefined;
|
|
1836
|
+
color?: {
|
|
1837
|
+
light?: string | undefined;
|
|
1838
|
+
dark?: string | undefined;
|
|
1839
|
+
} | undefined;
|
|
1840
|
+
hidden?: boolean | undefined;
|
|
1841
|
+
}[] | undefined;
|
|
1842
|
+
}, {
|
|
1843
|
+
languages?: {
|
|
1844
|
+
href: string;
|
|
1845
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
1846
|
+
default?: boolean | undefined;
|
|
1847
|
+
hidden?: boolean | undefined;
|
|
1848
|
+
}[] | undefined;
|
|
1849
|
+
versions?: {
|
|
1850
|
+
version: string;
|
|
1851
|
+
href: string;
|
|
1852
|
+
default?: boolean | undefined;
|
|
1853
|
+
hidden?: boolean | undefined;
|
|
1854
|
+
}[] | undefined;
|
|
1855
|
+
tabs?: {
|
|
1856
|
+
href: string;
|
|
1857
|
+
tab: string;
|
|
1858
|
+
icon?: string | {
|
|
1859
|
+
name: string;
|
|
1860
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
hidden?: boolean | undefined;
|
|
1863
|
+
}[] | undefined;
|
|
1864
|
+
dropdowns?: {
|
|
1865
|
+
href: string;
|
|
1866
|
+
dropdown: string;
|
|
1867
|
+
icon?: string | {
|
|
1868
|
+
name: string;
|
|
1869
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1870
|
+
} | undefined;
|
|
1871
|
+
hidden?: boolean | undefined;
|
|
1872
|
+
}[] | undefined;
|
|
1873
|
+
anchors?: {
|
|
1874
|
+
href: string;
|
|
1875
|
+
anchor: string;
|
|
1876
|
+
icon?: string | {
|
|
1877
|
+
name: string;
|
|
1878
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1879
|
+
} | undefined;
|
|
1880
|
+
color?: {
|
|
1881
|
+
light?: string | undefined;
|
|
1882
|
+
dark?: string | undefined;
|
|
1883
|
+
} | undefined;
|
|
1884
|
+
hidden?: boolean | undefined;
|
|
1885
|
+
}[] | undefined;
|
|
1886
|
+
}>>;
|
|
39
1887
|
groups: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
40
1888
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
41
1889
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
@@ -150,6 +1998,51 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
150
1998
|
hidden?: boolean | undefined;
|
|
151
1999
|
root?: string | undefined;
|
|
152
2000
|
})[];
|
|
2001
|
+
global?: {
|
|
2002
|
+
languages?: {
|
|
2003
|
+
href: string;
|
|
2004
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2005
|
+
default?: boolean | undefined;
|
|
2006
|
+
hidden?: boolean | undefined;
|
|
2007
|
+
}[] | undefined;
|
|
2008
|
+
versions?: {
|
|
2009
|
+
version: string;
|
|
2010
|
+
href: string;
|
|
2011
|
+
default?: boolean | undefined;
|
|
2012
|
+
hidden?: boolean | undefined;
|
|
2013
|
+
}[] | undefined;
|
|
2014
|
+
tabs?: {
|
|
2015
|
+
href: string;
|
|
2016
|
+
tab: string;
|
|
2017
|
+
icon?: string | {
|
|
2018
|
+
name: string;
|
|
2019
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2020
|
+
} | undefined;
|
|
2021
|
+
hidden?: boolean | undefined;
|
|
2022
|
+
}[] | undefined;
|
|
2023
|
+
dropdowns?: {
|
|
2024
|
+
href: string;
|
|
2025
|
+
dropdown: string;
|
|
2026
|
+
icon?: string | {
|
|
2027
|
+
name: string;
|
|
2028
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2029
|
+
} | undefined;
|
|
2030
|
+
hidden?: boolean | undefined;
|
|
2031
|
+
}[] | undefined;
|
|
2032
|
+
anchors?: {
|
|
2033
|
+
href: string;
|
|
2034
|
+
anchor: string;
|
|
2035
|
+
icon?: string | {
|
|
2036
|
+
name: string;
|
|
2037
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
color?: {
|
|
2040
|
+
light?: string | undefined;
|
|
2041
|
+
dark?: string | undefined;
|
|
2042
|
+
} | undefined;
|
|
2043
|
+
hidden?: boolean | undefined;
|
|
2044
|
+
}[] | undefined;
|
|
2045
|
+
} | undefined;
|
|
153
2046
|
}, {
|
|
154
2047
|
groups: ({
|
|
155
2048
|
openapi: (string | string[] | {
|
|
@@ -176,54 +2069,86 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
176
2069
|
hidden?: boolean | undefined;
|
|
177
2070
|
root?: string | undefined;
|
|
178
2071
|
})[];
|
|
2072
|
+
global?: {
|
|
2073
|
+
languages?: {
|
|
2074
|
+
href: string;
|
|
2075
|
+
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
2076
|
+
default?: boolean | undefined;
|
|
2077
|
+
hidden?: boolean | undefined;
|
|
2078
|
+
}[] | undefined;
|
|
2079
|
+
versions?: {
|
|
2080
|
+
version: string;
|
|
2081
|
+
href: string;
|
|
2082
|
+
default?: boolean | undefined;
|
|
2083
|
+
hidden?: boolean | undefined;
|
|
2084
|
+
}[] | undefined;
|
|
2085
|
+
tabs?: {
|
|
2086
|
+
href: string;
|
|
2087
|
+
tab: string;
|
|
2088
|
+
icon?: string | {
|
|
2089
|
+
name: string;
|
|
2090
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2091
|
+
} | undefined;
|
|
2092
|
+
hidden?: boolean | undefined;
|
|
2093
|
+
}[] | undefined;
|
|
2094
|
+
dropdowns?: {
|
|
2095
|
+
href: string;
|
|
2096
|
+
dropdown: string;
|
|
2097
|
+
icon?: string | {
|
|
2098
|
+
name: string;
|
|
2099
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2100
|
+
} | undefined;
|
|
2101
|
+
hidden?: boolean | undefined;
|
|
2102
|
+
}[] | undefined;
|
|
2103
|
+
anchors?: {
|
|
2104
|
+
href: string;
|
|
2105
|
+
anchor: string;
|
|
2106
|
+
icon?: string | {
|
|
2107
|
+
name: string;
|
|
2108
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2109
|
+
} | undefined;
|
|
2110
|
+
color?: {
|
|
2111
|
+
light?: string | undefined;
|
|
2112
|
+
dark?: string | undefined;
|
|
2113
|
+
} | undefined;
|
|
2114
|
+
hidden?: boolean | undefined;
|
|
2115
|
+
}[] | undefined;
|
|
2116
|
+
} | undefined;
|
|
179
2117
|
}>, z.ZodObject<{
|
|
180
|
-
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
181
|
-
}, "strip", z.ZodTypeAny, {
|
|
182
|
-
pages: any[];
|
|
183
|
-
}, {
|
|
184
|
-
pages: any[];
|
|
185
|
-
}>]>, z.ZodObject<{
|
|
186
2118
|
global: z.ZodOptional<z.ZodObject<{
|
|
187
|
-
languages: z.ZodOptional<z.ZodArray<z.
|
|
188
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2119
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
189
2120
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
190
2121
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2122
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2123
|
+
href: z.ZodString;
|
|
191
2124
|
}, "strip", z.ZodTypeAny, {
|
|
2125
|
+
href: string;
|
|
192
2126
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
193
2127
|
default?: boolean | undefined;
|
|
194
2128
|
hidden?: boolean | undefined;
|
|
195
2129
|
}, {
|
|
2130
|
+
href: string;
|
|
196
2131
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
197
2132
|
default?: boolean | undefined;
|
|
198
2133
|
hidden?: boolean | undefined;
|
|
199
|
-
}>,
|
|
200
|
-
|
|
201
|
-
}, "strip", z.ZodTypeAny, {
|
|
202
|
-
href: string;
|
|
203
|
-
}, {
|
|
204
|
-
href: string;
|
|
205
|
-
}>>, "many">>;
|
|
206
|
-
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2134
|
+
}>, "many">>;
|
|
2135
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
207
2136
|
version: z.ZodString;
|
|
208
2137
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
209
2138
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2139
|
+
href: z.ZodString;
|
|
210
2140
|
}, "strip", z.ZodTypeAny, {
|
|
211
2141
|
version: string;
|
|
2142
|
+
href: string;
|
|
212
2143
|
default?: boolean | undefined;
|
|
213
2144
|
hidden?: boolean | undefined;
|
|
214
2145
|
}, {
|
|
215
2146
|
version: string;
|
|
2147
|
+
href: string;
|
|
216
2148
|
default?: boolean | undefined;
|
|
217
2149
|
hidden?: boolean | undefined;
|
|
218
|
-
}>,
|
|
219
|
-
|
|
220
|
-
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
href: string;
|
|
222
|
-
}, {
|
|
223
|
-
href: string;
|
|
224
|
-
}>>, "many">>;
|
|
225
|
-
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
226
|
-
tab: z.ZodString;
|
|
2150
|
+
}>, "many">>;
|
|
2151
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
227
2152
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
228
2153
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
229
2154
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -235,7 +2160,10 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
235
2160
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
236
2161
|
}>]>>;
|
|
237
2162
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2163
|
+
tab: z.ZodString;
|
|
2164
|
+
href: z.ZodString;
|
|
238
2165
|
}, "strip", z.ZodTypeAny, {
|
|
2166
|
+
href: string;
|
|
239
2167
|
tab: string;
|
|
240
2168
|
icon?: string | {
|
|
241
2169
|
name: string;
|
|
@@ -243,21 +2171,15 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
243
2171
|
} | undefined;
|
|
244
2172
|
hidden?: boolean | undefined;
|
|
245
2173
|
}, {
|
|
2174
|
+
href: string;
|
|
246
2175
|
tab: string;
|
|
247
2176
|
icon?: string | {
|
|
248
2177
|
name: string;
|
|
249
2178
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
250
2179
|
} | undefined;
|
|
251
2180
|
hidden?: boolean | undefined;
|
|
252
|
-
}>,
|
|
253
|
-
|
|
254
|
-
}, "strip", z.ZodTypeAny, {
|
|
255
|
-
href: string;
|
|
256
|
-
}, {
|
|
257
|
-
href: string;
|
|
258
|
-
}>>, "many">>;
|
|
259
|
-
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
260
|
-
dropdown: z.ZodString;
|
|
2181
|
+
}>, "many">>;
|
|
2182
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
261
2183
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
262
2184
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
263
2185
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -269,7 +2191,10 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
269
2191
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
270
2192
|
}>]>>;
|
|
271
2193
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2194
|
+
dropdown: z.ZodString;
|
|
2195
|
+
href: z.ZodString;
|
|
272
2196
|
}, "strip", z.ZodTypeAny, {
|
|
2197
|
+
href: string;
|
|
273
2198
|
dropdown: string;
|
|
274
2199
|
icon?: string | {
|
|
275
2200
|
name: string;
|
|
@@ -277,21 +2202,15 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
277
2202
|
} | undefined;
|
|
278
2203
|
hidden?: boolean | undefined;
|
|
279
2204
|
}, {
|
|
2205
|
+
href: string;
|
|
280
2206
|
dropdown: string;
|
|
281
2207
|
icon?: string | {
|
|
282
2208
|
name: string;
|
|
283
2209
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
284
2210
|
} | undefined;
|
|
285
2211
|
hidden?: boolean | undefined;
|
|
286
|
-
}>,
|
|
287
|
-
|
|
288
|
-
}, "strip", z.ZodTypeAny, {
|
|
289
|
-
href: string;
|
|
290
|
-
}, {
|
|
291
|
-
href: string;
|
|
292
|
-
}>>, "many">>;
|
|
293
|
-
anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
294
|
-
anchor: z.ZodString;
|
|
2212
|
+
}>, "many">>;
|
|
2213
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
295
2214
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
296
2215
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
297
2216
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -313,7 +2232,10 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
313
2232
|
dark?: string | undefined;
|
|
314
2233
|
}>>;
|
|
315
2234
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2235
|
+
anchor: z.ZodString;
|
|
2236
|
+
href: z.ZodString;
|
|
316
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2238
|
+
href: string;
|
|
317
2239
|
anchor: string;
|
|
318
2240
|
icon?: string | {
|
|
319
2241
|
name: string;
|
|
@@ -325,6 +2247,7 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
325
2247
|
} | undefined;
|
|
326
2248
|
hidden?: boolean | undefined;
|
|
327
2249
|
}, {
|
|
2250
|
+
href: string;
|
|
328
2251
|
anchor: string;
|
|
329
2252
|
icon?: string | {
|
|
330
2253
|
name: string;
|
|
@@ -335,49 +2258,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
335
2258
|
dark?: string | undefined;
|
|
336
2259
|
} | undefined;
|
|
337
2260
|
hidden?: boolean | undefined;
|
|
338
|
-
}>,
|
|
339
|
-
href: z.ZodString;
|
|
340
|
-
}, "strip", z.ZodTypeAny, {
|
|
341
|
-
href: string;
|
|
342
|
-
}, {
|
|
343
|
-
href: string;
|
|
344
|
-
}>>, "many">>;
|
|
2261
|
+
}>, "many">>;
|
|
345
2262
|
}, "strict", z.ZodTypeAny, {
|
|
346
|
-
languages?:
|
|
2263
|
+
languages?: {
|
|
2264
|
+
href: string;
|
|
347
2265
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
348
2266
|
default?: boolean | undefined;
|
|
349
2267
|
hidden?: boolean | undefined;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
})[] | undefined;
|
|
353
|
-
versions?: ({
|
|
2268
|
+
}[] | undefined;
|
|
2269
|
+
versions?: {
|
|
354
2270
|
version: string;
|
|
2271
|
+
href: string;
|
|
355
2272
|
default?: boolean | undefined;
|
|
356
2273
|
hidden?: boolean | undefined;
|
|
357
|
-
}
|
|
2274
|
+
}[] | undefined;
|
|
2275
|
+
tabs?: {
|
|
358
2276
|
href: string;
|
|
359
|
-
})[] | undefined;
|
|
360
|
-
tabs?: ({
|
|
361
2277
|
tab: string;
|
|
362
2278
|
icon?: string | {
|
|
363
2279
|
name: string;
|
|
364
2280
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
365
2281
|
} | undefined;
|
|
366
2282
|
hidden?: boolean | undefined;
|
|
367
|
-
}
|
|
2283
|
+
}[] | undefined;
|
|
2284
|
+
dropdowns?: {
|
|
368
2285
|
href: string;
|
|
369
|
-
})[] | undefined;
|
|
370
|
-
dropdowns?: ({
|
|
371
2286
|
dropdown: string;
|
|
372
2287
|
icon?: string | {
|
|
373
2288
|
name: string;
|
|
374
2289
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
375
2290
|
} | undefined;
|
|
376
2291
|
hidden?: boolean | undefined;
|
|
377
|
-
}
|
|
2292
|
+
}[] | undefined;
|
|
2293
|
+
anchors?: {
|
|
378
2294
|
href: string;
|
|
379
|
-
})[] | undefined;
|
|
380
|
-
anchors?: ({
|
|
381
2295
|
anchor: string;
|
|
382
2296
|
icon?: string | {
|
|
383
2297
|
name: string;
|
|
@@ -388,45 +2302,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
388
2302
|
dark?: string | undefined;
|
|
389
2303
|
} | undefined;
|
|
390
2304
|
hidden?: boolean | undefined;
|
|
391
|
-
}
|
|
392
|
-
href: string;
|
|
393
|
-
})[] | undefined;
|
|
2305
|
+
}[] | undefined;
|
|
394
2306
|
}, {
|
|
395
|
-
languages?:
|
|
2307
|
+
languages?: {
|
|
2308
|
+
href: string;
|
|
396
2309
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
397
2310
|
default?: boolean | undefined;
|
|
398
2311
|
hidden?: boolean | undefined;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
})[] | undefined;
|
|
402
|
-
versions?: ({
|
|
2312
|
+
}[] | undefined;
|
|
2313
|
+
versions?: {
|
|
403
2314
|
version: string;
|
|
2315
|
+
href: string;
|
|
404
2316
|
default?: boolean | undefined;
|
|
405
2317
|
hidden?: boolean | undefined;
|
|
406
|
-
}
|
|
2318
|
+
}[] | undefined;
|
|
2319
|
+
tabs?: {
|
|
407
2320
|
href: string;
|
|
408
|
-
})[] | undefined;
|
|
409
|
-
tabs?: ({
|
|
410
2321
|
tab: string;
|
|
411
2322
|
icon?: string | {
|
|
412
2323
|
name: string;
|
|
413
2324
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
414
2325
|
} | undefined;
|
|
415
2326
|
hidden?: boolean | undefined;
|
|
416
|
-
}
|
|
2327
|
+
}[] | undefined;
|
|
2328
|
+
dropdowns?: {
|
|
417
2329
|
href: string;
|
|
418
|
-
})[] | undefined;
|
|
419
|
-
dropdowns?: ({
|
|
420
2330
|
dropdown: string;
|
|
421
2331
|
icon?: string | {
|
|
422
2332
|
name: string;
|
|
423
2333
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
424
2334
|
} | undefined;
|
|
425
2335
|
hidden?: boolean | undefined;
|
|
426
|
-
}
|
|
2336
|
+
}[] | undefined;
|
|
2337
|
+
anchors?: {
|
|
427
2338
|
href: string;
|
|
428
|
-
})[] | undefined;
|
|
429
|
-
anchors?: ({
|
|
430
2339
|
anchor: string;
|
|
431
2340
|
icon?: string | {
|
|
432
2341
|
name: string;
|
|
@@ -437,47 +2346,44 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
437
2346
|
dark?: string | undefined;
|
|
438
2347
|
} | undefined;
|
|
439
2348
|
hidden?: boolean | undefined;
|
|
440
|
-
}
|
|
441
|
-
href: string;
|
|
442
|
-
})[] | undefined;
|
|
2349
|
+
}[] | undefined;
|
|
443
2350
|
}>>;
|
|
2351
|
+
pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
|
|
444
2352
|
}, "strip", z.ZodTypeAny, {
|
|
2353
|
+
pages: any[];
|
|
445
2354
|
global?: {
|
|
446
|
-
languages?:
|
|
2355
|
+
languages?: {
|
|
2356
|
+
href: string;
|
|
447
2357
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
448
2358
|
default?: boolean | undefined;
|
|
449
2359
|
hidden?: boolean | undefined;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
})[] | undefined;
|
|
453
|
-
versions?: ({
|
|
2360
|
+
}[] | undefined;
|
|
2361
|
+
versions?: {
|
|
454
2362
|
version: string;
|
|
2363
|
+
href: string;
|
|
455
2364
|
default?: boolean | undefined;
|
|
456
2365
|
hidden?: boolean | undefined;
|
|
457
|
-
}
|
|
2366
|
+
}[] | undefined;
|
|
2367
|
+
tabs?: {
|
|
458
2368
|
href: string;
|
|
459
|
-
})[] | undefined;
|
|
460
|
-
tabs?: ({
|
|
461
2369
|
tab: string;
|
|
462
2370
|
icon?: string | {
|
|
463
2371
|
name: string;
|
|
464
2372
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
465
2373
|
} | undefined;
|
|
466
2374
|
hidden?: boolean | undefined;
|
|
467
|
-
}
|
|
2375
|
+
}[] | undefined;
|
|
2376
|
+
dropdowns?: {
|
|
468
2377
|
href: string;
|
|
469
|
-
})[] | undefined;
|
|
470
|
-
dropdowns?: ({
|
|
471
2378
|
dropdown: string;
|
|
472
2379
|
icon?: string | {
|
|
473
2380
|
name: string;
|
|
474
2381
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
475
2382
|
} | undefined;
|
|
476
2383
|
hidden?: boolean | undefined;
|
|
477
|
-
}
|
|
2384
|
+
}[] | undefined;
|
|
2385
|
+
anchors?: {
|
|
478
2386
|
href: string;
|
|
479
|
-
})[] | undefined;
|
|
480
|
-
anchors?: ({
|
|
481
2387
|
anchor: string;
|
|
482
2388
|
icon?: string | {
|
|
483
2389
|
name: string;
|
|
@@ -488,47 +2394,43 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
488
2394
|
dark?: string | undefined;
|
|
489
2395
|
} | undefined;
|
|
490
2396
|
hidden?: boolean | undefined;
|
|
491
|
-
}
|
|
492
|
-
href: string;
|
|
493
|
-
})[] | undefined;
|
|
2397
|
+
}[] | undefined;
|
|
494
2398
|
} | undefined;
|
|
495
2399
|
}, {
|
|
2400
|
+
pages: any[];
|
|
496
2401
|
global?: {
|
|
497
|
-
languages?:
|
|
2402
|
+
languages?: {
|
|
2403
|
+
href: string;
|
|
498
2404
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
499
2405
|
default?: boolean | undefined;
|
|
500
2406
|
hidden?: boolean | undefined;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
})[] | undefined;
|
|
504
|
-
versions?: ({
|
|
2407
|
+
}[] | undefined;
|
|
2408
|
+
versions?: {
|
|
505
2409
|
version: string;
|
|
2410
|
+
href: string;
|
|
506
2411
|
default?: boolean | undefined;
|
|
507
2412
|
hidden?: boolean | undefined;
|
|
508
|
-
}
|
|
2413
|
+
}[] | undefined;
|
|
2414
|
+
tabs?: {
|
|
509
2415
|
href: string;
|
|
510
|
-
})[] | undefined;
|
|
511
|
-
tabs?: ({
|
|
512
2416
|
tab: string;
|
|
513
2417
|
icon?: string | {
|
|
514
2418
|
name: string;
|
|
515
2419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
516
2420
|
} | undefined;
|
|
517
2421
|
hidden?: boolean | undefined;
|
|
518
|
-
}
|
|
2422
|
+
}[] | undefined;
|
|
2423
|
+
dropdowns?: {
|
|
519
2424
|
href: string;
|
|
520
|
-
})[] | undefined;
|
|
521
|
-
dropdowns?: ({
|
|
522
2425
|
dropdown: string;
|
|
523
2426
|
icon?: string | {
|
|
524
2427
|
name: string;
|
|
525
2428
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
2429
|
} | undefined;
|
|
527
2430
|
hidden?: boolean | undefined;
|
|
528
|
-
}
|
|
2431
|
+
}[] | undefined;
|
|
2432
|
+
anchors?: {
|
|
529
2433
|
href: string;
|
|
530
|
-
})[] | undefined;
|
|
531
|
-
anchors?: ({
|
|
532
2434
|
anchor: string;
|
|
533
2435
|
icon?: string | {
|
|
534
2436
|
name: string;
|
|
@@ -539,11 +2441,9 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject
|
|
|
539
2441
|
dark?: string | undefined;
|
|
540
2442
|
} | undefined;
|
|
541
2443
|
hidden?: boolean | undefined;
|
|
542
|
-
}
|
|
543
|
-
href: string;
|
|
544
|
-
})[] | undefined;
|
|
2444
|
+
}[] | undefined;
|
|
545
2445
|
} | undefined;
|
|
546
|
-
}
|
|
2446
|
+
}>]>;
|
|
547
2447
|
export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
548
2448
|
languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"decorated">>, "many">;
|
|
549
2449
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -639,46 +2539,39 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
639
2539
|
pages: any[];
|
|
640
2540
|
}>]>, z.ZodObject<{
|
|
641
2541
|
global: z.ZodOptional<z.ZodObject<{
|
|
642
|
-
languages: z.ZodOptional<z.ZodArray<z.
|
|
643
|
-
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2542
|
+
languages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
644
2543
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
645
2544
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2545
|
+
language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
2546
|
+
href: z.ZodString;
|
|
646
2547
|
}, "strip", z.ZodTypeAny, {
|
|
2548
|
+
href: string;
|
|
647
2549
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
648
2550
|
default?: boolean | undefined;
|
|
649
2551
|
hidden?: boolean | undefined;
|
|
650
2552
|
}, {
|
|
2553
|
+
href: string;
|
|
651
2554
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
652
2555
|
default?: boolean | undefined;
|
|
653
2556
|
hidden?: boolean | undefined;
|
|
654
|
-
}>,
|
|
655
|
-
|
|
656
|
-
}, "strip", z.ZodTypeAny, {
|
|
657
|
-
href: string;
|
|
658
|
-
}, {
|
|
659
|
-
href: string;
|
|
660
|
-
}>>, "many">>;
|
|
661
|
-
versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
2557
|
+
}>, "many">>;
|
|
2558
|
+
versions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
662
2559
|
version: z.ZodString;
|
|
663
2560
|
default: z.ZodOptional<z.ZodBoolean>;
|
|
664
2561
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2562
|
+
href: z.ZodString;
|
|
665
2563
|
}, "strip", z.ZodTypeAny, {
|
|
666
2564
|
version: string;
|
|
2565
|
+
href: string;
|
|
667
2566
|
default?: boolean | undefined;
|
|
668
2567
|
hidden?: boolean | undefined;
|
|
669
2568
|
}, {
|
|
670
2569
|
version: string;
|
|
2570
|
+
href: string;
|
|
671
2571
|
default?: boolean | undefined;
|
|
672
2572
|
hidden?: boolean | undefined;
|
|
673
|
-
}>,
|
|
674
|
-
|
|
675
|
-
}, "strip", z.ZodTypeAny, {
|
|
676
|
-
href: string;
|
|
677
|
-
}, {
|
|
678
|
-
href: string;
|
|
679
|
-
}>>, "many">>;
|
|
680
|
-
tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
681
|
-
tab: z.ZodString;
|
|
2573
|
+
}>, "many">>;
|
|
2574
|
+
tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
682
2575
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
683
2576
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
684
2577
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -690,7 +2583,10 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
690
2583
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
691
2584
|
}>]>>;
|
|
692
2585
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2586
|
+
tab: z.ZodString;
|
|
2587
|
+
href: z.ZodString;
|
|
693
2588
|
}, "strip", z.ZodTypeAny, {
|
|
2589
|
+
href: string;
|
|
694
2590
|
tab: string;
|
|
695
2591
|
icon?: string | {
|
|
696
2592
|
name: string;
|
|
@@ -698,21 +2594,15 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
698
2594
|
} | undefined;
|
|
699
2595
|
hidden?: boolean | undefined;
|
|
700
2596
|
}, {
|
|
2597
|
+
href: string;
|
|
701
2598
|
tab: string;
|
|
702
2599
|
icon?: string | {
|
|
703
2600
|
name: string;
|
|
704
2601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
705
2602
|
} | undefined;
|
|
706
2603
|
hidden?: boolean | undefined;
|
|
707
|
-
}>,
|
|
708
|
-
|
|
709
|
-
}, "strip", z.ZodTypeAny, {
|
|
710
|
-
href: string;
|
|
711
|
-
}, {
|
|
712
|
-
href: string;
|
|
713
|
-
}>>, "many">>;
|
|
714
|
-
dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
715
|
-
dropdown: z.ZodString;
|
|
2604
|
+
}>, "many">>;
|
|
2605
|
+
dropdowns: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
716
2606
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
717
2607
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
718
2608
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -724,7 +2614,10 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
724
2614
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
725
2615
|
}>]>>;
|
|
726
2616
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2617
|
+
dropdown: z.ZodString;
|
|
2618
|
+
href: z.ZodString;
|
|
727
2619
|
}, "strip", z.ZodTypeAny, {
|
|
2620
|
+
href: string;
|
|
728
2621
|
dropdown: string;
|
|
729
2622
|
icon?: string | {
|
|
730
2623
|
name: string;
|
|
@@ -732,21 +2625,15 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
732
2625
|
} | undefined;
|
|
733
2626
|
hidden?: boolean | undefined;
|
|
734
2627
|
}, {
|
|
2628
|
+
href: string;
|
|
735
2629
|
dropdown: string;
|
|
736
2630
|
icon?: string | {
|
|
737
2631
|
name: string;
|
|
738
2632
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
739
2633
|
} | undefined;
|
|
740
2634
|
hidden?: boolean | undefined;
|
|
741
|
-
}>,
|
|
742
|
-
|
|
743
|
-
}, "strip", z.ZodTypeAny, {
|
|
744
|
-
href: string;
|
|
745
|
-
}, {
|
|
746
|
-
href: string;
|
|
747
|
-
}>>, "many">>;
|
|
748
|
-
anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
|
|
749
|
-
anchor: z.ZodString;
|
|
2635
|
+
}>, "many">>;
|
|
2636
|
+
anchors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
750
2637
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
751
2638
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
752
2639
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -768,7 +2655,10 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
768
2655
|
dark?: string | undefined;
|
|
769
2656
|
}>>;
|
|
770
2657
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2658
|
+
anchor: z.ZodString;
|
|
2659
|
+
href: z.ZodString;
|
|
771
2660
|
}, "strip", z.ZodTypeAny, {
|
|
2661
|
+
href: string;
|
|
772
2662
|
anchor: string;
|
|
773
2663
|
icon?: string | {
|
|
774
2664
|
name: string;
|
|
@@ -780,6 +2670,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
780
2670
|
} | undefined;
|
|
781
2671
|
hidden?: boolean | undefined;
|
|
782
2672
|
}, {
|
|
2673
|
+
href: string;
|
|
783
2674
|
anchor: string;
|
|
784
2675
|
icon?: string | {
|
|
785
2676
|
name: string;
|
|
@@ -790,49 +2681,40 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
790
2681
|
dark?: string | undefined;
|
|
791
2682
|
} | undefined;
|
|
792
2683
|
hidden?: boolean | undefined;
|
|
793
|
-
}>,
|
|
794
|
-
href: z.ZodString;
|
|
795
|
-
}, "strip", z.ZodTypeAny, {
|
|
796
|
-
href: string;
|
|
797
|
-
}, {
|
|
798
|
-
href: string;
|
|
799
|
-
}>>, "many">>;
|
|
2684
|
+
}>, "many">>;
|
|
800
2685
|
}, "strict", z.ZodTypeAny, {
|
|
801
|
-
languages?:
|
|
2686
|
+
languages?: {
|
|
2687
|
+
href: string;
|
|
802
2688
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
803
2689
|
default?: boolean | undefined;
|
|
804
2690
|
hidden?: boolean | undefined;
|
|
805
|
-
}
|
|
806
|
-
|
|
807
|
-
})[] | undefined;
|
|
808
|
-
versions?: ({
|
|
2691
|
+
}[] | undefined;
|
|
2692
|
+
versions?: {
|
|
809
2693
|
version: string;
|
|
2694
|
+
href: string;
|
|
810
2695
|
default?: boolean | undefined;
|
|
811
2696
|
hidden?: boolean | undefined;
|
|
812
|
-
}
|
|
2697
|
+
}[] | undefined;
|
|
2698
|
+
tabs?: {
|
|
813
2699
|
href: string;
|
|
814
|
-
})[] | undefined;
|
|
815
|
-
tabs?: ({
|
|
816
2700
|
tab: string;
|
|
817
2701
|
icon?: string | {
|
|
818
2702
|
name: string;
|
|
819
2703
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
820
2704
|
} | undefined;
|
|
821
2705
|
hidden?: boolean | undefined;
|
|
822
|
-
}
|
|
2706
|
+
}[] | undefined;
|
|
2707
|
+
dropdowns?: {
|
|
823
2708
|
href: string;
|
|
824
|
-
})[] | undefined;
|
|
825
|
-
dropdowns?: ({
|
|
826
2709
|
dropdown: string;
|
|
827
2710
|
icon?: string | {
|
|
828
2711
|
name: string;
|
|
829
2712
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
830
2713
|
} | undefined;
|
|
831
2714
|
hidden?: boolean | undefined;
|
|
832
|
-
}
|
|
2715
|
+
}[] | undefined;
|
|
2716
|
+
anchors?: {
|
|
833
2717
|
href: string;
|
|
834
|
-
})[] | undefined;
|
|
835
|
-
anchors?: ({
|
|
836
2718
|
anchor: string;
|
|
837
2719
|
icon?: string | {
|
|
838
2720
|
name: string;
|
|
@@ -843,45 +2725,40 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
843
2725
|
dark?: string | undefined;
|
|
844
2726
|
} | undefined;
|
|
845
2727
|
hidden?: boolean | undefined;
|
|
846
|
-
}
|
|
847
|
-
href: string;
|
|
848
|
-
})[] | undefined;
|
|
2728
|
+
}[] | undefined;
|
|
849
2729
|
}, {
|
|
850
|
-
languages?:
|
|
2730
|
+
languages?: {
|
|
2731
|
+
href: string;
|
|
851
2732
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
852
2733
|
default?: boolean | undefined;
|
|
853
2734
|
hidden?: boolean | undefined;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
})[] | undefined;
|
|
857
|
-
versions?: ({
|
|
2735
|
+
}[] | undefined;
|
|
2736
|
+
versions?: {
|
|
858
2737
|
version: string;
|
|
2738
|
+
href: string;
|
|
859
2739
|
default?: boolean | undefined;
|
|
860
2740
|
hidden?: boolean | undefined;
|
|
861
|
-
}
|
|
2741
|
+
}[] | undefined;
|
|
2742
|
+
tabs?: {
|
|
862
2743
|
href: string;
|
|
863
|
-
})[] | undefined;
|
|
864
|
-
tabs?: ({
|
|
865
2744
|
tab: string;
|
|
866
2745
|
icon?: string | {
|
|
867
2746
|
name: string;
|
|
868
2747
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
869
2748
|
} | undefined;
|
|
870
2749
|
hidden?: boolean | undefined;
|
|
871
|
-
}
|
|
2750
|
+
}[] | undefined;
|
|
2751
|
+
dropdowns?: {
|
|
872
2752
|
href: string;
|
|
873
|
-
})[] | undefined;
|
|
874
|
-
dropdowns?: ({
|
|
875
2753
|
dropdown: string;
|
|
876
2754
|
icon?: string | {
|
|
877
2755
|
name: string;
|
|
878
2756
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
879
2757
|
} | undefined;
|
|
880
2758
|
hidden?: boolean | undefined;
|
|
881
|
-
}
|
|
2759
|
+
}[] | undefined;
|
|
2760
|
+
anchors?: {
|
|
882
2761
|
href: string;
|
|
883
|
-
})[] | undefined;
|
|
884
|
-
anchors?: ({
|
|
885
2762
|
anchor: string;
|
|
886
2763
|
icon?: string | {
|
|
887
2764
|
name: string;
|
|
@@ -892,47 +2769,42 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
892
2769
|
dark?: string | undefined;
|
|
893
2770
|
} | undefined;
|
|
894
2771
|
hidden?: boolean | undefined;
|
|
895
|
-
}
|
|
896
|
-
href: string;
|
|
897
|
-
})[] | undefined;
|
|
2772
|
+
}[] | undefined;
|
|
898
2773
|
}>>;
|
|
899
2774
|
}, "strip", z.ZodTypeAny, {
|
|
900
2775
|
global?: {
|
|
901
|
-
languages?:
|
|
2776
|
+
languages?: {
|
|
2777
|
+
href: string;
|
|
902
2778
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
903
2779
|
default?: boolean | undefined;
|
|
904
2780
|
hidden?: boolean | undefined;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
})[] | undefined;
|
|
908
|
-
versions?: ({
|
|
2781
|
+
}[] | undefined;
|
|
2782
|
+
versions?: {
|
|
909
2783
|
version: string;
|
|
2784
|
+
href: string;
|
|
910
2785
|
default?: boolean | undefined;
|
|
911
2786
|
hidden?: boolean | undefined;
|
|
912
|
-
}
|
|
2787
|
+
}[] | undefined;
|
|
2788
|
+
tabs?: {
|
|
913
2789
|
href: string;
|
|
914
|
-
})[] | undefined;
|
|
915
|
-
tabs?: ({
|
|
916
2790
|
tab: string;
|
|
917
2791
|
icon?: string | {
|
|
918
2792
|
name: string;
|
|
919
2793
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
920
2794
|
} | undefined;
|
|
921
2795
|
hidden?: boolean | undefined;
|
|
922
|
-
}
|
|
2796
|
+
}[] | undefined;
|
|
2797
|
+
dropdowns?: {
|
|
923
2798
|
href: string;
|
|
924
|
-
})[] | undefined;
|
|
925
|
-
dropdowns?: ({
|
|
926
2799
|
dropdown: string;
|
|
927
2800
|
icon?: string | {
|
|
928
2801
|
name: string;
|
|
929
2802
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
930
2803
|
} | undefined;
|
|
931
2804
|
hidden?: boolean | undefined;
|
|
932
|
-
}
|
|
2805
|
+
}[] | undefined;
|
|
2806
|
+
anchors?: {
|
|
933
2807
|
href: string;
|
|
934
|
-
})[] | undefined;
|
|
935
|
-
anchors?: ({
|
|
936
2808
|
anchor: string;
|
|
937
2809
|
icon?: string | {
|
|
938
2810
|
name: string;
|
|
@@ -943,47 +2815,42 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
943
2815
|
dark?: string | undefined;
|
|
944
2816
|
} | undefined;
|
|
945
2817
|
hidden?: boolean | undefined;
|
|
946
|
-
}
|
|
947
|
-
href: string;
|
|
948
|
-
})[] | undefined;
|
|
2818
|
+
}[] | undefined;
|
|
949
2819
|
} | undefined;
|
|
950
2820
|
}, {
|
|
951
2821
|
global?: {
|
|
952
|
-
languages?:
|
|
2822
|
+
languages?: {
|
|
2823
|
+
href: string;
|
|
953
2824
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
954
2825
|
default?: boolean | undefined;
|
|
955
2826
|
hidden?: boolean | undefined;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
})[] | undefined;
|
|
959
|
-
versions?: ({
|
|
2827
|
+
}[] | undefined;
|
|
2828
|
+
versions?: {
|
|
960
2829
|
version: string;
|
|
2830
|
+
href: string;
|
|
961
2831
|
default?: boolean | undefined;
|
|
962
2832
|
hidden?: boolean | undefined;
|
|
963
|
-
}
|
|
2833
|
+
}[] | undefined;
|
|
2834
|
+
tabs?: {
|
|
964
2835
|
href: string;
|
|
965
|
-
})[] | undefined;
|
|
966
|
-
tabs?: ({
|
|
967
2836
|
tab: string;
|
|
968
2837
|
icon?: string | {
|
|
969
2838
|
name: string;
|
|
970
2839
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
971
2840
|
} | undefined;
|
|
972
2841
|
hidden?: boolean | undefined;
|
|
973
|
-
}
|
|
2842
|
+
}[] | undefined;
|
|
2843
|
+
dropdowns?: {
|
|
974
2844
|
href: string;
|
|
975
|
-
})[] | undefined;
|
|
976
|
-
dropdowns?: ({
|
|
977
2845
|
dropdown: string;
|
|
978
2846
|
icon?: string | {
|
|
979
2847
|
name: string;
|
|
980
2848
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
981
2849
|
} | undefined;
|
|
982
2850
|
hidden?: boolean | undefined;
|
|
983
|
-
}
|
|
2851
|
+
}[] | undefined;
|
|
2852
|
+
anchors?: {
|
|
984
2853
|
href: string;
|
|
985
|
-
})[] | undefined;
|
|
986
|
-
anchors?: ({
|
|
987
2854
|
anchor: string;
|
|
988
2855
|
icon?: string | {
|
|
989
2856
|
name: string;
|
|
@@ -994,9 +2861,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
994
2861
|
dark?: string | undefined;
|
|
995
2862
|
} | undefined;
|
|
996
2863
|
hidden?: boolean | undefined;
|
|
997
|
-
}
|
|
998
|
-
href: string;
|
|
999
|
-
})[] | undefined;
|
|
2864
|
+
}[] | undefined;
|
|
1000
2865
|
} | undefined;
|
|
1001
2866
|
}>>;
|
|
1002
2867
|
export type NavigationConfig = z.infer<typeof navigationSchema>;
|