@mintlify/validation 0.1.580 → 0.1.581
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 +1605 -109
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +162 -8
- package/dist/mint-config/schemas/v2/properties/navbar.js +25 -3
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +199 -12
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +147 -8
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +199 -12
- package/dist/mint-config/validateConfig.d.ts +364 -28
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -235,8 +235,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
235
235
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
236
236
|
}>>;
|
|
237
237
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
238
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
239
|
-
label: z.ZodString;
|
|
238
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
240
239
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
241
240
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
242
241
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -251,9 +250,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
251
250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
252
251
|
}>]>>;
|
|
253
252
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
254
|
-
},
|
|
253
|
+
}, {
|
|
254
|
+
label: z.ZodOptional<z.ZodString>;
|
|
255
|
+
type: z.ZodLiteral<"github">;
|
|
256
|
+
}>, "strip", z.ZodTypeAny, {
|
|
257
|
+
type: "github";
|
|
258
|
+
href: string;
|
|
259
|
+
icon?: string | {
|
|
260
|
+
name: string;
|
|
261
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
262
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
263
|
+
} | undefined;
|
|
264
|
+
label?: string | undefined;
|
|
265
|
+
}, {
|
|
266
|
+
type: "github";
|
|
267
|
+
href: string;
|
|
268
|
+
icon?: string | {
|
|
269
|
+
name: string;
|
|
270
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
271
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
272
|
+
} | undefined;
|
|
273
|
+
label?: string | undefined;
|
|
274
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
275
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
276
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
277
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
278
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
279
|
+
}, "strip", z.ZodTypeAny, {
|
|
280
|
+
name: string;
|
|
281
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
282
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
283
|
+
}, {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
}>]>>;
|
|
288
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
289
|
+
}, {
|
|
290
|
+
label: z.ZodOptional<z.ZodString>;
|
|
291
|
+
type: z.ZodLiteral<"discord">;
|
|
292
|
+
}>, "strip", z.ZodTypeAny, {
|
|
293
|
+
type: "discord";
|
|
294
|
+
href: string;
|
|
295
|
+
icon?: string | {
|
|
296
|
+
name: string;
|
|
297
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
298
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
299
|
+
} | undefined;
|
|
300
|
+
label?: string | undefined;
|
|
301
|
+
}, {
|
|
302
|
+
type: "discord";
|
|
303
|
+
href: string;
|
|
304
|
+
icon?: string | {
|
|
305
|
+
name: string;
|
|
306
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
307
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
308
|
+
} | undefined;
|
|
309
|
+
label?: string | undefined;
|
|
310
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
311
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
312
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
313
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
314
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
315
|
+
}, "strip", z.ZodTypeAny, {
|
|
316
|
+
name: string;
|
|
317
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
318
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
319
|
+
}, {
|
|
320
|
+
name: string;
|
|
321
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
322
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
323
|
+
}>]>>;
|
|
324
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
325
|
+
}, {
|
|
326
|
+
label: z.ZodString;
|
|
327
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
328
|
+
}>, "strip", z.ZodTypeAny, {
|
|
255
329
|
href: string;
|
|
256
330
|
label: string;
|
|
331
|
+
type?: undefined;
|
|
257
332
|
icon?: string | {
|
|
258
333
|
name: string;
|
|
259
334
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -262,12 +337,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
262
337
|
}, {
|
|
263
338
|
href: string;
|
|
264
339
|
label: string;
|
|
340
|
+
type?: undefined;
|
|
265
341
|
icon?: string | {
|
|
266
342
|
name: string;
|
|
267
343
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
268
344
|
library?: "fontawesome" | "lucide" | undefined;
|
|
269
345
|
} | undefined;
|
|
270
|
-
}>, "many">>;
|
|
346
|
+
}>]>, "many">>;
|
|
271
347
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
272
348
|
type: z.ZodLiteral<"button">;
|
|
273
349
|
label: z.ZodString;
|
|
@@ -282,13 +358,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
282
358
|
label: string;
|
|
283
359
|
}>, z.ZodObject<{
|
|
284
360
|
type: z.ZodLiteral<"github">;
|
|
361
|
+
label: z.ZodOptional<z.ZodString>;
|
|
285
362
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
286
363
|
}, "strip", z.ZodTypeAny, {
|
|
287
364
|
type: "github";
|
|
288
365
|
href: string;
|
|
366
|
+
label?: string | undefined;
|
|
289
367
|
}, {
|
|
290
368
|
type: "github";
|
|
291
369
|
href: string;
|
|
370
|
+
label?: string | undefined;
|
|
371
|
+
}>, z.ZodObject<{
|
|
372
|
+
type: z.ZodLiteral<"discord">;
|
|
373
|
+
label: z.ZodOptional<z.ZodString>;
|
|
374
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
375
|
+
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
type: "discord";
|
|
377
|
+
href: string;
|
|
378
|
+
label?: string | undefined;
|
|
379
|
+
}, {
|
|
380
|
+
type: "discord";
|
|
381
|
+
href: string;
|
|
382
|
+
label?: string | undefined;
|
|
292
383
|
}>]>>;
|
|
293
384
|
}, "strip", z.ZodTypeAny, {
|
|
294
385
|
primary?: {
|
|
@@ -298,16 +389,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
298
389
|
} | {
|
|
299
390
|
type: "github";
|
|
300
391
|
href: string;
|
|
392
|
+
label?: string | undefined;
|
|
393
|
+
} | {
|
|
394
|
+
type: "discord";
|
|
395
|
+
href: string;
|
|
396
|
+
label?: string | undefined;
|
|
301
397
|
} | undefined;
|
|
302
|
-
links?: {
|
|
398
|
+
links?: ({
|
|
303
399
|
href: string;
|
|
304
400
|
label: string;
|
|
401
|
+
type?: undefined;
|
|
305
402
|
icon?: string | {
|
|
306
403
|
name: string;
|
|
307
404
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
308
405
|
library?: "fontawesome" | "lucide" | undefined;
|
|
309
406
|
} | undefined;
|
|
310
|
-
}
|
|
407
|
+
} | {
|
|
408
|
+
type: "github";
|
|
409
|
+
href: string;
|
|
410
|
+
icon?: string | {
|
|
411
|
+
name: string;
|
|
412
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
413
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
414
|
+
} | undefined;
|
|
415
|
+
label?: string | undefined;
|
|
416
|
+
} | {
|
|
417
|
+
type: "discord";
|
|
418
|
+
href: 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
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
423
|
+
} | undefined;
|
|
424
|
+
label?: string | undefined;
|
|
425
|
+
})[] | undefined;
|
|
311
426
|
}, {
|
|
312
427
|
primary?: {
|
|
313
428
|
type: "button";
|
|
@@ -316,16 +431,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
316
431
|
} | {
|
|
317
432
|
type: "github";
|
|
318
433
|
href: string;
|
|
434
|
+
label?: string | undefined;
|
|
435
|
+
} | {
|
|
436
|
+
type: "discord";
|
|
437
|
+
href: string;
|
|
438
|
+
label?: string | undefined;
|
|
319
439
|
} | undefined;
|
|
320
|
-
links?: {
|
|
440
|
+
links?: ({
|
|
321
441
|
href: string;
|
|
322
442
|
label: string;
|
|
443
|
+
type?: undefined;
|
|
323
444
|
icon?: string | {
|
|
324
445
|
name: string;
|
|
325
446
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
326
447
|
library?: "fontawesome" | "lucide" | undefined;
|
|
327
448
|
} | undefined;
|
|
328
|
-
}
|
|
449
|
+
} | {
|
|
450
|
+
type: "github";
|
|
451
|
+
href: string;
|
|
452
|
+
icon?: string | {
|
|
453
|
+
name: string;
|
|
454
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
455
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
456
|
+
} | undefined;
|
|
457
|
+
label?: string | undefined;
|
|
458
|
+
} | {
|
|
459
|
+
type: "discord";
|
|
460
|
+
href: string;
|
|
461
|
+
icon?: string | {
|
|
462
|
+
name: string;
|
|
463
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
464
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
465
|
+
} | undefined;
|
|
466
|
+
label?: string | undefined;
|
|
467
|
+
})[] | undefined;
|
|
329
468
|
}>>;
|
|
330
469
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
331
470
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -1703,16 +1842,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1703
1842
|
} | {
|
|
1704
1843
|
type: "github";
|
|
1705
1844
|
href: string;
|
|
1845
|
+
label?: string | undefined;
|
|
1846
|
+
} | {
|
|
1847
|
+
type: "discord";
|
|
1848
|
+
href: string;
|
|
1849
|
+
label?: string | undefined;
|
|
1706
1850
|
} | undefined;
|
|
1707
|
-
links?: {
|
|
1851
|
+
links?: ({
|
|
1708
1852
|
href: string;
|
|
1709
1853
|
label: string;
|
|
1854
|
+
type?: undefined;
|
|
1710
1855
|
icon?: string | {
|
|
1711
1856
|
name: string;
|
|
1712
1857
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1713
1858
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1714
1859
|
} | undefined;
|
|
1715
|
-
}
|
|
1860
|
+
} | {
|
|
1861
|
+
type: "github";
|
|
1862
|
+
href: string;
|
|
1863
|
+
icon?: string | {
|
|
1864
|
+
name: string;
|
|
1865
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1866
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1867
|
+
} | undefined;
|
|
1868
|
+
label?: string | undefined;
|
|
1869
|
+
} | {
|
|
1870
|
+
type: "discord";
|
|
1871
|
+
href: string;
|
|
1872
|
+
icon?: string | {
|
|
1873
|
+
name: string;
|
|
1874
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1875
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1876
|
+
} | undefined;
|
|
1877
|
+
label?: string | undefined;
|
|
1878
|
+
})[] | undefined;
|
|
1716
1879
|
} | undefined;
|
|
1717
1880
|
icons?: {
|
|
1718
1881
|
library: "fontawesome" | "lucide";
|
|
@@ -2025,16 +2188,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2025
2188
|
} | {
|
|
2026
2189
|
type: "github";
|
|
2027
2190
|
href: string;
|
|
2191
|
+
label?: string | undefined;
|
|
2192
|
+
} | {
|
|
2193
|
+
type: "discord";
|
|
2194
|
+
href: string;
|
|
2195
|
+
label?: string | undefined;
|
|
2028
2196
|
} | undefined;
|
|
2029
|
-
links?: {
|
|
2197
|
+
links?: ({
|
|
2030
2198
|
href: string;
|
|
2031
2199
|
label: string;
|
|
2200
|
+
type?: undefined;
|
|
2032
2201
|
icon?: string | {
|
|
2033
2202
|
name: string;
|
|
2034
2203
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2035
2204
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2036
2205
|
} | undefined;
|
|
2037
|
-
}
|
|
2206
|
+
} | {
|
|
2207
|
+
type: "github";
|
|
2208
|
+
href: string;
|
|
2209
|
+
icon?: string | {
|
|
2210
|
+
name: string;
|
|
2211
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2212
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2213
|
+
} | undefined;
|
|
2214
|
+
label?: string | undefined;
|
|
2215
|
+
} | {
|
|
2216
|
+
type: "discord";
|
|
2217
|
+
href: string;
|
|
2218
|
+
icon?: string | {
|
|
2219
|
+
name: string;
|
|
2220
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2221
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
label?: string | undefined;
|
|
2224
|
+
})[] | undefined;
|
|
2038
2225
|
} | undefined;
|
|
2039
2226
|
icons?: {
|
|
2040
2227
|
library: "fontawesome" | "lucide";
|
|
@@ -2320,8 +2507,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2320
2507
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
2321
2508
|
}>>;
|
|
2322
2509
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
2323
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2324
|
-
label: z.ZodString;
|
|
2510
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2325
2511
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2326
2512
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2327
2513
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2336,9 +2522,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2336
2522
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2337
2523
|
}>]>>;
|
|
2338
2524
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2339
|
-
},
|
|
2525
|
+
}, {
|
|
2526
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2527
|
+
type: z.ZodLiteral<"github">;
|
|
2528
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2529
|
+
type: "github";
|
|
2530
|
+
href: string;
|
|
2531
|
+
icon?: string | {
|
|
2532
|
+
name: string;
|
|
2533
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2534
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2535
|
+
} | undefined;
|
|
2536
|
+
label?: string | undefined;
|
|
2537
|
+
}, {
|
|
2538
|
+
type: "github";
|
|
2539
|
+
href: string;
|
|
2540
|
+
icon?: string | {
|
|
2541
|
+
name: string;
|
|
2542
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2543
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2544
|
+
} | undefined;
|
|
2545
|
+
label?: string | undefined;
|
|
2546
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2547
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2548
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2549
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2550
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2551
|
+
}, "strip", z.ZodTypeAny, {
|
|
2552
|
+
name: string;
|
|
2553
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2554
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2555
|
+
}, {
|
|
2556
|
+
name: string;
|
|
2557
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2558
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2559
|
+
}>]>>;
|
|
2560
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2561
|
+
}, {
|
|
2562
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2563
|
+
type: z.ZodLiteral<"discord">;
|
|
2564
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2565
|
+
type: "discord";
|
|
2566
|
+
href: string;
|
|
2567
|
+
icon?: string | {
|
|
2568
|
+
name: string;
|
|
2569
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2570
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2571
|
+
} | undefined;
|
|
2572
|
+
label?: string | undefined;
|
|
2573
|
+
}, {
|
|
2574
|
+
type: "discord";
|
|
2575
|
+
href: string;
|
|
2576
|
+
icon?: string | {
|
|
2577
|
+
name: string;
|
|
2578
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2579
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2580
|
+
} | undefined;
|
|
2581
|
+
label?: string | undefined;
|
|
2582
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2583
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2584
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2585
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2586
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2587
|
+
}, "strip", z.ZodTypeAny, {
|
|
2588
|
+
name: string;
|
|
2589
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2590
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2591
|
+
}, {
|
|
2592
|
+
name: string;
|
|
2593
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2594
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2595
|
+
}>]>>;
|
|
2596
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2597
|
+
}, {
|
|
2598
|
+
label: z.ZodString;
|
|
2599
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
2600
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2340
2601
|
href: string;
|
|
2341
2602
|
label: string;
|
|
2603
|
+
type?: undefined;
|
|
2342
2604
|
icon?: string | {
|
|
2343
2605
|
name: string;
|
|
2344
2606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -2347,12 +2609,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2347
2609
|
}, {
|
|
2348
2610
|
href: string;
|
|
2349
2611
|
label: string;
|
|
2612
|
+
type?: undefined;
|
|
2350
2613
|
icon?: string | {
|
|
2351
2614
|
name: string;
|
|
2352
2615
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2353
2616
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2354
2617
|
} | undefined;
|
|
2355
|
-
}>, "many">>;
|
|
2618
|
+
}>]>, "many">>;
|
|
2356
2619
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2357
2620
|
type: z.ZodLiteral<"button">;
|
|
2358
2621
|
label: z.ZodString;
|
|
@@ -2367,13 +2630,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2367
2630
|
label: string;
|
|
2368
2631
|
}>, z.ZodObject<{
|
|
2369
2632
|
type: z.ZodLiteral<"github">;
|
|
2633
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2370
2634
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2371
2635
|
}, "strip", z.ZodTypeAny, {
|
|
2372
2636
|
type: "github";
|
|
2373
2637
|
href: string;
|
|
2638
|
+
label?: string | undefined;
|
|
2374
2639
|
}, {
|
|
2375
2640
|
type: "github";
|
|
2376
2641
|
href: string;
|
|
2642
|
+
label?: string | undefined;
|
|
2643
|
+
}>, z.ZodObject<{
|
|
2644
|
+
type: z.ZodLiteral<"discord">;
|
|
2645
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2646
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2647
|
+
}, "strip", z.ZodTypeAny, {
|
|
2648
|
+
type: "discord";
|
|
2649
|
+
href: string;
|
|
2650
|
+
label?: string | undefined;
|
|
2651
|
+
}, {
|
|
2652
|
+
type: "discord";
|
|
2653
|
+
href: string;
|
|
2654
|
+
label?: string | undefined;
|
|
2377
2655
|
}>]>>;
|
|
2378
2656
|
}, "strip", z.ZodTypeAny, {
|
|
2379
2657
|
primary?: {
|
|
@@ -2383,16 +2661,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2383
2661
|
} | {
|
|
2384
2662
|
type: "github";
|
|
2385
2663
|
href: string;
|
|
2664
|
+
label?: string | undefined;
|
|
2665
|
+
} | {
|
|
2666
|
+
type: "discord";
|
|
2667
|
+
href: string;
|
|
2668
|
+
label?: string | undefined;
|
|
2386
2669
|
} | undefined;
|
|
2387
|
-
links?: {
|
|
2670
|
+
links?: ({
|
|
2388
2671
|
href: string;
|
|
2389
2672
|
label: string;
|
|
2673
|
+
type?: undefined;
|
|
2390
2674
|
icon?: string | {
|
|
2391
2675
|
name: string;
|
|
2392
2676
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2393
2677
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2394
2678
|
} | undefined;
|
|
2395
|
-
}
|
|
2679
|
+
} | {
|
|
2680
|
+
type: "github";
|
|
2681
|
+
href: string;
|
|
2682
|
+
icon?: string | {
|
|
2683
|
+
name: string;
|
|
2684
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2685
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2686
|
+
} | undefined;
|
|
2687
|
+
label?: string | undefined;
|
|
2688
|
+
} | {
|
|
2689
|
+
type: "discord";
|
|
2690
|
+
href: string;
|
|
2691
|
+
icon?: string | {
|
|
2692
|
+
name: string;
|
|
2693
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2694
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2695
|
+
} | undefined;
|
|
2696
|
+
label?: string | undefined;
|
|
2697
|
+
})[] | undefined;
|
|
2396
2698
|
}, {
|
|
2397
2699
|
primary?: {
|
|
2398
2700
|
type: "button";
|
|
@@ -2401,21 +2703,45 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2401
2703
|
} | {
|
|
2402
2704
|
type: "github";
|
|
2403
2705
|
href: string;
|
|
2706
|
+
label?: string | undefined;
|
|
2707
|
+
} | {
|
|
2708
|
+
type: "discord";
|
|
2709
|
+
href: string;
|
|
2710
|
+
label?: string | undefined;
|
|
2404
2711
|
} | undefined;
|
|
2405
|
-
links?: {
|
|
2712
|
+
links?: ({
|
|
2406
2713
|
href: string;
|
|
2407
2714
|
label: string;
|
|
2715
|
+
type?: undefined;
|
|
2408
2716
|
icon?: string | {
|
|
2409
2717
|
name: string;
|
|
2410
2718
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2411
2719
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2412
2720
|
} | undefined;
|
|
2413
|
-
}
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2721
|
+
} | {
|
|
2722
|
+
type: "github";
|
|
2723
|
+
href: string;
|
|
2724
|
+
icon?: string | {
|
|
2725
|
+
name: string;
|
|
2726
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2727
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2728
|
+
} | undefined;
|
|
2729
|
+
label?: string | undefined;
|
|
2730
|
+
} | {
|
|
2731
|
+
type: "discord";
|
|
2732
|
+
href: string;
|
|
2733
|
+
icon?: string | {
|
|
2734
|
+
name: string;
|
|
2735
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2736
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2737
|
+
} | undefined;
|
|
2738
|
+
label?: string | undefined;
|
|
2739
|
+
})[] | undefined;
|
|
2740
|
+
}>>;
|
|
2741
|
+
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
2742
|
+
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
2743
|
+
}, {
|
|
2744
|
+
products: z.ZodArray<z.ZodType<import("./properties/navigation/divisionNav.js").ProductNavigation<"default">, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").ProductNavigation<"default">>, "many">;
|
|
2419
2745
|
}>, "strip", z.ZodTypeAny, {
|
|
2420
2746
|
products: import("./properties/navigation/divisionNav.js").ProductNavigation<"default">[];
|
|
2421
2747
|
global?: import("./properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
@@ -3788,16 +4114,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3788
4114
|
} | {
|
|
3789
4115
|
type: "github";
|
|
3790
4116
|
href: string;
|
|
4117
|
+
label?: string | undefined;
|
|
4118
|
+
} | {
|
|
4119
|
+
type: "discord";
|
|
4120
|
+
href: string;
|
|
4121
|
+
label?: string | undefined;
|
|
3791
4122
|
} | undefined;
|
|
3792
|
-
links?: {
|
|
4123
|
+
links?: ({
|
|
3793
4124
|
href: string;
|
|
3794
4125
|
label: string;
|
|
4126
|
+
type?: undefined;
|
|
3795
4127
|
icon?: string | {
|
|
3796
4128
|
name: string;
|
|
3797
4129
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3798
4130
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3799
4131
|
} | undefined;
|
|
3800
|
-
}
|
|
4132
|
+
} | {
|
|
4133
|
+
type: "github";
|
|
4134
|
+
href: string;
|
|
4135
|
+
icon?: string | {
|
|
4136
|
+
name: string;
|
|
4137
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4138
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4139
|
+
} | undefined;
|
|
4140
|
+
label?: string | undefined;
|
|
4141
|
+
} | {
|
|
4142
|
+
type: "discord";
|
|
4143
|
+
href: string;
|
|
4144
|
+
icon?: string | {
|
|
4145
|
+
name: string;
|
|
4146
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4147
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4148
|
+
} | undefined;
|
|
4149
|
+
label?: string | undefined;
|
|
4150
|
+
})[] | undefined;
|
|
3801
4151
|
} | undefined;
|
|
3802
4152
|
icons?: {
|
|
3803
4153
|
library: "fontawesome" | "lucide";
|
|
@@ -4110,16 +4460,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4110
4460
|
} | {
|
|
4111
4461
|
type: "github";
|
|
4112
4462
|
href: string;
|
|
4463
|
+
label?: string | undefined;
|
|
4464
|
+
} | {
|
|
4465
|
+
type: "discord";
|
|
4466
|
+
href: string;
|
|
4467
|
+
label?: string | undefined;
|
|
4113
4468
|
} | undefined;
|
|
4114
|
-
links?: {
|
|
4469
|
+
links?: ({
|
|
4115
4470
|
href: string;
|
|
4116
4471
|
label: string;
|
|
4472
|
+
type?: undefined;
|
|
4117
4473
|
icon?: string | {
|
|
4118
4474
|
name: string;
|
|
4119
4475
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4120
4476
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4121
4477
|
} | undefined;
|
|
4122
|
-
}
|
|
4478
|
+
} | {
|
|
4479
|
+
type: "github";
|
|
4480
|
+
href: string;
|
|
4481
|
+
icon?: string | {
|
|
4482
|
+
name: string;
|
|
4483
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4484
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4485
|
+
} | undefined;
|
|
4486
|
+
label?: string | undefined;
|
|
4487
|
+
} | {
|
|
4488
|
+
type: "discord";
|
|
4489
|
+
href: string;
|
|
4490
|
+
icon?: string | {
|
|
4491
|
+
name: string;
|
|
4492
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4493
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4494
|
+
} | undefined;
|
|
4495
|
+
label?: string | undefined;
|
|
4496
|
+
})[] | undefined;
|
|
4123
4497
|
} | undefined;
|
|
4124
4498
|
icons?: {
|
|
4125
4499
|
library: "fontawesome" | "lucide";
|
|
@@ -4405,8 +4779,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4405
4779
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
4406
4780
|
}>>;
|
|
4407
4781
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
4408
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4409
|
-
label: z.ZodString;
|
|
4782
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4410
4783
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4411
4784
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4412
4785
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4421,9 +4794,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4421
4794
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4422
4795
|
}>]>>;
|
|
4423
4796
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4424
|
-
},
|
|
4797
|
+
}, {
|
|
4798
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4799
|
+
type: z.ZodLiteral<"github">;
|
|
4800
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4801
|
+
type: "github";
|
|
4802
|
+
href: string;
|
|
4803
|
+
icon?: string | {
|
|
4804
|
+
name: string;
|
|
4805
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4806
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4807
|
+
} | undefined;
|
|
4808
|
+
label?: string | undefined;
|
|
4809
|
+
}, {
|
|
4810
|
+
type: "github";
|
|
4811
|
+
href: string;
|
|
4812
|
+
icon?: string | {
|
|
4813
|
+
name: string;
|
|
4814
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4815
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4816
|
+
} | undefined;
|
|
4817
|
+
label?: string | undefined;
|
|
4818
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4819
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4820
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4821
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4822
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
4823
|
+
}, "strip", z.ZodTypeAny, {
|
|
4824
|
+
name: string;
|
|
4825
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4826
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4827
|
+
}, {
|
|
4828
|
+
name: string;
|
|
4829
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4830
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4831
|
+
}>]>>;
|
|
4832
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4833
|
+
}, {
|
|
4834
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4835
|
+
type: z.ZodLiteral<"discord">;
|
|
4836
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4837
|
+
type: "discord";
|
|
4838
|
+
href: string;
|
|
4839
|
+
icon?: string | {
|
|
4840
|
+
name: string;
|
|
4841
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4842
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4843
|
+
} | undefined;
|
|
4844
|
+
label?: string | undefined;
|
|
4845
|
+
}, {
|
|
4846
|
+
type: "discord";
|
|
4847
|
+
href: string;
|
|
4848
|
+
icon?: string | {
|
|
4849
|
+
name: string;
|
|
4850
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4851
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4852
|
+
} | undefined;
|
|
4853
|
+
label?: string | undefined;
|
|
4854
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4855
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4856
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4857
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4858
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
4859
|
+
}, "strip", z.ZodTypeAny, {
|
|
4860
|
+
name: string;
|
|
4861
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4862
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4863
|
+
}, {
|
|
4864
|
+
name: string;
|
|
4865
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4866
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4867
|
+
}>]>>;
|
|
4868
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4869
|
+
}, {
|
|
4870
|
+
label: z.ZodString;
|
|
4871
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
4872
|
+
}>, "strip", z.ZodTypeAny, {
|
|
4425
4873
|
href: string;
|
|
4426
4874
|
label: string;
|
|
4875
|
+
type?: undefined;
|
|
4427
4876
|
icon?: string | {
|
|
4428
4877
|
name: string;
|
|
4429
4878
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -4432,12 +4881,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4432
4881
|
}, {
|
|
4433
4882
|
href: string;
|
|
4434
4883
|
label: string;
|
|
4884
|
+
type?: undefined;
|
|
4435
4885
|
icon?: string | {
|
|
4436
4886
|
name: string;
|
|
4437
4887
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4438
4888
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4439
4889
|
} | undefined;
|
|
4440
|
-
}>, "many">>;
|
|
4890
|
+
}>]>, "many">>;
|
|
4441
4891
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4442
4892
|
type: z.ZodLiteral<"button">;
|
|
4443
4893
|
label: z.ZodString;
|
|
@@ -4452,13 +4902,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4452
4902
|
label: string;
|
|
4453
4903
|
}>, z.ZodObject<{
|
|
4454
4904
|
type: z.ZodLiteral<"github">;
|
|
4905
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4455
4906
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4456
4907
|
}, "strip", z.ZodTypeAny, {
|
|
4457
4908
|
type: "github";
|
|
4458
4909
|
href: string;
|
|
4910
|
+
label?: string | undefined;
|
|
4459
4911
|
}, {
|
|
4460
4912
|
type: "github";
|
|
4461
4913
|
href: string;
|
|
4914
|
+
label?: string | undefined;
|
|
4915
|
+
}>, z.ZodObject<{
|
|
4916
|
+
type: z.ZodLiteral<"discord">;
|
|
4917
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4918
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4919
|
+
}, "strip", z.ZodTypeAny, {
|
|
4920
|
+
type: "discord";
|
|
4921
|
+
href: string;
|
|
4922
|
+
label?: string | undefined;
|
|
4923
|
+
}, {
|
|
4924
|
+
type: "discord";
|
|
4925
|
+
href: string;
|
|
4926
|
+
label?: string | undefined;
|
|
4462
4927
|
}>]>>;
|
|
4463
4928
|
}, "strip", z.ZodTypeAny, {
|
|
4464
4929
|
primary?: {
|
|
@@ -4468,16 +4933,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4468
4933
|
} | {
|
|
4469
4934
|
type: "github";
|
|
4470
4935
|
href: string;
|
|
4936
|
+
label?: string | undefined;
|
|
4937
|
+
} | {
|
|
4938
|
+
type: "discord";
|
|
4939
|
+
href: string;
|
|
4940
|
+
label?: string | undefined;
|
|
4471
4941
|
} | undefined;
|
|
4472
|
-
links?: {
|
|
4942
|
+
links?: ({
|
|
4473
4943
|
href: string;
|
|
4474
4944
|
label: string;
|
|
4945
|
+
type?: undefined;
|
|
4475
4946
|
icon?: string | {
|
|
4476
4947
|
name: string;
|
|
4477
4948
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4478
4949
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4479
4950
|
} | undefined;
|
|
4480
|
-
}
|
|
4951
|
+
} | {
|
|
4952
|
+
type: "github";
|
|
4953
|
+
href: string;
|
|
4954
|
+
icon?: string | {
|
|
4955
|
+
name: string;
|
|
4956
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4957
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4958
|
+
} | undefined;
|
|
4959
|
+
label?: string | undefined;
|
|
4960
|
+
} | {
|
|
4961
|
+
type: "discord";
|
|
4962
|
+
href: string;
|
|
4963
|
+
icon?: string | {
|
|
4964
|
+
name: string;
|
|
4965
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4966
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4967
|
+
} | undefined;
|
|
4968
|
+
label?: string | undefined;
|
|
4969
|
+
})[] | undefined;
|
|
4481
4970
|
}, {
|
|
4482
4971
|
primary?: {
|
|
4483
4972
|
type: "button";
|
|
@@ -4486,16 +4975,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4486
4975
|
} | {
|
|
4487
4976
|
type: "github";
|
|
4488
4977
|
href: string;
|
|
4978
|
+
label?: string | undefined;
|
|
4979
|
+
} | {
|
|
4980
|
+
type: "discord";
|
|
4981
|
+
href: string;
|
|
4982
|
+
label?: string | undefined;
|
|
4489
4983
|
} | undefined;
|
|
4490
|
-
links?: {
|
|
4984
|
+
links?: ({
|
|
4491
4985
|
href: string;
|
|
4492
4986
|
label: string;
|
|
4987
|
+
type?: undefined;
|
|
4493
4988
|
icon?: string | {
|
|
4494
4989
|
name: string;
|
|
4495
4990
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4496
4991
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4497
4992
|
} | undefined;
|
|
4498
|
-
}
|
|
4993
|
+
} | {
|
|
4994
|
+
type: "github";
|
|
4995
|
+
href: string;
|
|
4996
|
+
icon?: string | {
|
|
4997
|
+
name: string;
|
|
4998
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4999
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5000
|
+
} | undefined;
|
|
5001
|
+
label?: string | undefined;
|
|
5002
|
+
} | {
|
|
5003
|
+
type: "discord";
|
|
5004
|
+
href: string;
|
|
5005
|
+
icon?: string | {
|
|
5006
|
+
name: string;
|
|
5007
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5008
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5009
|
+
} | undefined;
|
|
5010
|
+
label?: string | undefined;
|
|
5011
|
+
})[] | undefined;
|
|
4499
5012
|
}>>;
|
|
4500
5013
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
4501
5014
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -5873,16 +6386,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5873
6386
|
} | {
|
|
5874
6387
|
type: "github";
|
|
5875
6388
|
href: string;
|
|
6389
|
+
label?: string | undefined;
|
|
6390
|
+
} | {
|
|
6391
|
+
type: "discord";
|
|
6392
|
+
href: string;
|
|
6393
|
+
label?: string | undefined;
|
|
5876
6394
|
} | undefined;
|
|
5877
|
-
links?: {
|
|
6395
|
+
links?: ({
|
|
5878
6396
|
href: string;
|
|
5879
6397
|
label: string;
|
|
6398
|
+
type?: undefined;
|
|
5880
6399
|
icon?: string | {
|
|
5881
6400
|
name: string;
|
|
5882
6401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5883
6402
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5884
6403
|
} | undefined;
|
|
5885
|
-
}
|
|
6404
|
+
} | {
|
|
6405
|
+
type: "github";
|
|
6406
|
+
href: string;
|
|
6407
|
+
icon?: string | {
|
|
6408
|
+
name: string;
|
|
6409
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6410
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6411
|
+
} | undefined;
|
|
6412
|
+
label?: string | undefined;
|
|
6413
|
+
} | {
|
|
6414
|
+
type: "discord";
|
|
6415
|
+
href: string;
|
|
6416
|
+
icon?: string | {
|
|
6417
|
+
name: string;
|
|
6418
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6419
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6420
|
+
} | undefined;
|
|
6421
|
+
label?: string | undefined;
|
|
6422
|
+
})[] | undefined;
|
|
5886
6423
|
} | undefined;
|
|
5887
6424
|
icons?: {
|
|
5888
6425
|
library: "fontawesome" | "lucide";
|
|
@@ -6195,16 +6732,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6195
6732
|
} | {
|
|
6196
6733
|
type: "github";
|
|
6197
6734
|
href: string;
|
|
6735
|
+
label?: string | undefined;
|
|
6736
|
+
} | {
|
|
6737
|
+
type: "discord";
|
|
6738
|
+
href: string;
|
|
6739
|
+
label?: string | undefined;
|
|
6198
6740
|
} | undefined;
|
|
6199
|
-
links?: {
|
|
6741
|
+
links?: ({
|
|
6200
6742
|
href: string;
|
|
6201
6743
|
label: string;
|
|
6744
|
+
type?: undefined;
|
|
6202
6745
|
icon?: string | {
|
|
6203
6746
|
name: string;
|
|
6204
6747
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6205
6748
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6206
6749
|
} | undefined;
|
|
6207
|
-
}
|
|
6750
|
+
} | {
|
|
6751
|
+
type: "github";
|
|
6752
|
+
href: string;
|
|
6753
|
+
icon?: string | {
|
|
6754
|
+
name: string;
|
|
6755
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6756
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6757
|
+
} | undefined;
|
|
6758
|
+
label?: string | undefined;
|
|
6759
|
+
} | {
|
|
6760
|
+
type: "discord";
|
|
6761
|
+
href: string;
|
|
6762
|
+
icon?: string | {
|
|
6763
|
+
name: string;
|
|
6764
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6765
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6766
|
+
} | undefined;
|
|
6767
|
+
label?: string | undefined;
|
|
6768
|
+
})[] | undefined;
|
|
6208
6769
|
} | undefined;
|
|
6209
6770
|
icons?: {
|
|
6210
6771
|
library: "fontawesome" | "lucide";
|
|
@@ -6490,8 +7051,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6490
7051
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
6491
7052
|
}>>;
|
|
6492
7053
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
6493
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6494
|
-
label: z.ZodString;
|
|
7054
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6495
7055
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6496
7056
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6497
7057
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6506,9 +7066,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6506
7066
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6507
7067
|
}>]>>;
|
|
6508
7068
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
6509
|
-
},
|
|
7069
|
+
}, {
|
|
7070
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7071
|
+
type: z.ZodLiteral<"github">;
|
|
7072
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7073
|
+
type: "github";
|
|
7074
|
+
href: string;
|
|
7075
|
+
icon?: string | {
|
|
7076
|
+
name: string;
|
|
7077
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7078
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7079
|
+
} | undefined;
|
|
7080
|
+
label?: string | undefined;
|
|
7081
|
+
}, {
|
|
7082
|
+
type: "github";
|
|
7083
|
+
href: string;
|
|
7084
|
+
icon?: string | {
|
|
7085
|
+
name: string;
|
|
7086
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7087
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7088
|
+
} | undefined;
|
|
7089
|
+
label?: string | undefined;
|
|
7090
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7091
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7092
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7093
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7094
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7095
|
+
}, "strip", z.ZodTypeAny, {
|
|
7096
|
+
name: string;
|
|
7097
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7098
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7099
|
+
}, {
|
|
7100
|
+
name: string;
|
|
7101
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7102
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7103
|
+
}>]>>;
|
|
7104
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
7105
|
+
}, {
|
|
7106
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7107
|
+
type: z.ZodLiteral<"discord">;
|
|
7108
|
+
}>, "strip", z.ZodTypeAny, {
|
|
7109
|
+
type: "discord";
|
|
7110
|
+
href: string;
|
|
7111
|
+
icon?: string | {
|
|
7112
|
+
name: string;
|
|
7113
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7114
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7115
|
+
} | undefined;
|
|
7116
|
+
label?: string | undefined;
|
|
7117
|
+
}, {
|
|
7118
|
+
type: "discord";
|
|
7119
|
+
href: string;
|
|
7120
|
+
icon?: string | {
|
|
7121
|
+
name: string;
|
|
7122
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7123
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7124
|
+
} | undefined;
|
|
7125
|
+
label?: string | undefined;
|
|
7126
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7127
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7128
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7129
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7130
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7131
|
+
}, "strip", z.ZodTypeAny, {
|
|
7132
|
+
name: string;
|
|
7133
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7134
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7135
|
+
}, {
|
|
7136
|
+
name: string;
|
|
7137
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7138
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7139
|
+
}>]>>;
|
|
7140
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
7141
|
+
}, {
|
|
7142
|
+
label: z.ZodString;
|
|
7143
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
7144
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6510
7145
|
href: string;
|
|
6511
7146
|
label: string;
|
|
7147
|
+
type?: undefined;
|
|
6512
7148
|
icon?: string | {
|
|
6513
7149
|
name: string;
|
|
6514
7150
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -6517,12 +7153,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6517
7153
|
}, {
|
|
6518
7154
|
href: string;
|
|
6519
7155
|
label: string;
|
|
7156
|
+
type?: undefined;
|
|
6520
7157
|
icon?: string | {
|
|
6521
7158
|
name: string;
|
|
6522
7159
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6523
7160
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6524
7161
|
} | undefined;
|
|
6525
|
-
}>, "many">>;
|
|
7162
|
+
}>]>, "many">>;
|
|
6526
7163
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6527
7164
|
type: z.ZodLiteral<"button">;
|
|
6528
7165
|
label: z.ZodString;
|
|
@@ -6537,13 +7174,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6537
7174
|
label: string;
|
|
6538
7175
|
}>, z.ZodObject<{
|
|
6539
7176
|
type: z.ZodLiteral<"github">;
|
|
7177
|
+
label: z.ZodOptional<z.ZodString>;
|
|
6540
7178
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
6541
7179
|
}, "strip", z.ZodTypeAny, {
|
|
6542
7180
|
type: "github";
|
|
6543
7181
|
href: string;
|
|
7182
|
+
label?: string | undefined;
|
|
6544
7183
|
}, {
|
|
6545
7184
|
type: "github";
|
|
6546
7185
|
href: string;
|
|
7186
|
+
label?: string | undefined;
|
|
7187
|
+
}>, z.ZodObject<{
|
|
7188
|
+
type: z.ZodLiteral<"discord">;
|
|
7189
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7190
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
7191
|
+
}, "strip", z.ZodTypeAny, {
|
|
7192
|
+
type: "discord";
|
|
7193
|
+
href: string;
|
|
7194
|
+
label?: string | undefined;
|
|
7195
|
+
}, {
|
|
7196
|
+
type: "discord";
|
|
7197
|
+
href: string;
|
|
7198
|
+
label?: string | undefined;
|
|
6547
7199
|
}>]>>;
|
|
6548
7200
|
}, "strip", z.ZodTypeAny, {
|
|
6549
7201
|
primary?: {
|
|
@@ -6553,16 +7205,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6553
7205
|
} | {
|
|
6554
7206
|
type: "github";
|
|
6555
7207
|
href: string;
|
|
7208
|
+
label?: string | undefined;
|
|
7209
|
+
} | {
|
|
7210
|
+
type: "discord";
|
|
7211
|
+
href: string;
|
|
7212
|
+
label?: string | undefined;
|
|
6556
7213
|
} | undefined;
|
|
6557
|
-
links?: {
|
|
7214
|
+
links?: ({
|
|
6558
7215
|
href: string;
|
|
6559
7216
|
label: string;
|
|
7217
|
+
type?: undefined;
|
|
6560
7218
|
icon?: string | {
|
|
6561
7219
|
name: string;
|
|
6562
7220
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6563
7221
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6564
7222
|
} | undefined;
|
|
6565
|
-
}
|
|
7223
|
+
} | {
|
|
7224
|
+
type: "github";
|
|
7225
|
+
href: string;
|
|
7226
|
+
icon?: string | {
|
|
7227
|
+
name: string;
|
|
7228
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7229
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7230
|
+
} | undefined;
|
|
7231
|
+
label?: string | undefined;
|
|
7232
|
+
} | {
|
|
7233
|
+
type: "discord";
|
|
7234
|
+
href: string;
|
|
7235
|
+
icon?: string | {
|
|
7236
|
+
name: string;
|
|
7237
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7238
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7239
|
+
} | undefined;
|
|
7240
|
+
label?: string | undefined;
|
|
7241
|
+
})[] | undefined;
|
|
6566
7242
|
}, {
|
|
6567
7243
|
primary?: {
|
|
6568
7244
|
type: "button";
|
|
@@ -6571,16 +7247,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6571
7247
|
} | {
|
|
6572
7248
|
type: "github";
|
|
6573
7249
|
href: string;
|
|
7250
|
+
label?: string | undefined;
|
|
7251
|
+
} | {
|
|
7252
|
+
type: "discord";
|
|
7253
|
+
href: string;
|
|
7254
|
+
label?: string | undefined;
|
|
6574
7255
|
} | undefined;
|
|
6575
|
-
links?: {
|
|
7256
|
+
links?: ({
|
|
6576
7257
|
href: string;
|
|
6577
7258
|
label: string;
|
|
7259
|
+
type?: undefined;
|
|
6578
7260
|
icon?: string | {
|
|
6579
7261
|
name: string;
|
|
6580
7262
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6581
7263
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6582
7264
|
} | undefined;
|
|
6583
|
-
}
|
|
7265
|
+
} | {
|
|
7266
|
+
type: "github";
|
|
7267
|
+
href: string;
|
|
7268
|
+
icon?: string | {
|
|
7269
|
+
name: string;
|
|
7270
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7271
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7272
|
+
} | undefined;
|
|
7273
|
+
label?: string | undefined;
|
|
7274
|
+
} | {
|
|
7275
|
+
type: "discord";
|
|
7276
|
+
href: string;
|
|
7277
|
+
icon?: string | {
|
|
7278
|
+
name: string;
|
|
7279
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7280
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7281
|
+
} | undefined;
|
|
7282
|
+
label?: string | undefined;
|
|
7283
|
+
})[] | undefined;
|
|
6584
7284
|
}>>;
|
|
6585
7285
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
6586
7286
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -7958,16 +8658,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7958
8658
|
} | {
|
|
7959
8659
|
type: "github";
|
|
7960
8660
|
href: string;
|
|
8661
|
+
label?: string | undefined;
|
|
8662
|
+
} | {
|
|
8663
|
+
type: "discord";
|
|
8664
|
+
href: string;
|
|
8665
|
+
label?: string | undefined;
|
|
7961
8666
|
} | undefined;
|
|
7962
|
-
links?: {
|
|
8667
|
+
links?: ({
|
|
7963
8668
|
href: string;
|
|
7964
8669
|
label: string;
|
|
8670
|
+
type?: undefined;
|
|
7965
8671
|
icon?: string | {
|
|
7966
8672
|
name: string;
|
|
7967
8673
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7968
8674
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7969
8675
|
} | undefined;
|
|
7970
|
-
}
|
|
8676
|
+
} | {
|
|
8677
|
+
type: "github";
|
|
8678
|
+
href: string;
|
|
8679
|
+
icon?: string | {
|
|
8680
|
+
name: string;
|
|
8681
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8682
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8683
|
+
} | undefined;
|
|
8684
|
+
label?: string | undefined;
|
|
8685
|
+
} | {
|
|
8686
|
+
type: "discord";
|
|
8687
|
+
href: string;
|
|
8688
|
+
icon?: string | {
|
|
8689
|
+
name: string;
|
|
8690
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8691
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8692
|
+
} | undefined;
|
|
8693
|
+
label?: string | undefined;
|
|
8694
|
+
})[] | undefined;
|
|
7971
8695
|
} | undefined;
|
|
7972
8696
|
icons?: {
|
|
7973
8697
|
library: "fontawesome" | "lucide";
|
|
@@ -8280,16 +9004,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8280
9004
|
} | {
|
|
8281
9005
|
type: "github";
|
|
8282
9006
|
href: string;
|
|
9007
|
+
label?: string | undefined;
|
|
9008
|
+
} | {
|
|
9009
|
+
type: "discord";
|
|
9010
|
+
href: string;
|
|
9011
|
+
label?: string | undefined;
|
|
8283
9012
|
} | undefined;
|
|
8284
|
-
links?: {
|
|
9013
|
+
links?: ({
|
|
8285
9014
|
href: string;
|
|
8286
9015
|
label: string;
|
|
9016
|
+
type?: undefined;
|
|
8287
9017
|
icon?: string | {
|
|
8288
9018
|
name: string;
|
|
8289
9019
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8290
9020
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8291
9021
|
} | undefined;
|
|
8292
|
-
}
|
|
9022
|
+
} | {
|
|
9023
|
+
type: "github";
|
|
9024
|
+
href: string;
|
|
9025
|
+
icon?: string | {
|
|
9026
|
+
name: string;
|
|
9027
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9028
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9029
|
+
} | undefined;
|
|
9030
|
+
label?: string | undefined;
|
|
9031
|
+
} | {
|
|
9032
|
+
type: "discord";
|
|
9033
|
+
href: string;
|
|
9034
|
+
icon?: string | {
|
|
9035
|
+
name: string;
|
|
9036
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9037
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9038
|
+
} | undefined;
|
|
9039
|
+
label?: string | undefined;
|
|
9040
|
+
})[] | undefined;
|
|
8293
9041
|
} | undefined;
|
|
8294
9042
|
icons?: {
|
|
8295
9043
|
library: "fontawesome" | "lucide";
|
|
@@ -8575,8 +9323,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8575
9323
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
8576
9324
|
}>>;
|
|
8577
9325
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
8578
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8579
|
-
label: z.ZodString;
|
|
9326
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8580
9327
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8581
9328
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
8582
9329
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8591,9 +9338,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8591
9338
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8592
9339
|
}>]>>;
|
|
8593
9340
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
8594
|
-
},
|
|
9341
|
+
}, {
|
|
9342
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9343
|
+
type: z.ZodLiteral<"github">;
|
|
9344
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9345
|
+
type: "github";
|
|
9346
|
+
href: string;
|
|
9347
|
+
icon?: string | {
|
|
9348
|
+
name: string;
|
|
9349
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9350
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9351
|
+
} | undefined;
|
|
9352
|
+
label?: string | undefined;
|
|
9353
|
+
}, {
|
|
9354
|
+
type: "github";
|
|
9355
|
+
href: string;
|
|
9356
|
+
icon?: string | {
|
|
9357
|
+
name: string;
|
|
9358
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9359
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9360
|
+
} | undefined;
|
|
9361
|
+
label?: string | undefined;
|
|
9362
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9363
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9364
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9365
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9366
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9367
|
+
}, "strip", z.ZodTypeAny, {
|
|
9368
|
+
name: string;
|
|
9369
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9370
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9371
|
+
}, {
|
|
9372
|
+
name: string;
|
|
9373
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9374
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9375
|
+
}>]>>;
|
|
9376
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
9377
|
+
}, {
|
|
9378
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9379
|
+
type: z.ZodLiteral<"discord">;
|
|
9380
|
+
}>, "strip", z.ZodTypeAny, {
|
|
9381
|
+
type: "discord";
|
|
9382
|
+
href: string;
|
|
9383
|
+
icon?: string | {
|
|
9384
|
+
name: string;
|
|
9385
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9386
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9387
|
+
} | undefined;
|
|
9388
|
+
label?: string | undefined;
|
|
9389
|
+
}, {
|
|
9390
|
+
type: "discord";
|
|
9391
|
+
href: string;
|
|
9392
|
+
icon?: string | {
|
|
9393
|
+
name: string;
|
|
9394
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9395
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9396
|
+
} | undefined;
|
|
9397
|
+
label?: string | undefined;
|
|
9398
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9399
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9400
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9401
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9402
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9403
|
+
}, "strip", z.ZodTypeAny, {
|
|
9404
|
+
name: string;
|
|
9405
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9406
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9407
|
+
}, {
|
|
9408
|
+
name: string;
|
|
9409
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9410
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9411
|
+
}>]>>;
|
|
9412
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
9413
|
+
}, {
|
|
9414
|
+
label: z.ZodString;
|
|
9415
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
9416
|
+
}>, "strip", z.ZodTypeAny, {
|
|
8595
9417
|
href: string;
|
|
8596
9418
|
label: string;
|
|
9419
|
+
type?: undefined;
|
|
8597
9420
|
icon?: string | {
|
|
8598
9421
|
name: string;
|
|
8599
9422
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -8602,12 +9425,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8602
9425
|
}, {
|
|
8603
9426
|
href: string;
|
|
8604
9427
|
label: string;
|
|
9428
|
+
type?: undefined;
|
|
8605
9429
|
icon?: string | {
|
|
8606
9430
|
name: string;
|
|
8607
9431
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8608
9432
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8609
9433
|
} | undefined;
|
|
8610
|
-
}>, "many">>;
|
|
9434
|
+
}>]>, "many">>;
|
|
8611
9435
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8612
9436
|
type: z.ZodLiteral<"button">;
|
|
8613
9437
|
label: z.ZodString;
|
|
@@ -8622,13 +9446,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8622
9446
|
label: string;
|
|
8623
9447
|
}>, z.ZodObject<{
|
|
8624
9448
|
type: z.ZodLiteral<"github">;
|
|
9449
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8625
9450
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
8626
9451
|
}, "strip", z.ZodTypeAny, {
|
|
8627
9452
|
type: "github";
|
|
8628
9453
|
href: string;
|
|
9454
|
+
label?: string | undefined;
|
|
8629
9455
|
}, {
|
|
8630
9456
|
type: "github";
|
|
8631
9457
|
href: string;
|
|
9458
|
+
label?: string | undefined;
|
|
9459
|
+
}>, z.ZodObject<{
|
|
9460
|
+
type: z.ZodLiteral<"discord">;
|
|
9461
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9462
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
9463
|
+
}, "strip", z.ZodTypeAny, {
|
|
9464
|
+
type: "discord";
|
|
9465
|
+
href: string;
|
|
9466
|
+
label?: string | undefined;
|
|
9467
|
+
}, {
|
|
9468
|
+
type: "discord";
|
|
9469
|
+
href: string;
|
|
9470
|
+
label?: string | undefined;
|
|
8632
9471
|
}>]>>;
|
|
8633
9472
|
}, "strip", z.ZodTypeAny, {
|
|
8634
9473
|
primary?: {
|
|
@@ -8636,36 +9475,84 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8636
9475
|
href: string;
|
|
8637
9476
|
label: string;
|
|
8638
9477
|
} | {
|
|
8639
|
-
type: "github";
|
|
9478
|
+
type: "github";
|
|
9479
|
+
href: string;
|
|
9480
|
+
label?: string | undefined;
|
|
9481
|
+
} | {
|
|
9482
|
+
type: "discord";
|
|
9483
|
+
href: string;
|
|
9484
|
+
label?: string | undefined;
|
|
9485
|
+
} | undefined;
|
|
9486
|
+
links?: ({
|
|
9487
|
+
href: string;
|
|
9488
|
+
label: string;
|
|
9489
|
+
type?: undefined;
|
|
9490
|
+
icon?: string | {
|
|
9491
|
+
name: string;
|
|
9492
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9493
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9494
|
+
} | undefined;
|
|
9495
|
+
} | {
|
|
9496
|
+
type: "github";
|
|
9497
|
+
href: string;
|
|
9498
|
+
icon?: string | {
|
|
9499
|
+
name: string;
|
|
9500
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9501
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9502
|
+
} | undefined;
|
|
9503
|
+
label?: string | undefined;
|
|
9504
|
+
} | {
|
|
9505
|
+
type: "discord";
|
|
9506
|
+
href: string;
|
|
9507
|
+
icon?: string | {
|
|
9508
|
+
name: string;
|
|
9509
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9510
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9511
|
+
} | undefined;
|
|
9512
|
+
label?: string | undefined;
|
|
9513
|
+
})[] | undefined;
|
|
9514
|
+
}, {
|
|
9515
|
+
primary?: {
|
|
9516
|
+
type: "button";
|
|
9517
|
+
href: string;
|
|
9518
|
+
label: string;
|
|
9519
|
+
} | {
|
|
9520
|
+
type: "github";
|
|
9521
|
+
href: string;
|
|
9522
|
+
label?: string | undefined;
|
|
9523
|
+
} | {
|
|
9524
|
+
type: "discord";
|
|
8640
9525
|
href: string;
|
|
9526
|
+
label?: string | undefined;
|
|
8641
9527
|
} | undefined;
|
|
8642
|
-
links?: {
|
|
9528
|
+
links?: ({
|
|
8643
9529
|
href: string;
|
|
8644
9530
|
label: string;
|
|
9531
|
+
type?: undefined;
|
|
8645
9532
|
icon?: string | {
|
|
8646
9533
|
name: string;
|
|
8647
9534
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8648
9535
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8649
9536
|
} | undefined;
|
|
8650
|
-
}[] | undefined;
|
|
8651
|
-
}, {
|
|
8652
|
-
primary?: {
|
|
8653
|
-
type: "button";
|
|
8654
|
-
href: string;
|
|
8655
|
-
label: string;
|
|
8656
9537
|
} | {
|
|
8657
9538
|
type: "github";
|
|
8658
9539
|
href: string;
|
|
8659
|
-
|
|
8660
|
-
|
|
9540
|
+
icon?: string | {
|
|
9541
|
+
name: string;
|
|
9542
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9543
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9544
|
+
} | undefined;
|
|
9545
|
+
label?: string | undefined;
|
|
9546
|
+
} | {
|
|
9547
|
+
type: "discord";
|
|
8661
9548
|
href: string;
|
|
8662
|
-
label: string;
|
|
8663
9549
|
icon?: string | {
|
|
8664
9550
|
name: string;
|
|
8665
9551
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8666
9552
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8667
9553
|
} | undefined;
|
|
8668
|
-
|
|
9554
|
+
label?: string | undefined;
|
|
9555
|
+
})[] | undefined;
|
|
8669
9556
|
}>>;
|
|
8670
9557
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
8671
9558
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -10043,16 +10930,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10043
10930
|
} | {
|
|
10044
10931
|
type: "github";
|
|
10045
10932
|
href: string;
|
|
10933
|
+
label?: string | undefined;
|
|
10934
|
+
} | {
|
|
10935
|
+
type: "discord";
|
|
10936
|
+
href: string;
|
|
10937
|
+
label?: string | undefined;
|
|
10046
10938
|
} | undefined;
|
|
10047
|
-
links?: {
|
|
10939
|
+
links?: ({
|
|
10048
10940
|
href: string;
|
|
10049
10941
|
label: string;
|
|
10942
|
+
type?: undefined;
|
|
10050
10943
|
icon?: string | {
|
|
10051
10944
|
name: string;
|
|
10052
10945
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10053
10946
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10054
10947
|
} | undefined;
|
|
10055
|
-
}
|
|
10948
|
+
} | {
|
|
10949
|
+
type: "github";
|
|
10950
|
+
href: string;
|
|
10951
|
+
icon?: string | {
|
|
10952
|
+
name: string;
|
|
10953
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10954
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10955
|
+
} | undefined;
|
|
10956
|
+
label?: string | undefined;
|
|
10957
|
+
} | {
|
|
10958
|
+
type: "discord";
|
|
10959
|
+
href: string;
|
|
10960
|
+
icon?: string | {
|
|
10961
|
+
name: string;
|
|
10962
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10963
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10964
|
+
} | undefined;
|
|
10965
|
+
label?: string | undefined;
|
|
10966
|
+
})[] | undefined;
|
|
10056
10967
|
} | undefined;
|
|
10057
10968
|
icons?: {
|
|
10058
10969
|
library: "fontawesome" | "lucide";
|
|
@@ -10365,16 +11276,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10365
11276
|
} | {
|
|
10366
11277
|
type: "github";
|
|
10367
11278
|
href: string;
|
|
11279
|
+
label?: string | undefined;
|
|
11280
|
+
} | {
|
|
11281
|
+
type: "discord";
|
|
11282
|
+
href: string;
|
|
11283
|
+
label?: string | undefined;
|
|
10368
11284
|
} | undefined;
|
|
10369
|
-
links?: {
|
|
11285
|
+
links?: ({
|
|
10370
11286
|
href: string;
|
|
10371
11287
|
label: string;
|
|
11288
|
+
type?: undefined;
|
|
10372
11289
|
icon?: string | {
|
|
10373
11290
|
name: string;
|
|
10374
11291
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10375
11292
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10376
11293
|
} | undefined;
|
|
10377
|
-
}
|
|
11294
|
+
} | {
|
|
11295
|
+
type: "github";
|
|
11296
|
+
href: string;
|
|
11297
|
+
icon?: string | {
|
|
11298
|
+
name: string;
|
|
11299
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11300
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11301
|
+
} | undefined;
|
|
11302
|
+
label?: string | undefined;
|
|
11303
|
+
} | {
|
|
11304
|
+
type: "discord";
|
|
11305
|
+
href: string;
|
|
11306
|
+
icon?: string | {
|
|
11307
|
+
name: string;
|
|
11308
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11309
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11310
|
+
} | undefined;
|
|
11311
|
+
label?: string | undefined;
|
|
11312
|
+
})[] | undefined;
|
|
10378
11313
|
} | undefined;
|
|
10379
11314
|
icons?: {
|
|
10380
11315
|
library: "fontawesome" | "lucide";
|
|
@@ -10660,8 +11595,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10660
11595
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
10661
11596
|
}>>;
|
|
10662
11597
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
10663
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10664
|
-
label: z.ZodString;
|
|
11598
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
10665
11599
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
10666
11600
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
10667
11601
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10676,9 +11610,85 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10676
11610
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10677
11611
|
}>]>>;
|
|
10678
11612
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
10679
|
-
},
|
|
11613
|
+
}, {
|
|
11614
|
+
label: z.ZodOptional<z.ZodString>;
|
|
11615
|
+
type: z.ZodLiteral<"github">;
|
|
11616
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11617
|
+
type: "github";
|
|
11618
|
+
href: string;
|
|
11619
|
+
icon?: string | {
|
|
11620
|
+
name: string;
|
|
11621
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11622
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11623
|
+
} | undefined;
|
|
11624
|
+
label?: string | undefined;
|
|
11625
|
+
}, {
|
|
11626
|
+
type: "github";
|
|
11627
|
+
href: string;
|
|
11628
|
+
icon?: string | {
|
|
11629
|
+
name: string;
|
|
11630
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11631
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11632
|
+
} | undefined;
|
|
11633
|
+
label?: string | undefined;
|
|
11634
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11635
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11636
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11637
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11638
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11639
|
+
}, "strip", z.ZodTypeAny, {
|
|
11640
|
+
name: string;
|
|
11641
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11642
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11643
|
+
}, {
|
|
11644
|
+
name: string;
|
|
11645
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11646
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11647
|
+
}>]>>;
|
|
11648
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11649
|
+
}, {
|
|
11650
|
+
label: z.ZodOptional<z.ZodString>;
|
|
11651
|
+
type: z.ZodLiteral<"discord">;
|
|
11652
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11653
|
+
type: "discord";
|
|
11654
|
+
href: string;
|
|
11655
|
+
icon?: string | {
|
|
11656
|
+
name: string;
|
|
11657
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11658
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11659
|
+
} | undefined;
|
|
11660
|
+
label?: string | undefined;
|
|
11661
|
+
}, {
|
|
11662
|
+
type: "discord";
|
|
11663
|
+
href: string;
|
|
11664
|
+
icon?: string | {
|
|
11665
|
+
name: string;
|
|
11666
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11667
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11668
|
+
} | undefined;
|
|
11669
|
+
label?: string | undefined;
|
|
11670
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11671
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11672
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11673
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11674
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11675
|
+
}, "strip", z.ZodTypeAny, {
|
|
11676
|
+
name: string;
|
|
11677
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11678
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11679
|
+
}, {
|
|
11680
|
+
name: string;
|
|
11681
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11682
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11683
|
+
}>]>>;
|
|
11684
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11685
|
+
}, {
|
|
11686
|
+
label: z.ZodString;
|
|
11687
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
11688
|
+
}>, "strip", z.ZodTypeAny, {
|
|
10680
11689
|
href: string;
|
|
10681
11690
|
label: string;
|
|
11691
|
+
type?: undefined;
|
|
10682
11692
|
icon?: string | {
|
|
10683
11693
|
name: string;
|
|
10684
11694
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -10687,12 +11697,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10687
11697
|
}, {
|
|
10688
11698
|
href: string;
|
|
10689
11699
|
label: string;
|
|
11700
|
+
type?: undefined;
|
|
10690
11701
|
icon?: string | {
|
|
10691
11702
|
name: string;
|
|
10692
11703
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10693
11704
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10694
11705
|
} | undefined;
|
|
10695
|
-
}>, "many">>;
|
|
11706
|
+
}>]>, "many">>;
|
|
10696
11707
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10697
11708
|
type: z.ZodLiteral<"button">;
|
|
10698
11709
|
label: z.ZodString;
|
|
@@ -10707,13 +11718,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10707
11718
|
label: string;
|
|
10708
11719
|
}>, z.ZodObject<{
|
|
10709
11720
|
type: z.ZodLiteral<"github">;
|
|
11721
|
+
label: z.ZodOptional<z.ZodString>;
|
|
10710
11722
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
10711
11723
|
}, "strip", z.ZodTypeAny, {
|
|
10712
11724
|
type: "github";
|
|
10713
11725
|
href: string;
|
|
11726
|
+
label?: string | undefined;
|
|
10714
11727
|
}, {
|
|
10715
11728
|
type: "github";
|
|
10716
11729
|
href: string;
|
|
11730
|
+
label?: string | undefined;
|
|
11731
|
+
}>, z.ZodObject<{
|
|
11732
|
+
type: z.ZodLiteral<"discord">;
|
|
11733
|
+
label: z.ZodOptional<z.ZodString>;
|
|
11734
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11735
|
+
}, "strip", z.ZodTypeAny, {
|
|
11736
|
+
type: "discord";
|
|
11737
|
+
href: string;
|
|
11738
|
+
label?: string | undefined;
|
|
11739
|
+
}, {
|
|
11740
|
+
type: "discord";
|
|
11741
|
+
href: string;
|
|
11742
|
+
label?: string | undefined;
|
|
10717
11743
|
}>]>>;
|
|
10718
11744
|
}, "strip", z.ZodTypeAny, {
|
|
10719
11745
|
primary?: {
|
|
@@ -10723,16 +11749,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10723
11749
|
} | {
|
|
10724
11750
|
type: "github";
|
|
10725
11751
|
href: string;
|
|
11752
|
+
label?: string | undefined;
|
|
11753
|
+
} | {
|
|
11754
|
+
type: "discord";
|
|
11755
|
+
href: string;
|
|
11756
|
+
label?: string | undefined;
|
|
10726
11757
|
} | undefined;
|
|
10727
|
-
links?: {
|
|
11758
|
+
links?: ({
|
|
10728
11759
|
href: string;
|
|
10729
11760
|
label: string;
|
|
11761
|
+
type?: undefined;
|
|
10730
11762
|
icon?: string | {
|
|
10731
11763
|
name: string;
|
|
10732
11764
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10733
11765
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10734
11766
|
} | undefined;
|
|
10735
|
-
}
|
|
11767
|
+
} | {
|
|
11768
|
+
type: "github";
|
|
11769
|
+
href: string;
|
|
11770
|
+
icon?: string | {
|
|
11771
|
+
name: string;
|
|
11772
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11773
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11774
|
+
} | undefined;
|
|
11775
|
+
label?: string | undefined;
|
|
11776
|
+
} | {
|
|
11777
|
+
type: "discord";
|
|
11778
|
+
href: string;
|
|
11779
|
+
icon?: string | {
|
|
11780
|
+
name: string;
|
|
11781
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11782
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11783
|
+
} | undefined;
|
|
11784
|
+
label?: string | undefined;
|
|
11785
|
+
})[] | undefined;
|
|
10736
11786
|
}, {
|
|
10737
11787
|
primary?: {
|
|
10738
11788
|
type: "button";
|
|
@@ -10741,16 +11791,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10741
11791
|
} | {
|
|
10742
11792
|
type: "github";
|
|
10743
11793
|
href: string;
|
|
11794
|
+
label?: string | undefined;
|
|
11795
|
+
} | {
|
|
11796
|
+
type: "discord";
|
|
11797
|
+
href: string;
|
|
11798
|
+
label?: string | undefined;
|
|
10744
11799
|
} | undefined;
|
|
10745
|
-
links?: {
|
|
11800
|
+
links?: ({
|
|
10746
11801
|
href: string;
|
|
10747
11802
|
label: string;
|
|
11803
|
+
type?: undefined;
|
|
10748
11804
|
icon?: string | {
|
|
10749
11805
|
name: string;
|
|
10750
11806
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10751
11807
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10752
11808
|
} | undefined;
|
|
10753
|
-
}
|
|
11809
|
+
} | {
|
|
11810
|
+
type: "github";
|
|
11811
|
+
href: string;
|
|
11812
|
+
icon?: string | {
|
|
11813
|
+
name: string;
|
|
11814
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11815
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11816
|
+
} | undefined;
|
|
11817
|
+
label?: string | undefined;
|
|
11818
|
+
} | {
|
|
11819
|
+
type: "discord";
|
|
11820
|
+
href: string;
|
|
11821
|
+
icon?: string | {
|
|
11822
|
+
name: string;
|
|
11823
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11824
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11825
|
+
} | undefined;
|
|
11826
|
+
label?: string | undefined;
|
|
11827
|
+
})[] | undefined;
|
|
10754
11828
|
}>>;
|
|
10755
11829
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
10756
11830
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -12128,16 +13202,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12128
13202
|
} | {
|
|
12129
13203
|
type: "github";
|
|
12130
13204
|
href: string;
|
|
13205
|
+
label?: string | undefined;
|
|
13206
|
+
} | {
|
|
13207
|
+
type: "discord";
|
|
13208
|
+
href: string;
|
|
13209
|
+
label?: string | undefined;
|
|
12131
13210
|
} | undefined;
|
|
12132
|
-
links?: {
|
|
13211
|
+
links?: ({
|
|
12133
13212
|
href: string;
|
|
12134
13213
|
label: string;
|
|
13214
|
+
type?: undefined;
|
|
12135
13215
|
icon?: string | {
|
|
12136
13216
|
name: string;
|
|
12137
13217
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12138
13218
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12139
13219
|
} | undefined;
|
|
12140
|
-
}
|
|
13220
|
+
} | {
|
|
13221
|
+
type: "github";
|
|
13222
|
+
href: string;
|
|
13223
|
+
icon?: string | {
|
|
13224
|
+
name: string;
|
|
13225
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13226
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13227
|
+
} | undefined;
|
|
13228
|
+
label?: string | undefined;
|
|
13229
|
+
} | {
|
|
13230
|
+
type: "discord";
|
|
13231
|
+
href: string;
|
|
13232
|
+
icon?: string | {
|
|
13233
|
+
name: string;
|
|
13234
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13235
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13236
|
+
} | undefined;
|
|
13237
|
+
label?: string | undefined;
|
|
13238
|
+
})[] | undefined;
|
|
12141
13239
|
} | undefined;
|
|
12142
13240
|
icons?: {
|
|
12143
13241
|
library: "fontawesome" | "lucide";
|
|
@@ -12450,16 +13548,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12450
13548
|
} | {
|
|
12451
13549
|
type: "github";
|
|
12452
13550
|
href: string;
|
|
13551
|
+
label?: string | undefined;
|
|
13552
|
+
} | {
|
|
13553
|
+
type: "discord";
|
|
13554
|
+
href: string;
|
|
13555
|
+
label?: string | undefined;
|
|
12453
13556
|
} | undefined;
|
|
12454
|
-
links?: {
|
|
13557
|
+
links?: ({
|
|
12455
13558
|
href: string;
|
|
12456
13559
|
label: string;
|
|
13560
|
+
type?: undefined;
|
|
12457
13561
|
icon?: string | {
|
|
12458
13562
|
name: string;
|
|
12459
13563
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12460
13564
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12461
13565
|
} | undefined;
|
|
12462
|
-
}
|
|
13566
|
+
} | {
|
|
13567
|
+
type: "github";
|
|
13568
|
+
href: string;
|
|
13569
|
+
icon?: string | {
|
|
13570
|
+
name: string;
|
|
13571
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13572
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13573
|
+
} | undefined;
|
|
13574
|
+
label?: string | undefined;
|
|
13575
|
+
} | {
|
|
13576
|
+
type: "discord";
|
|
13577
|
+
href: string;
|
|
13578
|
+
icon?: string | {
|
|
13579
|
+
name: string;
|
|
13580
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13581
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13582
|
+
} | undefined;
|
|
13583
|
+
label?: string | undefined;
|
|
13584
|
+
})[] | undefined;
|
|
12463
13585
|
} | undefined;
|
|
12464
13586
|
icons?: {
|
|
12465
13587
|
library: "fontawesome" | "lucide";
|
|
@@ -12745,8 +13867,79 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12745
13867
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
12746
13868
|
}>>;
|
|
12747
13869
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
12748
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12749
|
-
|
|
13870
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
13871
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
13872
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
13873
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
13874
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
13875
|
+
}, "strip", z.ZodTypeAny, {
|
|
13876
|
+
name: string;
|
|
13877
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13878
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13879
|
+
}, {
|
|
13880
|
+
name: string;
|
|
13881
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13882
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13883
|
+
}>]>>;
|
|
13884
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
13885
|
+
}, {
|
|
13886
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13887
|
+
type: z.ZodLiteral<"github">;
|
|
13888
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13889
|
+
type: "github";
|
|
13890
|
+
href: string;
|
|
13891
|
+
icon?: string | {
|
|
13892
|
+
name: string;
|
|
13893
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13894
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13895
|
+
} | undefined;
|
|
13896
|
+
label?: string | undefined;
|
|
13897
|
+
}, {
|
|
13898
|
+
type: "github";
|
|
13899
|
+
href: string;
|
|
13900
|
+
icon?: string | {
|
|
13901
|
+
name: string;
|
|
13902
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13903
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13904
|
+
} | undefined;
|
|
13905
|
+
label?: string | undefined;
|
|
13906
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13907
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
13908
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
13909
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
13910
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
13911
|
+
}, "strip", z.ZodTypeAny, {
|
|
13912
|
+
name: string;
|
|
13913
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13914
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13915
|
+
}, {
|
|
13916
|
+
name: string;
|
|
13917
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13918
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13919
|
+
}>]>>;
|
|
13920
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
13921
|
+
}, {
|
|
13922
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13923
|
+
type: z.ZodLiteral<"discord">;
|
|
13924
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13925
|
+
type: "discord";
|
|
13926
|
+
href: string;
|
|
13927
|
+
icon?: string | {
|
|
13928
|
+
name: string;
|
|
13929
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13930
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13931
|
+
} | undefined;
|
|
13932
|
+
label?: string | undefined;
|
|
13933
|
+
}, {
|
|
13934
|
+
type: "discord";
|
|
13935
|
+
href: string;
|
|
13936
|
+
icon?: string | {
|
|
13937
|
+
name: string;
|
|
13938
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13939
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13940
|
+
} | undefined;
|
|
13941
|
+
label?: string | undefined;
|
|
13942
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
12750
13943
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
12751
13944
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
12752
13945
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -12761,9 +13954,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12761
13954
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12762
13955
|
}>]>>;
|
|
12763
13956
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
12764
|
-
},
|
|
13957
|
+
}, {
|
|
13958
|
+
label: z.ZodString;
|
|
13959
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
13960
|
+
}>, "strip", z.ZodTypeAny, {
|
|
12765
13961
|
href: string;
|
|
12766
13962
|
label: string;
|
|
13963
|
+
type?: undefined;
|
|
12767
13964
|
icon?: string | {
|
|
12768
13965
|
name: string;
|
|
12769
13966
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -12772,12 +13969,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12772
13969
|
}, {
|
|
12773
13970
|
href: string;
|
|
12774
13971
|
label: string;
|
|
13972
|
+
type?: undefined;
|
|
12775
13973
|
icon?: string | {
|
|
12776
13974
|
name: string;
|
|
12777
13975
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12778
13976
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12779
13977
|
} | undefined;
|
|
12780
|
-
}>, "many">>;
|
|
13978
|
+
}>]>, "many">>;
|
|
12781
13979
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
12782
13980
|
type: z.ZodLiteral<"button">;
|
|
12783
13981
|
label: z.ZodString;
|
|
@@ -12792,13 +13990,28 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12792
13990
|
label: string;
|
|
12793
13991
|
}>, z.ZodObject<{
|
|
12794
13992
|
type: z.ZodLiteral<"github">;
|
|
13993
|
+
label: z.ZodOptional<z.ZodString>;
|
|
12795
13994
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
12796
13995
|
}, "strip", z.ZodTypeAny, {
|
|
12797
13996
|
type: "github";
|
|
12798
13997
|
href: string;
|
|
13998
|
+
label?: string | undefined;
|
|
12799
13999
|
}, {
|
|
12800
14000
|
type: "github";
|
|
12801
14001
|
href: string;
|
|
14002
|
+
label?: string | undefined;
|
|
14003
|
+
}>, z.ZodObject<{
|
|
14004
|
+
type: z.ZodLiteral<"discord">;
|
|
14005
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14006
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
14007
|
+
}, "strip", z.ZodTypeAny, {
|
|
14008
|
+
type: "discord";
|
|
14009
|
+
href: string;
|
|
14010
|
+
label?: string | undefined;
|
|
14011
|
+
}, {
|
|
14012
|
+
type: "discord";
|
|
14013
|
+
href: string;
|
|
14014
|
+
label?: string | undefined;
|
|
12802
14015
|
}>]>>;
|
|
12803
14016
|
}, "strip", z.ZodTypeAny, {
|
|
12804
14017
|
primary?: {
|
|
@@ -12808,16 +14021,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12808
14021
|
} | {
|
|
12809
14022
|
type: "github";
|
|
12810
14023
|
href: string;
|
|
14024
|
+
label?: string | undefined;
|
|
14025
|
+
} | {
|
|
14026
|
+
type: "discord";
|
|
14027
|
+
href: string;
|
|
14028
|
+
label?: string | undefined;
|
|
12811
14029
|
} | undefined;
|
|
12812
|
-
links?: {
|
|
14030
|
+
links?: ({
|
|
12813
14031
|
href: string;
|
|
12814
14032
|
label: string;
|
|
14033
|
+
type?: undefined;
|
|
12815
14034
|
icon?: string | {
|
|
12816
14035
|
name: string;
|
|
12817
14036
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12818
14037
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12819
14038
|
} | undefined;
|
|
12820
|
-
}
|
|
14039
|
+
} | {
|
|
14040
|
+
type: "github";
|
|
14041
|
+
href: string;
|
|
14042
|
+
icon?: string | {
|
|
14043
|
+
name: string;
|
|
14044
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14045
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
14046
|
+
} | undefined;
|
|
14047
|
+
label?: string | undefined;
|
|
14048
|
+
} | {
|
|
14049
|
+
type: "discord";
|
|
14050
|
+
href: string;
|
|
14051
|
+
icon?: string | {
|
|
14052
|
+
name: string;
|
|
14053
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14054
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
14055
|
+
} | undefined;
|
|
14056
|
+
label?: string | undefined;
|
|
14057
|
+
})[] | undefined;
|
|
12821
14058
|
}, {
|
|
12822
14059
|
primary?: {
|
|
12823
14060
|
type: "button";
|
|
@@ -12826,16 +14063,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12826
14063
|
} | {
|
|
12827
14064
|
type: "github";
|
|
12828
14065
|
href: string;
|
|
14066
|
+
label?: string | undefined;
|
|
14067
|
+
} | {
|
|
14068
|
+
type: "discord";
|
|
14069
|
+
href: string;
|
|
14070
|
+
label?: string | undefined;
|
|
12829
14071
|
} | undefined;
|
|
12830
|
-
links?: {
|
|
14072
|
+
links?: ({
|
|
12831
14073
|
href: string;
|
|
12832
14074
|
label: string;
|
|
14075
|
+
type?: undefined;
|
|
12833
14076
|
icon?: string | {
|
|
12834
14077
|
name: string;
|
|
12835
14078
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12836
14079
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12837
14080
|
} | undefined;
|
|
12838
|
-
}
|
|
14081
|
+
} | {
|
|
14082
|
+
type: "github";
|
|
14083
|
+
href: string;
|
|
14084
|
+
icon?: string | {
|
|
14085
|
+
name: string;
|
|
14086
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14087
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
14088
|
+
} | undefined;
|
|
14089
|
+
label?: string | undefined;
|
|
14090
|
+
} | {
|
|
14091
|
+
type: "discord";
|
|
14092
|
+
href: string;
|
|
14093
|
+
icon?: string | {
|
|
14094
|
+
name: string;
|
|
14095
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14096
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
14097
|
+
} | undefined;
|
|
14098
|
+
label?: string | undefined;
|
|
14099
|
+
})[] | undefined;
|
|
12839
14100
|
}>>;
|
|
12840
14101
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
12841
14102
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -14213,16 +15474,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14213
15474
|
} | {
|
|
14214
15475
|
type: "github";
|
|
14215
15476
|
href: string;
|
|
15477
|
+
label?: string | undefined;
|
|
15478
|
+
} | {
|
|
15479
|
+
type: "discord";
|
|
15480
|
+
href: string;
|
|
15481
|
+
label?: string | undefined;
|
|
14216
15482
|
} | undefined;
|
|
14217
|
-
links?: {
|
|
15483
|
+
links?: ({
|
|
14218
15484
|
href: string;
|
|
14219
15485
|
label: string;
|
|
15486
|
+
type?: undefined;
|
|
14220
15487
|
icon?: string | {
|
|
14221
15488
|
name: string;
|
|
14222
15489
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14223
15490
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14224
15491
|
} | undefined;
|
|
14225
|
-
}
|
|
15492
|
+
} | {
|
|
15493
|
+
type: "github";
|
|
15494
|
+
href: string;
|
|
15495
|
+
icon?: string | {
|
|
15496
|
+
name: string;
|
|
15497
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15498
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
15499
|
+
} | undefined;
|
|
15500
|
+
label?: string | undefined;
|
|
15501
|
+
} | {
|
|
15502
|
+
type: "discord";
|
|
15503
|
+
href: string;
|
|
15504
|
+
icon?: string | {
|
|
15505
|
+
name: string;
|
|
15506
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15507
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
15508
|
+
} | undefined;
|
|
15509
|
+
label?: string | undefined;
|
|
15510
|
+
})[] | undefined;
|
|
14226
15511
|
} | undefined;
|
|
14227
15512
|
icons?: {
|
|
14228
15513
|
library: "fontawesome" | "lucide";
|
|
@@ -14535,16 +15820,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14535
15820
|
} | {
|
|
14536
15821
|
type: "github";
|
|
14537
15822
|
href: string;
|
|
15823
|
+
label?: string | undefined;
|
|
15824
|
+
} | {
|
|
15825
|
+
type: "discord";
|
|
15826
|
+
href: string;
|
|
15827
|
+
label?: string | undefined;
|
|
14538
15828
|
} | undefined;
|
|
14539
|
-
links?: {
|
|
15829
|
+
links?: ({
|
|
14540
15830
|
href: string;
|
|
14541
15831
|
label: string;
|
|
15832
|
+
type?: undefined;
|
|
14542
15833
|
icon?: string | {
|
|
14543
15834
|
name: string;
|
|
14544
15835
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14545
15836
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14546
15837
|
} | undefined;
|
|
14547
|
-
}
|
|
15838
|
+
} | {
|
|
15839
|
+
type: "github";
|
|
15840
|
+
href: string;
|
|
15841
|
+
icon?: string | {
|
|
15842
|
+
name: string;
|
|
15843
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15844
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
15845
|
+
} | undefined;
|
|
15846
|
+
label?: string | undefined;
|
|
15847
|
+
} | {
|
|
15848
|
+
type: "discord";
|
|
15849
|
+
href: string;
|
|
15850
|
+
icon?: string | {
|
|
15851
|
+
name: string;
|
|
15852
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15853
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
15854
|
+
} | undefined;
|
|
15855
|
+
label?: string | undefined;
|
|
15856
|
+
})[] | undefined;
|
|
14548
15857
|
} | undefined;
|
|
14549
15858
|
icons?: {
|
|
14550
15859
|
library: "fontawesome" | "lucide";
|
|
@@ -14831,8 +16140,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14831
16140
|
decoration?: "gradient" | "grid" | "windows" | undefined;
|
|
14832
16141
|
}>>;
|
|
14833
16142
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
14834
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14835
|
-
label: z.ZodString;
|
|
16143
|
+
links: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
14836
16144
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
14837
16145
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
14838
16146
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -14847,9 +16155,85 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14847
16155
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14848
16156
|
}>]>>;
|
|
14849
16157
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
14850
|
-
},
|
|
16158
|
+
}, {
|
|
16159
|
+
label: z.ZodOptional<z.ZodString>;
|
|
16160
|
+
type: z.ZodLiteral<"github">;
|
|
16161
|
+
}>, "strip", z.ZodTypeAny, {
|
|
16162
|
+
type: "github";
|
|
16163
|
+
href: string;
|
|
16164
|
+
icon?: string | {
|
|
16165
|
+
name: string;
|
|
16166
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16167
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16168
|
+
} | undefined;
|
|
16169
|
+
label?: string | undefined;
|
|
16170
|
+
}, {
|
|
16171
|
+
type: "github";
|
|
16172
|
+
href: string;
|
|
16173
|
+
icon?: string | {
|
|
16174
|
+
name: string;
|
|
16175
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16176
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16177
|
+
} | undefined;
|
|
16178
|
+
label?: string | undefined;
|
|
16179
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16180
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16181
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16182
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16183
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16184
|
+
}, "strip", z.ZodTypeAny, {
|
|
16185
|
+
name: string;
|
|
16186
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16187
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16188
|
+
}, {
|
|
16189
|
+
name: string;
|
|
16190
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16191
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16192
|
+
}>]>>;
|
|
16193
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
16194
|
+
}, {
|
|
16195
|
+
label: z.ZodOptional<z.ZodString>;
|
|
16196
|
+
type: z.ZodLiteral<"discord">;
|
|
16197
|
+
}>, "strip", z.ZodTypeAny, {
|
|
16198
|
+
type: "discord";
|
|
16199
|
+
href: string;
|
|
16200
|
+
icon?: string | {
|
|
16201
|
+
name: string;
|
|
16202
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16203
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16204
|
+
} | undefined;
|
|
16205
|
+
label?: string | undefined;
|
|
16206
|
+
}, {
|
|
16207
|
+
type: "discord";
|
|
16208
|
+
href: string;
|
|
16209
|
+
icon?: string | {
|
|
16210
|
+
name: string;
|
|
16211
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16212
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16213
|
+
} | undefined;
|
|
16214
|
+
label?: string | undefined;
|
|
16215
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
16216
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16217
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16218
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16219
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16220
|
+
}, "strip", z.ZodTypeAny, {
|
|
16221
|
+
name: string;
|
|
16222
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16223
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16224
|
+
}, {
|
|
16225
|
+
name: string;
|
|
16226
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16227
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16228
|
+
}>]>>;
|
|
16229
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
16230
|
+
}, {
|
|
16231
|
+
label: z.ZodString;
|
|
16232
|
+
type: z.ZodOptional<z.ZodUndefined>;
|
|
16233
|
+
}>, "strip", z.ZodTypeAny, {
|
|
14851
16234
|
href: string;
|
|
14852
16235
|
label: string;
|
|
16236
|
+
type?: undefined;
|
|
14853
16237
|
icon?: string | {
|
|
14854
16238
|
name: string;
|
|
14855
16239
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -14858,12 +16242,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14858
16242
|
}, {
|
|
14859
16243
|
href: string;
|
|
14860
16244
|
label: string;
|
|
16245
|
+
type?: undefined;
|
|
14861
16246
|
icon?: string | {
|
|
14862
16247
|
name: string;
|
|
14863
16248
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14864
16249
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14865
16250
|
} | undefined;
|
|
14866
|
-
}>, "many">>;
|
|
16251
|
+
}>]>, "many">>;
|
|
14867
16252
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
14868
16253
|
type: z.ZodLiteral<"button">;
|
|
14869
16254
|
label: z.ZodString;
|
|
@@ -14878,13 +16263,28 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14878
16263
|
label: string;
|
|
14879
16264
|
}>, z.ZodObject<{
|
|
14880
16265
|
type: z.ZodLiteral<"github">;
|
|
16266
|
+
label: z.ZodOptional<z.ZodString>;
|
|
14881
16267
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
14882
16268
|
}, "strip", z.ZodTypeAny, {
|
|
14883
16269
|
type: "github";
|
|
14884
16270
|
href: string;
|
|
16271
|
+
label?: string | undefined;
|
|
14885
16272
|
}, {
|
|
14886
16273
|
type: "github";
|
|
14887
16274
|
href: string;
|
|
16275
|
+
label?: string | undefined;
|
|
16276
|
+
}>, z.ZodObject<{
|
|
16277
|
+
type: z.ZodLiteral<"discord">;
|
|
16278
|
+
label: z.ZodOptional<z.ZodString>;
|
|
16279
|
+
href: z.ZodEffects<z.ZodString, string, string>;
|
|
16280
|
+
}, "strip", z.ZodTypeAny, {
|
|
16281
|
+
type: "discord";
|
|
16282
|
+
href: string;
|
|
16283
|
+
label?: string | undefined;
|
|
16284
|
+
}, {
|
|
16285
|
+
type: "discord";
|
|
16286
|
+
href: string;
|
|
16287
|
+
label?: string | undefined;
|
|
14888
16288
|
}>]>>;
|
|
14889
16289
|
}, "strip", z.ZodTypeAny, {
|
|
14890
16290
|
primary?: {
|
|
@@ -14894,16 +16294,40 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14894
16294
|
} | {
|
|
14895
16295
|
type: "github";
|
|
14896
16296
|
href: string;
|
|
16297
|
+
label?: string | undefined;
|
|
16298
|
+
} | {
|
|
16299
|
+
type: "discord";
|
|
16300
|
+
href: string;
|
|
16301
|
+
label?: string | undefined;
|
|
14897
16302
|
} | undefined;
|
|
14898
|
-
links?: {
|
|
16303
|
+
links?: ({
|
|
14899
16304
|
href: string;
|
|
14900
16305
|
label: string;
|
|
16306
|
+
type?: undefined;
|
|
14901
16307
|
icon?: string | {
|
|
14902
16308
|
name: string;
|
|
14903
16309
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14904
16310
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14905
16311
|
} | undefined;
|
|
14906
|
-
}
|
|
16312
|
+
} | {
|
|
16313
|
+
type: "github";
|
|
16314
|
+
href: string;
|
|
16315
|
+
icon?: string | {
|
|
16316
|
+
name: string;
|
|
16317
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16318
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16319
|
+
} | undefined;
|
|
16320
|
+
label?: string | undefined;
|
|
16321
|
+
} | {
|
|
16322
|
+
type: "discord";
|
|
16323
|
+
href: string;
|
|
16324
|
+
icon?: string | {
|
|
16325
|
+
name: string;
|
|
16326
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16327
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16328
|
+
} | undefined;
|
|
16329
|
+
label?: string | undefined;
|
|
16330
|
+
})[] | undefined;
|
|
14907
16331
|
}, {
|
|
14908
16332
|
primary?: {
|
|
14909
16333
|
type: "button";
|
|
@@ -14912,16 +16336,40 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
14912
16336
|
} | {
|
|
14913
16337
|
type: "github";
|
|
14914
16338
|
href: string;
|
|
16339
|
+
label?: string | undefined;
|
|
16340
|
+
} | {
|
|
16341
|
+
type: "discord";
|
|
16342
|
+
href: string;
|
|
16343
|
+
label?: string | undefined;
|
|
14915
16344
|
} | undefined;
|
|
14916
|
-
links?: {
|
|
16345
|
+
links?: ({
|
|
14917
16346
|
href: string;
|
|
14918
16347
|
label: string;
|
|
16348
|
+
type?: undefined;
|
|
14919
16349
|
icon?: string | {
|
|
14920
16350
|
name: string;
|
|
14921
16351
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14922
16352
|
library?: "fontawesome" | "lucide" | undefined;
|
|
14923
16353
|
} | undefined;
|
|
14924
|
-
}
|
|
16354
|
+
} | {
|
|
16355
|
+
type: "github";
|
|
16356
|
+
href: string;
|
|
16357
|
+
icon?: string | {
|
|
16358
|
+
name: string;
|
|
16359
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16360
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16361
|
+
} | undefined;
|
|
16362
|
+
label?: string | undefined;
|
|
16363
|
+
} | {
|
|
16364
|
+
type: "discord";
|
|
16365
|
+
href: string;
|
|
16366
|
+
icon?: string | {
|
|
16367
|
+
name: string;
|
|
16368
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16369
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
16370
|
+
} | undefined;
|
|
16371
|
+
label?: string | undefined;
|
|
16372
|
+
})[] | undefined;
|
|
14925
16373
|
}>>;
|
|
14926
16374
|
navigation: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
14927
16375
|
global: z.ZodOptional<z.ZodType<import("./properties/navigation/divisionNav.js").GlobalNavigation, z.ZodTypeDef, import("./properties/navigation/divisionNav.js").GlobalNavigation>>;
|
|
@@ -16299,16 +17747,40 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16299
17747
|
} | {
|
|
16300
17748
|
type: "github";
|
|
16301
17749
|
href: string;
|
|
17750
|
+
label?: string | undefined;
|
|
17751
|
+
} | {
|
|
17752
|
+
type: "discord";
|
|
17753
|
+
href: string;
|
|
17754
|
+
label?: string | undefined;
|
|
16302
17755
|
} | undefined;
|
|
16303
|
-
links?: {
|
|
17756
|
+
links?: ({
|
|
16304
17757
|
href: string;
|
|
16305
17758
|
label: string;
|
|
17759
|
+
type?: undefined;
|
|
16306
17760
|
icon?: string | {
|
|
16307
17761
|
name: string;
|
|
16308
17762
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16309
17763
|
library?: "fontawesome" | "lucide" | undefined;
|
|
16310
17764
|
} | undefined;
|
|
16311
|
-
}
|
|
17765
|
+
} | {
|
|
17766
|
+
type: "github";
|
|
17767
|
+
href: string;
|
|
17768
|
+
icon?: string | {
|
|
17769
|
+
name: string;
|
|
17770
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17771
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
17772
|
+
} | undefined;
|
|
17773
|
+
label?: string | undefined;
|
|
17774
|
+
} | {
|
|
17775
|
+
type: "discord";
|
|
17776
|
+
href: string;
|
|
17777
|
+
icon?: string | {
|
|
17778
|
+
name: string;
|
|
17779
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17780
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
17781
|
+
} | undefined;
|
|
17782
|
+
label?: string | undefined;
|
|
17783
|
+
})[] | undefined;
|
|
16312
17784
|
} | undefined;
|
|
16313
17785
|
icons?: {
|
|
16314
17786
|
library: "fontawesome" | "lucide";
|
|
@@ -16621,16 +18093,40 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
16621
18093
|
} | {
|
|
16622
18094
|
type: "github";
|
|
16623
18095
|
href: string;
|
|
18096
|
+
label?: string | undefined;
|
|
18097
|
+
} | {
|
|
18098
|
+
type: "discord";
|
|
18099
|
+
href: string;
|
|
18100
|
+
label?: string | undefined;
|
|
16624
18101
|
} | undefined;
|
|
16625
|
-
links?: {
|
|
18102
|
+
links?: ({
|
|
16626
18103
|
href: string;
|
|
16627
18104
|
label: string;
|
|
18105
|
+
type?: undefined;
|
|
16628
18106
|
icon?: string | {
|
|
16629
18107
|
name: string;
|
|
16630
18108
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16631
18109
|
library?: "fontawesome" | "lucide" | undefined;
|
|
16632
18110
|
} | undefined;
|
|
16633
|
-
}
|
|
18111
|
+
} | {
|
|
18112
|
+
type: "github";
|
|
18113
|
+
href: string;
|
|
18114
|
+
icon?: string | {
|
|
18115
|
+
name: string;
|
|
18116
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18117
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
18118
|
+
} | undefined;
|
|
18119
|
+
label?: string | undefined;
|
|
18120
|
+
} | {
|
|
18121
|
+
type: "discord";
|
|
18122
|
+
href: string;
|
|
18123
|
+
icon?: string | {
|
|
18124
|
+
name: string;
|
|
18125
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18126
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
18127
|
+
} | undefined;
|
|
18128
|
+
label?: string | undefined;
|
|
18129
|
+
})[] | undefined;
|
|
16634
18130
|
} | undefined;
|
|
16635
18131
|
icons?: {
|
|
16636
18132
|
library: "fontawesome" | "lucide";
|