@mintlify/validation 0.1.376 → 0.1.378
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 +490 -0
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +33 -0
- package/dist/mint-config/schemas/v2/properties/navbar.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +48 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +70 -0
- package/dist/mint-config/validateConfig.d.ts +154 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -225,13 +225,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
225
225
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
226
226
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
227
227
|
label: z.ZodString;
|
|
228
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
229
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
230
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
231
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
232
|
+
}, "strip", z.ZodTypeAny, {
|
|
233
|
+
name: string;
|
|
234
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
235
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
236
|
+
}, {
|
|
237
|
+
name: string;
|
|
238
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
239
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
240
|
+
}>]>>;
|
|
228
241
|
href: z.ZodString;
|
|
229
242
|
}, "strip", z.ZodTypeAny, {
|
|
230
243
|
href: string;
|
|
231
244
|
label: string;
|
|
245
|
+
icon?: string | {
|
|
246
|
+
name: string;
|
|
247
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
248
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
249
|
+
} | undefined;
|
|
232
250
|
}, {
|
|
233
251
|
href: string;
|
|
234
252
|
label: string;
|
|
253
|
+
icon?: string | {
|
|
254
|
+
name: string;
|
|
255
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
256
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
257
|
+
} | undefined;
|
|
235
258
|
}>, "many">>;
|
|
236
259
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
237
260
|
type: z.ZodLiteral<"button">;
|
|
@@ -259,6 +282,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
259
282
|
links?: {
|
|
260
283
|
href: string;
|
|
261
284
|
label: string;
|
|
285
|
+
icon?: string | {
|
|
286
|
+
name: string;
|
|
287
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
288
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
289
|
+
} | undefined;
|
|
262
290
|
}[] | undefined;
|
|
263
291
|
primary?: {
|
|
264
292
|
type: "button";
|
|
@@ -272,6 +300,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
272
300
|
links?: {
|
|
273
301
|
href: string;
|
|
274
302
|
label: string;
|
|
303
|
+
icon?: string | {
|
|
304
|
+
name: string;
|
|
305
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
306
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
307
|
+
} | undefined;
|
|
275
308
|
}[] | undefined;
|
|
276
309
|
primary?: {
|
|
277
310
|
type: "button";
|
|
@@ -344,6 +377,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
344
377
|
library?: "fontawesome" | "lucide" | undefined;
|
|
345
378
|
}>]>>;
|
|
346
379
|
group: z.ZodString;
|
|
380
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
347
381
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
348
382
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
349
383
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -370,6 +404,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
370
404
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
371
405
|
library?: "fontawesome" | "lucide" | undefined;
|
|
372
406
|
} | undefined;
|
|
407
|
+
tag?: string | undefined;
|
|
373
408
|
hidden?: boolean | undefined;
|
|
374
409
|
root?: string | undefined;
|
|
375
410
|
}, {
|
|
@@ -386,6 +421,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
386
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
387
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
388
423
|
} | undefined;
|
|
424
|
+
tag?: string | undefined;
|
|
389
425
|
hidden?: boolean | undefined;
|
|
390
426
|
root?: string | undefined;
|
|
391
427
|
}>, z.ZodObject<{
|
|
@@ -403,6 +439,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
403
439
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
440
|
}>]>>;
|
|
405
441
|
group: z.ZodString;
|
|
442
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
406
443
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
407
444
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
408
445
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -429,6 +466,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
429
466
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
430
467
|
library?: "fontawesome" | "lucide" | undefined;
|
|
431
468
|
} | undefined;
|
|
469
|
+
tag?: string | undefined;
|
|
432
470
|
hidden?: boolean | undefined;
|
|
433
471
|
root?: string | undefined;
|
|
434
472
|
}, {
|
|
@@ -445,6 +483,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
445
483
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
446
484
|
library?: "fontawesome" | "lucide" | undefined;
|
|
447
485
|
} | undefined;
|
|
486
|
+
tag?: string | undefined;
|
|
448
487
|
hidden?: boolean | undefined;
|
|
449
488
|
root?: string | undefined;
|
|
450
489
|
}>, z.ZodObject<{
|
|
@@ -462,6 +501,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
462
501
|
library?: "fontawesome" | "lucide" | undefined;
|
|
463
502
|
}>]>>;
|
|
464
503
|
group: z.ZodString;
|
|
504
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
465
505
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
466
506
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
467
507
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -473,6 +513,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
473
513
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
474
514
|
library?: "fontawesome" | "lucide" | undefined;
|
|
475
515
|
} | undefined;
|
|
516
|
+
tag?: string | undefined;
|
|
476
517
|
hidden?: boolean | undefined;
|
|
477
518
|
root?: string | undefined;
|
|
478
519
|
}, {
|
|
@@ -483,6 +524,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
483
524
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
484
525
|
library?: "fontawesome" | "lucide" | undefined;
|
|
485
526
|
} | undefined;
|
|
527
|
+
tag?: string | undefined;
|
|
486
528
|
hidden?: boolean | undefined;
|
|
487
529
|
root?: string | undefined;
|
|
488
530
|
}>]>, "many">;
|
|
@@ -501,6 +543,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
501
543
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
502
544
|
library?: "fontawesome" | "lucide" | undefined;
|
|
503
545
|
} | undefined;
|
|
546
|
+
tag?: string | undefined;
|
|
504
547
|
hidden?: boolean | undefined;
|
|
505
548
|
root?: string | undefined;
|
|
506
549
|
} | {
|
|
@@ -517,6 +560,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
517
560
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
518
561
|
library?: "fontawesome" | "lucide" | undefined;
|
|
519
562
|
} | undefined;
|
|
563
|
+
tag?: string | undefined;
|
|
520
564
|
hidden?: boolean | undefined;
|
|
521
565
|
root?: string | undefined;
|
|
522
566
|
} | {
|
|
@@ -527,6 +571,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
527
571
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
528
572
|
library?: "fontawesome" | "lucide" | undefined;
|
|
529
573
|
} | undefined;
|
|
574
|
+
tag?: string | undefined;
|
|
530
575
|
hidden?: boolean | undefined;
|
|
531
576
|
root?: string | undefined;
|
|
532
577
|
})[];
|
|
@@ -546,6 +591,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
546
591
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
547
592
|
library?: "fontawesome" | "lucide" | undefined;
|
|
548
593
|
} | undefined;
|
|
594
|
+
tag?: string | undefined;
|
|
549
595
|
hidden?: boolean | undefined;
|
|
550
596
|
root?: string | undefined;
|
|
551
597
|
} | {
|
|
@@ -562,6 +608,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
562
608
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
563
609
|
library?: "fontawesome" | "lucide" | undefined;
|
|
564
610
|
} | undefined;
|
|
611
|
+
tag?: string | undefined;
|
|
565
612
|
hidden?: boolean | undefined;
|
|
566
613
|
root?: string | undefined;
|
|
567
614
|
} | {
|
|
@@ -572,6 +619,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
572
619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
573
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
574
621
|
} | undefined;
|
|
622
|
+
tag?: string | undefined;
|
|
575
623
|
hidden?: boolean | undefined;
|
|
576
624
|
root?: string | undefined;
|
|
577
625
|
})[];
|
|
@@ -1137,6 +1185,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1137
1185
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1138
1186
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1139
1187
|
} | undefined;
|
|
1188
|
+
tag?: string | undefined;
|
|
1140
1189
|
hidden?: boolean | undefined;
|
|
1141
1190
|
root?: string | undefined;
|
|
1142
1191
|
} | {
|
|
@@ -1153,6 +1202,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1153
1202
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1154
1203
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1155
1204
|
} | undefined;
|
|
1205
|
+
tag?: string | undefined;
|
|
1156
1206
|
hidden?: boolean | undefined;
|
|
1157
1207
|
root?: string | undefined;
|
|
1158
1208
|
} | {
|
|
@@ -1163,6 +1213,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1163
1213
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1164
1214
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1165
1215
|
} | undefined;
|
|
1216
|
+
tag?: string | undefined;
|
|
1166
1217
|
hidden?: boolean | undefined;
|
|
1167
1218
|
root?: string | undefined;
|
|
1168
1219
|
})[];
|
|
@@ -1200,6 +1251,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1200
1251
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1201
1252
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1202
1253
|
} | undefined;
|
|
1254
|
+
tag?: string | undefined;
|
|
1203
1255
|
hidden?: boolean | undefined;
|
|
1204
1256
|
root?: string | undefined;
|
|
1205
1257
|
} | {
|
|
@@ -1216,6 +1268,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1216
1268
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1217
1269
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1218
1270
|
} | undefined;
|
|
1271
|
+
tag?: string | undefined;
|
|
1219
1272
|
hidden?: boolean | undefined;
|
|
1220
1273
|
root?: string | undefined;
|
|
1221
1274
|
} | {
|
|
@@ -1226,6 +1279,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1226
1279
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1227
1280
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1228
1281
|
} | undefined;
|
|
1282
|
+
tag?: string | undefined;
|
|
1229
1283
|
hidden?: boolean | undefined;
|
|
1230
1284
|
root?: string | undefined;
|
|
1231
1285
|
})[];
|
|
@@ -1291,6 +1345,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1291
1345
|
links?: {
|
|
1292
1346
|
href: string;
|
|
1293
1347
|
label: string;
|
|
1348
|
+
icon?: string | {
|
|
1349
|
+
name: string;
|
|
1350
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1351
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1352
|
+
} | undefined;
|
|
1294
1353
|
}[] | undefined;
|
|
1295
1354
|
primary?: {
|
|
1296
1355
|
type: "button";
|
|
@@ -1462,6 +1521,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1462
1521
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1463
1522
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1464
1523
|
} | undefined;
|
|
1524
|
+
tag?: string | undefined;
|
|
1465
1525
|
hidden?: boolean | undefined;
|
|
1466
1526
|
root?: string | undefined;
|
|
1467
1527
|
} | {
|
|
@@ -1478,6 +1538,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1478
1538
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1479
1539
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1480
1540
|
} | undefined;
|
|
1541
|
+
tag?: string | undefined;
|
|
1481
1542
|
hidden?: boolean | undefined;
|
|
1482
1543
|
root?: string | undefined;
|
|
1483
1544
|
} | {
|
|
@@ -1488,6 +1549,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1488
1549
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1489
1550
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1490
1551
|
} | undefined;
|
|
1552
|
+
tag?: string | undefined;
|
|
1491
1553
|
hidden?: boolean | undefined;
|
|
1492
1554
|
root?: string | undefined;
|
|
1493
1555
|
})[];
|
|
@@ -1525,6 +1587,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1525
1587
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1526
1588
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1527
1589
|
} | undefined;
|
|
1590
|
+
tag?: string | undefined;
|
|
1528
1591
|
hidden?: boolean | undefined;
|
|
1529
1592
|
root?: string | undefined;
|
|
1530
1593
|
} | {
|
|
@@ -1541,6 +1604,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1541
1604
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1542
1605
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1543
1606
|
} | undefined;
|
|
1607
|
+
tag?: string | undefined;
|
|
1544
1608
|
hidden?: boolean | undefined;
|
|
1545
1609
|
root?: string | undefined;
|
|
1546
1610
|
} | {
|
|
@@ -1551,6 +1615,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1551
1615
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1552
1616
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1553
1617
|
} | undefined;
|
|
1618
|
+
tag?: string | undefined;
|
|
1554
1619
|
hidden?: boolean | undefined;
|
|
1555
1620
|
root?: string | undefined;
|
|
1556
1621
|
})[];
|
|
@@ -1617,6 +1682,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1617
1682
|
links?: {
|
|
1618
1683
|
href: string;
|
|
1619
1684
|
label: string;
|
|
1685
|
+
icon?: string | {
|
|
1686
|
+
name: string;
|
|
1687
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1688
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1689
|
+
} | undefined;
|
|
1620
1690
|
}[] | undefined;
|
|
1621
1691
|
primary?: {
|
|
1622
1692
|
type: "button";
|
|
@@ -1974,13 +2044,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1974
2044
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
1975
2045
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1976
2046
|
label: z.ZodString;
|
|
2047
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2048
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2049
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2050
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2051
|
+
}, "strip", z.ZodTypeAny, {
|
|
2052
|
+
name: string;
|
|
2053
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2054
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2055
|
+
}, {
|
|
2056
|
+
name: string;
|
|
2057
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2058
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2059
|
+
}>]>>;
|
|
1977
2060
|
href: z.ZodString;
|
|
1978
2061
|
}, "strip", z.ZodTypeAny, {
|
|
1979
2062
|
href: string;
|
|
1980
2063
|
label: string;
|
|
2064
|
+
icon?: string | {
|
|
2065
|
+
name: string;
|
|
2066
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2067
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2068
|
+
} | undefined;
|
|
1981
2069
|
}, {
|
|
1982
2070
|
href: string;
|
|
1983
2071
|
label: string;
|
|
2072
|
+
icon?: string | {
|
|
2073
|
+
name: string;
|
|
2074
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2075
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2076
|
+
} | undefined;
|
|
1984
2077
|
}>, "many">>;
|
|
1985
2078
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1986
2079
|
type: z.ZodLiteral<"button">;
|
|
@@ -2008,6 +2101,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2008
2101
|
links?: {
|
|
2009
2102
|
href: string;
|
|
2010
2103
|
label: string;
|
|
2104
|
+
icon?: string | {
|
|
2105
|
+
name: string;
|
|
2106
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2107
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2108
|
+
} | undefined;
|
|
2011
2109
|
}[] | undefined;
|
|
2012
2110
|
primary?: {
|
|
2013
2111
|
type: "button";
|
|
@@ -2021,6 +2119,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2021
2119
|
links?: {
|
|
2022
2120
|
href: string;
|
|
2023
2121
|
label: string;
|
|
2122
|
+
icon?: string | {
|
|
2123
|
+
name: string;
|
|
2124
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2125
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2126
|
+
} | undefined;
|
|
2024
2127
|
}[] | undefined;
|
|
2025
2128
|
primary?: {
|
|
2026
2129
|
type: "button";
|
|
@@ -2093,6 +2196,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2093
2196
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2094
2197
|
}>]>>;
|
|
2095
2198
|
group: z.ZodString;
|
|
2199
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2096
2200
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2097
2201
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2098
2202
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -2119,6 +2223,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2119
2223
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2120
2224
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2121
2225
|
} | undefined;
|
|
2226
|
+
tag?: string | undefined;
|
|
2122
2227
|
hidden?: boolean | undefined;
|
|
2123
2228
|
root?: string | undefined;
|
|
2124
2229
|
}, {
|
|
@@ -2135,6 +2240,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2135
2240
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2136
2241
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2137
2242
|
} | undefined;
|
|
2243
|
+
tag?: string | undefined;
|
|
2138
2244
|
hidden?: boolean | undefined;
|
|
2139
2245
|
root?: string | undefined;
|
|
2140
2246
|
}>, z.ZodObject<{
|
|
@@ -2152,6 +2258,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2152
2258
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2153
2259
|
}>]>>;
|
|
2154
2260
|
group: z.ZodString;
|
|
2261
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2155
2262
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2156
2263
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2157
2264
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -2178,6 +2285,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2178
2285
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2179
2286
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2180
2287
|
} | undefined;
|
|
2288
|
+
tag?: string | undefined;
|
|
2181
2289
|
hidden?: boolean | undefined;
|
|
2182
2290
|
root?: string | undefined;
|
|
2183
2291
|
}, {
|
|
@@ -2194,6 +2302,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2194
2302
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2195
2303
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2196
2304
|
} | undefined;
|
|
2305
|
+
tag?: string | undefined;
|
|
2197
2306
|
hidden?: boolean | undefined;
|
|
2198
2307
|
root?: string | undefined;
|
|
2199
2308
|
}>, z.ZodObject<{
|
|
@@ -2211,6 +2320,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2211
2320
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2212
2321
|
}>]>>;
|
|
2213
2322
|
group: z.ZodString;
|
|
2323
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2214
2324
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2215
2325
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
2216
2326
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -2222,6 +2332,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2222
2332
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2223
2333
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2224
2334
|
} | undefined;
|
|
2335
|
+
tag?: string | undefined;
|
|
2225
2336
|
hidden?: boolean | undefined;
|
|
2226
2337
|
root?: string | undefined;
|
|
2227
2338
|
}, {
|
|
@@ -2232,6 +2343,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2232
2343
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2233
2344
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2234
2345
|
} | undefined;
|
|
2346
|
+
tag?: string | undefined;
|
|
2235
2347
|
hidden?: boolean | undefined;
|
|
2236
2348
|
root?: string | undefined;
|
|
2237
2349
|
}>]>, "many">;
|
|
@@ -2250,6 +2362,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2250
2362
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2251
2363
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2252
2364
|
} | undefined;
|
|
2365
|
+
tag?: string | undefined;
|
|
2253
2366
|
hidden?: boolean | undefined;
|
|
2254
2367
|
root?: string | undefined;
|
|
2255
2368
|
} | {
|
|
@@ -2266,6 +2379,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2266
2379
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2267
2380
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2268
2381
|
} | undefined;
|
|
2382
|
+
tag?: string | undefined;
|
|
2269
2383
|
hidden?: boolean | undefined;
|
|
2270
2384
|
root?: string | undefined;
|
|
2271
2385
|
} | {
|
|
@@ -2276,6 +2390,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2276
2390
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2277
2391
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2278
2392
|
} | undefined;
|
|
2393
|
+
tag?: string | undefined;
|
|
2279
2394
|
hidden?: boolean | undefined;
|
|
2280
2395
|
root?: string | undefined;
|
|
2281
2396
|
})[];
|
|
@@ -2295,6 +2410,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2295
2410
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2296
2411
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2297
2412
|
} | undefined;
|
|
2413
|
+
tag?: string | undefined;
|
|
2298
2414
|
hidden?: boolean | undefined;
|
|
2299
2415
|
root?: string | undefined;
|
|
2300
2416
|
} | {
|
|
@@ -2311,6 +2427,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2311
2427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2312
2428
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2313
2429
|
} | undefined;
|
|
2430
|
+
tag?: string | undefined;
|
|
2314
2431
|
hidden?: boolean | undefined;
|
|
2315
2432
|
root?: string | undefined;
|
|
2316
2433
|
} | {
|
|
@@ -2321,6 +2438,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2321
2438
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2322
2439
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2323
2440
|
} | undefined;
|
|
2441
|
+
tag?: string | undefined;
|
|
2324
2442
|
hidden?: boolean | undefined;
|
|
2325
2443
|
root?: string | undefined;
|
|
2326
2444
|
})[];
|
|
@@ -2886,6 +3004,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2886
3004
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2887
3005
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2888
3006
|
} | undefined;
|
|
3007
|
+
tag?: string | undefined;
|
|
2889
3008
|
hidden?: boolean | undefined;
|
|
2890
3009
|
root?: string | undefined;
|
|
2891
3010
|
} | {
|
|
@@ -2902,6 +3021,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2902
3021
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2903
3022
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2904
3023
|
} | undefined;
|
|
3024
|
+
tag?: string | undefined;
|
|
2905
3025
|
hidden?: boolean | undefined;
|
|
2906
3026
|
root?: string | undefined;
|
|
2907
3027
|
} | {
|
|
@@ -2912,6 +3032,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2912
3032
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2913
3033
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2914
3034
|
} | undefined;
|
|
3035
|
+
tag?: string | undefined;
|
|
2915
3036
|
hidden?: boolean | undefined;
|
|
2916
3037
|
root?: string | undefined;
|
|
2917
3038
|
})[];
|
|
@@ -2949,6 +3070,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2949
3070
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2950
3071
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2951
3072
|
} | undefined;
|
|
3073
|
+
tag?: string | undefined;
|
|
2952
3074
|
hidden?: boolean | undefined;
|
|
2953
3075
|
root?: string | undefined;
|
|
2954
3076
|
} | {
|
|
@@ -2965,6 +3087,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2965
3087
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2966
3088
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2967
3089
|
} | undefined;
|
|
3090
|
+
tag?: string | undefined;
|
|
2968
3091
|
hidden?: boolean | undefined;
|
|
2969
3092
|
root?: string | undefined;
|
|
2970
3093
|
} | {
|
|
@@ -2975,6 +3098,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2975
3098
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2976
3099
|
library?: "fontawesome" | "lucide" | undefined;
|
|
2977
3100
|
} | undefined;
|
|
3101
|
+
tag?: string | undefined;
|
|
2978
3102
|
hidden?: boolean | undefined;
|
|
2979
3103
|
root?: string | undefined;
|
|
2980
3104
|
})[];
|
|
@@ -3040,6 +3164,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3040
3164
|
links?: {
|
|
3041
3165
|
href: string;
|
|
3042
3166
|
label: string;
|
|
3167
|
+
icon?: string | {
|
|
3168
|
+
name: string;
|
|
3169
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3170
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3171
|
+
} | undefined;
|
|
3043
3172
|
}[] | undefined;
|
|
3044
3173
|
primary?: {
|
|
3045
3174
|
type: "button";
|
|
@@ -3211,6 +3340,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3211
3340
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3212
3341
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3213
3342
|
} | undefined;
|
|
3343
|
+
tag?: string | undefined;
|
|
3214
3344
|
hidden?: boolean | undefined;
|
|
3215
3345
|
root?: string | undefined;
|
|
3216
3346
|
} | {
|
|
@@ -3227,6 +3357,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3227
3357
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3228
3358
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3229
3359
|
} | undefined;
|
|
3360
|
+
tag?: string | undefined;
|
|
3230
3361
|
hidden?: boolean | undefined;
|
|
3231
3362
|
root?: string | undefined;
|
|
3232
3363
|
} | {
|
|
@@ -3237,6 +3368,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3237
3368
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3238
3369
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3239
3370
|
} | undefined;
|
|
3371
|
+
tag?: string | undefined;
|
|
3240
3372
|
hidden?: boolean | undefined;
|
|
3241
3373
|
root?: string | undefined;
|
|
3242
3374
|
})[];
|
|
@@ -3274,6 +3406,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3274
3406
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3275
3407
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3276
3408
|
} | undefined;
|
|
3409
|
+
tag?: string | undefined;
|
|
3277
3410
|
hidden?: boolean | undefined;
|
|
3278
3411
|
root?: string | undefined;
|
|
3279
3412
|
} | {
|
|
@@ -3290,6 +3423,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3290
3423
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3291
3424
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3292
3425
|
} | undefined;
|
|
3426
|
+
tag?: string | undefined;
|
|
3293
3427
|
hidden?: boolean | undefined;
|
|
3294
3428
|
root?: string | undefined;
|
|
3295
3429
|
} | {
|
|
@@ -3300,6 +3434,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3300
3434
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3301
3435
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3302
3436
|
} | undefined;
|
|
3437
|
+
tag?: string | undefined;
|
|
3303
3438
|
hidden?: boolean | undefined;
|
|
3304
3439
|
root?: string | undefined;
|
|
3305
3440
|
})[];
|
|
@@ -3366,6 +3501,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3366
3501
|
links?: {
|
|
3367
3502
|
href: string;
|
|
3368
3503
|
label: string;
|
|
3504
|
+
icon?: string | {
|
|
3505
|
+
name: string;
|
|
3506
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3507
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3508
|
+
} | undefined;
|
|
3369
3509
|
}[] | undefined;
|
|
3370
3510
|
primary?: {
|
|
3371
3511
|
type: "button";
|
|
@@ -3723,13 +3863,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3723
3863
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
3724
3864
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3725
3865
|
label: z.ZodString;
|
|
3866
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3867
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3868
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3869
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3870
|
+
}, "strip", z.ZodTypeAny, {
|
|
3871
|
+
name: string;
|
|
3872
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3873
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3874
|
+
}, {
|
|
3875
|
+
name: string;
|
|
3876
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3877
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3878
|
+
}>]>>;
|
|
3726
3879
|
href: z.ZodString;
|
|
3727
3880
|
}, "strip", z.ZodTypeAny, {
|
|
3728
3881
|
href: string;
|
|
3729
3882
|
label: string;
|
|
3883
|
+
icon?: string | {
|
|
3884
|
+
name: string;
|
|
3885
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3886
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3887
|
+
} | undefined;
|
|
3730
3888
|
}, {
|
|
3731
3889
|
href: string;
|
|
3732
3890
|
label: string;
|
|
3891
|
+
icon?: string | {
|
|
3892
|
+
name: string;
|
|
3893
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3894
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3895
|
+
} | undefined;
|
|
3733
3896
|
}>, "many">>;
|
|
3734
3897
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3735
3898
|
type: z.ZodLiteral<"button">;
|
|
@@ -3757,6 +3920,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3757
3920
|
links?: {
|
|
3758
3921
|
href: string;
|
|
3759
3922
|
label: string;
|
|
3923
|
+
icon?: string | {
|
|
3924
|
+
name: string;
|
|
3925
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3926
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3927
|
+
} | undefined;
|
|
3760
3928
|
}[] | undefined;
|
|
3761
3929
|
primary?: {
|
|
3762
3930
|
type: "button";
|
|
@@ -3770,6 +3938,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3770
3938
|
links?: {
|
|
3771
3939
|
href: string;
|
|
3772
3940
|
label: string;
|
|
3941
|
+
icon?: string | {
|
|
3942
|
+
name: string;
|
|
3943
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3944
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3945
|
+
} | undefined;
|
|
3773
3946
|
}[] | undefined;
|
|
3774
3947
|
primary?: {
|
|
3775
3948
|
type: "button";
|
|
@@ -3842,6 +4015,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3842
4015
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3843
4016
|
}>]>>;
|
|
3844
4017
|
group: z.ZodString;
|
|
4018
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
3845
4019
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3846
4020
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
3847
4021
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -3868,6 +4042,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3868
4042
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3869
4043
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3870
4044
|
} | undefined;
|
|
4045
|
+
tag?: string | undefined;
|
|
3871
4046
|
hidden?: boolean | undefined;
|
|
3872
4047
|
root?: string | undefined;
|
|
3873
4048
|
}, {
|
|
@@ -3884,6 +4059,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3884
4059
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3885
4060
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3886
4061
|
} | undefined;
|
|
4062
|
+
tag?: string | undefined;
|
|
3887
4063
|
hidden?: boolean | undefined;
|
|
3888
4064
|
root?: string | undefined;
|
|
3889
4065
|
}>, z.ZodObject<{
|
|
@@ -3901,6 +4077,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3901
4077
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3902
4078
|
}>]>>;
|
|
3903
4079
|
group: z.ZodString;
|
|
4080
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
3904
4081
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3905
4082
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
3906
4083
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -3927,6 +4104,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3927
4104
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3928
4105
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3929
4106
|
} | undefined;
|
|
4107
|
+
tag?: string | undefined;
|
|
3930
4108
|
hidden?: boolean | undefined;
|
|
3931
4109
|
root?: string | undefined;
|
|
3932
4110
|
}, {
|
|
@@ -3943,6 +4121,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3943
4121
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3944
4122
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3945
4123
|
} | undefined;
|
|
4124
|
+
tag?: string | undefined;
|
|
3946
4125
|
hidden?: boolean | undefined;
|
|
3947
4126
|
root?: string | undefined;
|
|
3948
4127
|
}>, z.ZodObject<{
|
|
@@ -3960,6 +4139,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3960
4139
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3961
4140
|
}>]>>;
|
|
3962
4141
|
group: z.ZodString;
|
|
4142
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
3963
4143
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3964
4144
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
3965
4145
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -3971,6 +4151,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3971
4151
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3972
4152
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3973
4153
|
} | undefined;
|
|
4154
|
+
tag?: string | undefined;
|
|
3974
4155
|
hidden?: boolean | undefined;
|
|
3975
4156
|
root?: string | undefined;
|
|
3976
4157
|
}, {
|
|
@@ -3981,6 +4162,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3981
4162
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3982
4163
|
library?: "fontawesome" | "lucide" | undefined;
|
|
3983
4164
|
} | undefined;
|
|
4165
|
+
tag?: string | undefined;
|
|
3984
4166
|
hidden?: boolean | undefined;
|
|
3985
4167
|
root?: string | undefined;
|
|
3986
4168
|
}>]>, "many">;
|
|
@@ -3999,6 +4181,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3999
4181
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4000
4182
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4001
4183
|
} | undefined;
|
|
4184
|
+
tag?: string | undefined;
|
|
4002
4185
|
hidden?: boolean | undefined;
|
|
4003
4186
|
root?: string | undefined;
|
|
4004
4187
|
} | {
|
|
@@ -4015,6 +4198,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4015
4198
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4016
4199
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4017
4200
|
} | undefined;
|
|
4201
|
+
tag?: string | undefined;
|
|
4018
4202
|
hidden?: boolean | undefined;
|
|
4019
4203
|
root?: string | undefined;
|
|
4020
4204
|
} | {
|
|
@@ -4025,6 +4209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4025
4209
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4026
4210
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4027
4211
|
} | undefined;
|
|
4212
|
+
tag?: string | undefined;
|
|
4028
4213
|
hidden?: boolean | undefined;
|
|
4029
4214
|
root?: string | undefined;
|
|
4030
4215
|
})[];
|
|
@@ -4044,6 +4229,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4044
4229
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4045
4230
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4046
4231
|
} | undefined;
|
|
4232
|
+
tag?: string | undefined;
|
|
4047
4233
|
hidden?: boolean | undefined;
|
|
4048
4234
|
root?: string | undefined;
|
|
4049
4235
|
} | {
|
|
@@ -4060,6 +4246,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4060
4246
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4061
4247
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4062
4248
|
} | undefined;
|
|
4249
|
+
tag?: string | undefined;
|
|
4063
4250
|
hidden?: boolean | undefined;
|
|
4064
4251
|
root?: string | undefined;
|
|
4065
4252
|
} | {
|
|
@@ -4070,6 +4257,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4070
4257
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4071
4258
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4072
4259
|
} | undefined;
|
|
4260
|
+
tag?: string | undefined;
|
|
4073
4261
|
hidden?: boolean | undefined;
|
|
4074
4262
|
root?: string | undefined;
|
|
4075
4263
|
})[];
|
|
@@ -4635,6 +4823,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4635
4823
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4636
4824
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4637
4825
|
} | undefined;
|
|
4826
|
+
tag?: string | undefined;
|
|
4638
4827
|
hidden?: boolean | undefined;
|
|
4639
4828
|
root?: string | undefined;
|
|
4640
4829
|
} | {
|
|
@@ -4651,6 +4840,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4651
4840
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4652
4841
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4653
4842
|
} | undefined;
|
|
4843
|
+
tag?: string | undefined;
|
|
4654
4844
|
hidden?: boolean | undefined;
|
|
4655
4845
|
root?: string | undefined;
|
|
4656
4846
|
} | {
|
|
@@ -4661,6 +4851,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4661
4851
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4662
4852
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4663
4853
|
} | undefined;
|
|
4854
|
+
tag?: string | undefined;
|
|
4664
4855
|
hidden?: boolean | undefined;
|
|
4665
4856
|
root?: string | undefined;
|
|
4666
4857
|
})[];
|
|
@@ -4698,6 +4889,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4698
4889
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4699
4890
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4700
4891
|
} | undefined;
|
|
4892
|
+
tag?: string | undefined;
|
|
4701
4893
|
hidden?: boolean | undefined;
|
|
4702
4894
|
root?: string | undefined;
|
|
4703
4895
|
} | {
|
|
@@ -4714,6 +4906,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4714
4906
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4715
4907
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4716
4908
|
} | undefined;
|
|
4909
|
+
tag?: string | undefined;
|
|
4717
4910
|
hidden?: boolean | undefined;
|
|
4718
4911
|
root?: string | undefined;
|
|
4719
4912
|
} | {
|
|
@@ -4724,6 +4917,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4724
4917
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4725
4918
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4726
4919
|
} | undefined;
|
|
4920
|
+
tag?: string | undefined;
|
|
4727
4921
|
hidden?: boolean | undefined;
|
|
4728
4922
|
root?: string | undefined;
|
|
4729
4923
|
})[];
|
|
@@ -4789,6 +4983,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4789
4983
|
links?: {
|
|
4790
4984
|
href: string;
|
|
4791
4985
|
label: string;
|
|
4986
|
+
icon?: string | {
|
|
4987
|
+
name: string;
|
|
4988
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4989
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4990
|
+
} | undefined;
|
|
4792
4991
|
}[] | undefined;
|
|
4793
4992
|
primary?: {
|
|
4794
4993
|
type: "button";
|
|
@@ -4960,6 +5159,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4960
5159
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4961
5160
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4962
5161
|
} | undefined;
|
|
5162
|
+
tag?: string | undefined;
|
|
4963
5163
|
hidden?: boolean | undefined;
|
|
4964
5164
|
root?: string | undefined;
|
|
4965
5165
|
} | {
|
|
@@ -4976,6 +5176,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4976
5176
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4977
5177
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4978
5178
|
} | undefined;
|
|
5179
|
+
tag?: string | undefined;
|
|
4979
5180
|
hidden?: boolean | undefined;
|
|
4980
5181
|
root?: string | undefined;
|
|
4981
5182
|
} | {
|
|
@@ -4986,6 +5187,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4986
5187
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4987
5188
|
library?: "fontawesome" | "lucide" | undefined;
|
|
4988
5189
|
} | undefined;
|
|
5190
|
+
tag?: string | undefined;
|
|
4989
5191
|
hidden?: boolean | undefined;
|
|
4990
5192
|
root?: string | undefined;
|
|
4991
5193
|
})[];
|
|
@@ -5023,6 +5225,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5023
5225
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5024
5226
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5025
5227
|
} | undefined;
|
|
5228
|
+
tag?: string | undefined;
|
|
5026
5229
|
hidden?: boolean | undefined;
|
|
5027
5230
|
root?: string | undefined;
|
|
5028
5231
|
} | {
|
|
@@ -5039,6 +5242,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5039
5242
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5040
5243
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5041
5244
|
} | undefined;
|
|
5245
|
+
tag?: string | undefined;
|
|
5042
5246
|
hidden?: boolean | undefined;
|
|
5043
5247
|
root?: string | undefined;
|
|
5044
5248
|
} | {
|
|
@@ -5049,6 +5253,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5049
5253
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5050
5254
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5051
5255
|
} | undefined;
|
|
5256
|
+
tag?: string | undefined;
|
|
5052
5257
|
hidden?: boolean | undefined;
|
|
5053
5258
|
root?: string | undefined;
|
|
5054
5259
|
})[];
|
|
@@ -5115,6 +5320,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5115
5320
|
links?: {
|
|
5116
5321
|
href: string;
|
|
5117
5322
|
label: string;
|
|
5323
|
+
icon?: string | {
|
|
5324
|
+
name: string;
|
|
5325
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5326
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5327
|
+
} | undefined;
|
|
5118
5328
|
}[] | undefined;
|
|
5119
5329
|
primary?: {
|
|
5120
5330
|
type: "button";
|
|
@@ -5472,13 +5682,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5472
5682
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
5473
5683
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5474
5684
|
label: z.ZodString;
|
|
5685
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5686
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5687
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5688
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5689
|
+
}, "strip", z.ZodTypeAny, {
|
|
5690
|
+
name: string;
|
|
5691
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5692
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5693
|
+
}, {
|
|
5694
|
+
name: string;
|
|
5695
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5696
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5697
|
+
}>]>>;
|
|
5475
5698
|
href: z.ZodString;
|
|
5476
5699
|
}, "strip", z.ZodTypeAny, {
|
|
5477
5700
|
href: string;
|
|
5478
5701
|
label: string;
|
|
5702
|
+
icon?: string | {
|
|
5703
|
+
name: string;
|
|
5704
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5705
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5706
|
+
} | undefined;
|
|
5479
5707
|
}, {
|
|
5480
5708
|
href: string;
|
|
5481
5709
|
label: string;
|
|
5710
|
+
icon?: string | {
|
|
5711
|
+
name: string;
|
|
5712
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5713
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5714
|
+
} | undefined;
|
|
5482
5715
|
}>, "many">>;
|
|
5483
5716
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5484
5717
|
type: z.ZodLiteral<"button">;
|
|
@@ -5506,6 +5739,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5506
5739
|
links?: {
|
|
5507
5740
|
href: string;
|
|
5508
5741
|
label: string;
|
|
5742
|
+
icon?: string | {
|
|
5743
|
+
name: string;
|
|
5744
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5745
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5746
|
+
} | undefined;
|
|
5509
5747
|
}[] | undefined;
|
|
5510
5748
|
primary?: {
|
|
5511
5749
|
type: "button";
|
|
@@ -5519,6 +5757,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5519
5757
|
links?: {
|
|
5520
5758
|
href: string;
|
|
5521
5759
|
label: string;
|
|
5760
|
+
icon?: string | {
|
|
5761
|
+
name: string;
|
|
5762
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5763
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5764
|
+
} | undefined;
|
|
5522
5765
|
}[] | undefined;
|
|
5523
5766
|
primary?: {
|
|
5524
5767
|
type: "button";
|
|
@@ -5591,6 +5834,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5591
5834
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5592
5835
|
}>]>>;
|
|
5593
5836
|
group: z.ZodString;
|
|
5837
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
5594
5838
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5595
5839
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5596
5840
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -5617,6 +5861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5617
5861
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5618
5862
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5619
5863
|
} | undefined;
|
|
5864
|
+
tag?: string | undefined;
|
|
5620
5865
|
hidden?: boolean | undefined;
|
|
5621
5866
|
root?: string | undefined;
|
|
5622
5867
|
}, {
|
|
@@ -5633,6 +5878,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5633
5878
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5634
5879
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5635
5880
|
} | undefined;
|
|
5881
|
+
tag?: string | undefined;
|
|
5636
5882
|
hidden?: boolean | undefined;
|
|
5637
5883
|
root?: string | undefined;
|
|
5638
5884
|
}>, z.ZodObject<{
|
|
@@ -5650,6 +5896,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5650
5896
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5651
5897
|
}>]>>;
|
|
5652
5898
|
group: z.ZodString;
|
|
5899
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
5653
5900
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5654
5901
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5655
5902
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -5676,6 +5923,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5676
5923
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5677
5924
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5678
5925
|
} | undefined;
|
|
5926
|
+
tag?: string | undefined;
|
|
5679
5927
|
hidden?: boolean | undefined;
|
|
5680
5928
|
root?: string | undefined;
|
|
5681
5929
|
}, {
|
|
@@ -5692,6 +5940,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5692
5940
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5693
5941
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5694
5942
|
} | undefined;
|
|
5943
|
+
tag?: string | undefined;
|
|
5695
5944
|
hidden?: boolean | undefined;
|
|
5696
5945
|
root?: string | undefined;
|
|
5697
5946
|
}>, z.ZodObject<{
|
|
@@ -5709,6 +5958,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5709
5958
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5710
5959
|
}>]>>;
|
|
5711
5960
|
group: z.ZodString;
|
|
5961
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
5712
5962
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5713
5963
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
5714
5964
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -5720,6 +5970,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5720
5970
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5721
5971
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5722
5972
|
} | undefined;
|
|
5973
|
+
tag?: string | undefined;
|
|
5723
5974
|
hidden?: boolean | undefined;
|
|
5724
5975
|
root?: string | undefined;
|
|
5725
5976
|
}, {
|
|
@@ -5730,6 +5981,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5730
5981
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5731
5982
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5732
5983
|
} | undefined;
|
|
5984
|
+
tag?: string | undefined;
|
|
5733
5985
|
hidden?: boolean | undefined;
|
|
5734
5986
|
root?: string | undefined;
|
|
5735
5987
|
}>]>, "many">;
|
|
@@ -5748,6 +6000,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5748
6000
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5749
6001
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5750
6002
|
} | undefined;
|
|
6003
|
+
tag?: string | undefined;
|
|
5751
6004
|
hidden?: boolean | undefined;
|
|
5752
6005
|
root?: string | undefined;
|
|
5753
6006
|
} | {
|
|
@@ -5764,6 +6017,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5764
6017
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5765
6018
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5766
6019
|
} | undefined;
|
|
6020
|
+
tag?: string | undefined;
|
|
5767
6021
|
hidden?: boolean | undefined;
|
|
5768
6022
|
root?: string | undefined;
|
|
5769
6023
|
} | {
|
|
@@ -5774,6 +6028,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5774
6028
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5775
6029
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5776
6030
|
} | undefined;
|
|
6031
|
+
tag?: string | undefined;
|
|
5777
6032
|
hidden?: boolean | undefined;
|
|
5778
6033
|
root?: string | undefined;
|
|
5779
6034
|
})[];
|
|
@@ -5793,6 +6048,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5793
6048
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5794
6049
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5795
6050
|
} | undefined;
|
|
6051
|
+
tag?: string | undefined;
|
|
5796
6052
|
hidden?: boolean | undefined;
|
|
5797
6053
|
root?: string | undefined;
|
|
5798
6054
|
} | {
|
|
@@ -5809,6 +6065,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5809
6065
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5810
6066
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5811
6067
|
} | undefined;
|
|
6068
|
+
tag?: string | undefined;
|
|
5812
6069
|
hidden?: boolean | undefined;
|
|
5813
6070
|
root?: string | undefined;
|
|
5814
6071
|
} | {
|
|
@@ -5819,6 +6076,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5819
6076
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5820
6077
|
library?: "fontawesome" | "lucide" | undefined;
|
|
5821
6078
|
} | undefined;
|
|
6079
|
+
tag?: string | undefined;
|
|
5822
6080
|
hidden?: boolean | undefined;
|
|
5823
6081
|
root?: string | undefined;
|
|
5824
6082
|
})[];
|
|
@@ -6384,6 +6642,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6384
6642
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6385
6643
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6386
6644
|
} | undefined;
|
|
6645
|
+
tag?: string | undefined;
|
|
6387
6646
|
hidden?: boolean | undefined;
|
|
6388
6647
|
root?: string | undefined;
|
|
6389
6648
|
} | {
|
|
@@ -6400,6 +6659,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6400
6659
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6401
6660
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6402
6661
|
} | undefined;
|
|
6662
|
+
tag?: string | undefined;
|
|
6403
6663
|
hidden?: boolean | undefined;
|
|
6404
6664
|
root?: string | undefined;
|
|
6405
6665
|
} | {
|
|
@@ -6410,6 +6670,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6410
6670
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6411
6671
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6412
6672
|
} | undefined;
|
|
6673
|
+
tag?: string | undefined;
|
|
6413
6674
|
hidden?: boolean | undefined;
|
|
6414
6675
|
root?: string | undefined;
|
|
6415
6676
|
})[];
|
|
@@ -6447,6 +6708,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6447
6708
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6448
6709
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6449
6710
|
} | undefined;
|
|
6711
|
+
tag?: string | undefined;
|
|
6450
6712
|
hidden?: boolean | undefined;
|
|
6451
6713
|
root?: string | undefined;
|
|
6452
6714
|
} | {
|
|
@@ -6463,6 +6725,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6463
6725
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6464
6726
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6465
6727
|
} | undefined;
|
|
6728
|
+
tag?: string | undefined;
|
|
6466
6729
|
hidden?: boolean | undefined;
|
|
6467
6730
|
root?: string | undefined;
|
|
6468
6731
|
} | {
|
|
@@ -6473,6 +6736,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6473
6736
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6474
6737
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6475
6738
|
} | undefined;
|
|
6739
|
+
tag?: string | undefined;
|
|
6476
6740
|
hidden?: boolean | undefined;
|
|
6477
6741
|
root?: string | undefined;
|
|
6478
6742
|
})[];
|
|
@@ -6538,6 +6802,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6538
6802
|
links?: {
|
|
6539
6803
|
href: string;
|
|
6540
6804
|
label: string;
|
|
6805
|
+
icon?: string | {
|
|
6806
|
+
name: string;
|
|
6807
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6808
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6809
|
+
} | undefined;
|
|
6541
6810
|
}[] | undefined;
|
|
6542
6811
|
primary?: {
|
|
6543
6812
|
type: "button";
|
|
@@ -6709,6 +6978,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6709
6978
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6710
6979
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6711
6980
|
} | undefined;
|
|
6981
|
+
tag?: string | undefined;
|
|
6712
6982
|
hidden?: boolean | undefined;
|
|
6713
6983
|
root?: string | undefined;
|
|
6714
6984
|
} | {
|
|
@@ -6725,6 +6995,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6725
6995
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6726
6996
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6727
6997
|
} | undefined;
|
|
6998
|
+
tag?: string | undefined;
|
|
6728
6999
|
hidden?: boolean | undefined;
|
|
6729
7000
|
root?: string | undefined;
|
|
6730
7001
|
} | {
|
|
@@ -6735,6 +7006,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6735
7006
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6736
7007
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6737
7008
|
} | undefined;
|
|
7009
|
+
tag?: string | undefined;
|
|
6738
7010
|
hidden?: boolean | undefined;
|
|
6739
7011
|
root?: string | undefined;
|
|
6740
7012
|
})[];
|
|
@@ -6772,6 +7044,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6772
7044
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6773
7045
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6774
7046
|
} | undefined;
|
|
7047
|
+
tag?: string | undefined;
|
|
6775
7048
|
hidden?: boolean | undefined;
|
|
6776
7049
|
root?: string | undefined;
|
|
6777
7050
|
} | {
|
|
@@ -6788,6 +7061,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6788
7061
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6789
7062
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6790
7063
|
} | undefined;
|
|
7064
|
+
tag?: string | undefined;
|
|
6791
7065
|
hidden?: boolean | undefined;
|
|
6792
7066
|
root?: string | undefined;
|
|
6793
7067
|
} | {
|
|
@@ -6798,6 +7072,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6798
7072
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6799
7073
|
library?: "fontawesome" | "lucide" | undefined;
|
|
6800
7074
|
} | undefined;
|
|
7075
|
+
tag?: string | undefined;
|
|
6801
7076
|
hidden?: boolean | undefined;
|
|
6802
7077
|
root?: string | undefined;
|
|
6803
7078
|
})[];
|
|
@@ -6864,6 +7139,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6864
7139
|
links?: {
|
|
6865
7140
|
href: string;
|
|
6866
7141
|
label: string;
|
|
7142
|
+
icon?: string | {
|
|
7143
|
+
name: string;
|
|
7144
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7145
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7146
|
+
} | undefined;
|
|
6867
7147
|
}[] | undefined;
|
|
6868
7148
|
primary?: {
|
|
6869
7149
|
type: "button";
|
|
@@ -7221,13 +7501,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7221
7501
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
7222
7502
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7223
7503
|
label: z.ZodString;
|
|
7504
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7505
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7506
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7507
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7508
|
+
}, "strip", z.ZodTypeAny, {
|
|
7509
|
+
name: string;
|
|
7510
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7511
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7512
|
+
}, {
|
|
7513
|
+
name: string;
|
|
7514
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7515
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7516
|
+
}>]>>;
|
|
7224
7517
|
href: z.ZodString;
|
|
7225
7518
|
}, "strip", z.ZodTypeAny, {
|
|
7226
7519
|
href: string;
|
|
7227
7520
|
label: string;
|
|
7521
|
+
icon?: string | {
|
|
7522
|
+
name: string;
|
|
7523
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7524
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7525
|
+
} | undefined;
|
|
7228
7526
|
}, {
|
|
7229
7527
|
href: string;
|
|
7230
7528
|
label: string;
|
|
7529
|
+
icon?: string | {
|
|
7530
|
+
name: string;
|
|
7531
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7532
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7533
|
+
} | undefined;
|
|
7231
7534
|
}>, "many">>;
|
|
7232
7535
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7233
7536
|
type: z.ZodLiteral<"button">;
|
|
@@ -7255,6 +7558,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7255
7558
|
links?: {
|
|
7256
7559
|
href: string;
|
|
7257
7560
|
label: string;
|
|
7561
|
+
icon?: string | {
|
|
7562
|
+
name: string;
|
|
7563
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7564
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7565
|
+
} | undefined;
|
|
7258
7566
|
}[] | undefined;
|
|
7259
7567
|
primary?: {
|
|
7260
7568
|
type: "button";
|
|
@@ -7268,6 +7576,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7268
7576
|
links?: {
|
|
7269
7577
|
href: string;
|
|
7270
7578
|
label: string;
|
|
7579
|
+
icon?: string | {
|
|
7580
|
+
name: string;
|
|
7581
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7582
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7583
|
+
} | undefined;
|
|
7271
7584
|
}[] | undefined;
|
|
7272
7585
|
primary?: {
|
|
7273
7586
|
type: "button";
|
|
@@ -7340,6 +7653,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7340
7653
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7341
7654
|
}>]>>;
|
|
7342
7655
|
group: z.ZodString;
|
|
7656
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
7343
7657
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7344
7658
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7345
7659
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -7366,6 +7680,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7366
7680
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7367
7681
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7368
7682
|
} | undefined;
|
|
7683
|
+
tag?: string | undefined;
|
|
7369
7684
|
hidden?: boolean | undefined;
|
|
7370
7685
|
root?: string | undefined;
|
|
7371
7686
|
}, {
|
|
@@ -7382,6 +7697,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7382
7697
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7383
7698
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7384
7699
|
} | undefined;
|
|
7700
|
+
tag?: string | undefined;
|
|
7385
7701
|
hidden?: boolean | undefined;
|
|
7386
7702
|
root?: string | undefined;
|
|
7387
7703
|
}>, z.ZodObject<{
|
|
@@ -7399,6 +7715,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7399
7715
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7400
7716
|
}>]>>;
|
|
7401
7717
|
group: z.ZodString;
|
|
7718
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
7402
7719
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7403
7720
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7404
7721
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -7425,6 +7742,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7425
7742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7426
7743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7427
7744
|
} | undefined;
|
|
7745
|
+
tag?: string | undefined;
|
|
7428
7746
|
hidden?: boolean | undefined;
|
|
7429
7747
|
root?: string | undefined;
|
|
7430
7748
|
}, {
|
|
@@ -7441,6 +7759,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7441
7759
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7442
7760
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7443
7761
|
} | undefined;
|
|
7762
|
+
tag?: string | undefined;
|
|
7444
7763
|
hidden?: boolean | undefined;
|
|
7445
7764
|
root?: string | undefined;
|
|
7446
7765
|
}>, z.ZodObject<{
|
|
@@ -7458,6 +7777,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7458
7777
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7459
7778
|
}>]>>;
|
|
7460
7779
|
group: z.ZodString;
|
|
7780
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
7461
7781
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7462
7782
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7463
7783
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -7469,6 +7789,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7469
7789
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7470
7790
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7471
7791
|
} | undefined;
|
|
7792
|
+
tag?: string | undefined;
|
|
7472
7793
|
hidden?: boolean | undefined;
|
|
7473
7794
|
root?: string | undefined;
|
|
7474
7795
|
}, {
|
|
@@ -7479,6 +7800,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7479
7800
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7480
7801
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7481
7802
|
} | undefined;
|
|
7803
|
+
tag?: string | undefined;
|
|
7482
7804
|
hidden?: boolean | undefined;
|
|
7483
7805
|
root?: string | undefined;
|
|
7484
7806
|
}>]>, "many">;
|
|
@@ -7497,6 +7819,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7497
7819
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7498
7820
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7499
7821
|
} | undefined;
|
|
7822
|
+
tag?: string | undefined;
|
|
7500
7823
|
hidden?: boolean | undefined;
|
|
7501
7824
|
root?: string | undefined;
|
|
7502
7825
|
} | {
|
|
@@ -7513,6 +7836,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7513
7836
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7514
7837
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7515
7838
|
} | undefined;
|
|
7839
|
+
tag?: string | undefined;
|
|
7516
7840
|
hidden?: boolean | undefined;
|
|
7517
7841
|
root?: string | undefined;
|
|
7518
7842
|
} | {
|
|
@@ -7523,6 +7847,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7523
7847
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7524
7848
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7525
7849
|
} | undefined;
|
|
7850
|
+
tag?: string | undefined;
|
|
7526
7851
|
hidden?: boolean | undefined;
|
|
7527
7852
|
root?: string | undefined;
|
|
7528
7853
|
})[];
|
|
@@ -7542,6 +7867,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7542
7867
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7543
7868
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7544
7869
|
} | undefined;
|
|
7870
|
+
tag?: string | undefined;
|
|
7545
7871
|
hidden?: boolean | undefined;
|
|
7546
7872
|
root?: string | undefined;
|
|
7547
7873
|
} | {
|
|
@@ -7558,6 +7884,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7558
7884
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7559
7885
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7560
7886
|
} | undefined;
|
|
7887
|
+
tag?: string | undefined;
|
|
7561
7888
|
hidden?: boolean | undefined;
|
|
7562
7889
|
root?: string | undefined;
|
|
7563
7890
|
} | {
|
|
@@ -7568,6 +7895,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7568
7895
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7569
7896
|
library?: "fontawesome" | "lucide" | undefined;
|
|
7570
7897
|
} | undefined;
|
|
7898
|
+
tag?: string | undefined;
|
|
7571
7899
|
hidden?: boolean | undefined;
|
|
7572
7900
|
root?: string | undefined;
|
|
7573
7901
|
})[];
|
|
@@ -8133,6 +8461,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8133
8461
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8134
8462
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8135
8463
|
} | undefined;
|
|
8464
|
+
tag?: string | undefined;
|
|
8136
8465
|
hidden?: boolean | undefined;
|
|
8137
8466
|
root?: string | undefined;
|
|
8138
8467
|
} | {
|
|
@@ -8149,6 +8478,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8149
8478
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8150
8479
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8151
8480
|
} | undefined;
|
|
8481
|
+
tag?: string | undefined;
|
|
8152
8482
|
hidden?: boolean | undefined;
|
|
8153
8483
|
root?: string | undefined;
|
|
8154
8484
|
} | {
|
|
@@ -8159,6 +8489,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8159
8489
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8160
8490
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8161
8491
|
} | undefined;
|
|
8492
|
+
tag?: string | undefined;
|
|
8162
8493
|
hidden?: boolean | undefined;
|
|
8163
8494
|
root?: string | undefined;
|
|
8164
8495
|
})[];
|
|
@@ -8196,6 +8527,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8196
8527
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8197
8528
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8198
8529
|
} | undefined;
|
|
8530
|
+
tag?: string | undefined;
|
|
8199
8531
|
hidden?: boolean | undefined;
|
|
8200
8532
|
root?: string | undefined;
|
|
8201
8533
|
} | {
|
|
@@ -8212,6 +8544,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8212
8544
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8213
8545
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8214
8546
|
} | undefined;
|
|
8547
|
+
tag?: string | undefined;
|
|
8215
8548
|
hidden?: boolean | undefined;
|
|
8216
8549
|
root?: string | undefined;
|
|
8217
8550
|
} | {
|
|
@@ -8222,6 +8555,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8222
8555
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8223
8556
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8224
8557
|
} | undefined;
|
|
8558
|
+
tag?: string | undefined;
|
|
8225
8559
|
hidden?: boolean | undefined;
|
|
8226
8560
|
root?: string | undefined;
|
|
8227
8561
|
})[];
|
|
@@ -8287,6 +8621,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8287
8621
|
links?: {
|
|
8288
8622
|
href: string;
|
|
8289
8623
|
label: string;
|
|
8624
|
+
icon?: string | {
|
|
8625
|
+
name: string;
|
|
8626
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8627
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8628
|
+
} | undefined;
|
|
8290
8629
|
}[] | undefined;
|
|
8291
8630
|
primary?: {
|
|
8292
8631
|
type: "button";
|
|
@@ -8458,6 +8797,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8458
8797
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8459
8798
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8460
8799
|
} | undefined;
|
|
8800
|
+
tag?: string | undefined;
|
|
8461
8801
|
hidden?: boolean | undefined;
|
|
8462
8802
|
root?: string | undefined;
|
|
8463
8803
|
} | {
|
|
@@ -8474,6 +8814,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8474
8814
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8475
8815
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8476
8816
|
} | undefined;
|
|
8817
|
+
tag?: string | undefined;
|
|
8477
8818
|
hidden?: boolean | undefined;
|
|
8478
8819
|
root?: string | undefined;
|
|
8479
8820
|
} | {
|
|
@@ -8484,6 +8825,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8484
8825
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8485
8826
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8486
8827
|
} | undefined;
|
|
8828
|
+
tag?: string | undefined;
|
|
8487
8829
|
hidden?: boolean | undefined;
|
|
8488
8830
|
root?: string | undefined;
|
|
8489
8831
|
})[];
|
|
@@ -8521,6 +8863,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8521
8863
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8522
8864
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8523
8865
|
} | undefined;
|
|
8866
|
+
tag?: string | undefined;
|
|
8524
8867
|
hidden?: boolean | undefined;
|
|
8525
8868
|
root?: string | undefined;
|
|
8526
8869
|
} | {
|
|
@@ -8537,6 +8880,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8537
8880
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8538
8881
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8539
8882
|
} | undefined;
|
|
8883
|
+
tag?: string | undefined;
|
|
8540
8884
|
hidden?: boolean | undefined;
|
|
8541
8885
|
root?: string | undefined;
|
|
8542
8886
|
} | {
|
|
@@ -8547,6 +8891,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8547
8891
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8548
8892
|
library?: "fontawesome" | "lucide" | undefined;
|
|
8549
8893
|
} | undefined;
|
|
8894
|
+
tag?: string | undefined;
|
|
8550
8895
|
hidden?: boolean | undefined;
|
|
8551
8896
|
root?: string | undefined;
|
|
8552
8897
|
})[];
|
|
@@ -8613,6 +8958,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8613
8958
|
links?: {
|
|
8614
8959
|
href: string;
|
|
8615
8960
|
label: string;
|
|
8961
|
+
icon?: string | {
|
|
8962
|
+
name: string;
|
|
8963
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8964
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8965
|
+
} | undefined;
|
|
8616
8966
|
}[] | undefined;
|
|
8617
8967
|
primary?: {
|
|
8618
8968
|
type: "button";
|
|
@@ -8970,13 +9320,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8970
9320
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
8971
9321
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8972
9322
|
label: z.ZodString;
|
|
9323
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9324
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9325
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9326
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9327
|
+
}, "strip", z.ZodTypeAny, {
|
|
9328
|
+
name: string;
|
|
9329
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9330
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9331
|
+
}, {
|
|
9332
|
+
name: string;
|
|
9333
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9334
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9335
|
+
}>]>>;
|
|
8973
9336
|
href: z.ZodString;
|
|
8974
9337
|
}, "strip", z.ZodTypeAny, {
|
|
8975
9338
|
href: string;
|
|
8976
9339
|
label: string;
|
|
9340
|
+
icon?: string | {
|
|
9341
|
+
name: string;
|
|
9342
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9343
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9344
|
+
} | undefined;
|
|
8977
9345
|
}, {
|
|
8978
9346
|
href: string;
|
|
8979
9347
|
label: string;
|
|
9348
|
+
icon?: string | {
|
|
9349
|
+
name: string;
|
|
9350
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9351
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9352
|
+
} | undefined;
|
|
8980
9353
|
}>, "many">>;
|
|
8981
9354
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8982
9355
|
type: z.ZodLiteral<"button">;
|
|
@@ -9004,6 +9377,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9004
9377
|
links?: {
|
|
9005
9378
|
href: string;
|
|
9006
9379
|
label: string;
|
|
9380
|
+
icon?: string | {
|
|
9381
|
+
name: string;
|
|
9382
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9383
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9384
|
+
} | undefined;
|
|
9007
9385
|
}[] | undefined;
|
|
9008
9386
|
primary?: {
|
|
9009
9387
|
type: "button";
|
|
@@ -9017,6 +9395,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9017
9395
|
links?: {
|
|
9018
9396
|
href: string;
|
|
9019
9397
|
label: string;
|
|
9398
|
+
icon?: string | {
|
|
9399
|
+
name: string;
|
|
9400
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9401
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9402
|
+
} | undefined;
|
|
9020
9403
|
}[] | undefined;
|
|
9021
9404
|
primary?: {
|
|
9022
9405
|
type: "button";
|
|
@@ -9089,6 +9472,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9089
9472
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9090
9473
|
}>]>>;
|
|
9091
9474
|
group: z.ZodString;
|
|
9475
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
9092
9476
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9093
9477
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9094
9478
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -9115,6 +9499,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9115
9499
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9116
9500
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9117
9501
|
} | undefined;
|
|
9502
|
+
tag?: string | undefined;
|
|
9118
9503
|
hidden?: boolean | undefined;
|
|
9119
9504
|
root?: string | undefined;
|
|
9120
9505
|
}, {
|
|
@@ -9131,6 +9516,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9131
9516
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9132
9517
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9133
9518
|
} | undefined;
|
|
9519
|
+
tag?: string | undefined;
|
|
9134
9520
|
hidden?: boolean | undefined;
|
|
9135
9521
|
root?: string | undefined;
|
|
9136
9522
|
}>, z.ZodObject<{
|
|
@@ -9148,6 +9534,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9148
9534
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9149
9535
|
}>]>>;
|
|
9150
9536
|
group: z.ZodString;
|
|
9537
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
9151
9538
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9152
9539
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9153
9540
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -9174,6 +9561,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9174
9561
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9175
9562
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9176
9563
|
} | undefined;
|
|
9564
|
+
tag?: string | undefined;
|
|
9177
9565
|
hidden?: boolean | undefined;
|
|
9178
9566
|
root?: string | undefined;
|
|
9179
9567
|
}, {
|
|
@@ -9190,6 +9578,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9190
9578
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9191
9579
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9192
9580
|
} | undefined;
|
|
9581
|
+
tag?: string | undefined;
|
|
9193
9582
|
hidden?: boolean | undefined;
|
|
9194
9583
|
root?: string | undefined;
|
|
9195
9584
|
}>, z.ZodObject<{
|
|
@@ -9207,6 +9596,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9207
9596
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9208
9597
|
}>]>>;
|
|
9209
9598
|
group: z.ZodString;
|
|
9599
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
9210
9600
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9211
9601
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
9212
9602
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -9218,6 +9608,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9218
9608
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9219
9609
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9220
9610
|
} | undefined;
|
|
9611
|
+
tag?: string | undefined;
|
|
9221
9612
|
hidden?: boolean | undefined;
|
|
9222
9613
|
root?: string | undefined;
|
|
9223
9614
|
}, {
|
|
@@ -9228,6 +9619,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9228
9619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9229
9620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9230
9621
|
} | undefined;
|
|
9622
|
+
tag?: string | undefined;
|
|
9231
9623
|
hidden?: boolean | undefined;
|
|
9232
9624
|
root?: string | undefined;
|
|
9233
9625
|
}>]>, "many">;
|
|
@@ -9246,6 +9638,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9246
9638
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9247
9639
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9248
9640
|
} | undefined;
|
|
9641
|
+
tag?: string | undefined;
|
|
9249
9642
|
hidden?: boolean | undefined;
|
|
9250
9643
|
root?: string | undefined;
|
|
9251
9644
|
} | {
|
|
@@ -9262,6 +9655,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9262
9655
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9263
9656
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9264
9657
|
} | undefined;
|
|
9658
|
+
tag?: string | undefined;
|
|
9265
9659
|
hidden?: boolean | undefined;
|
|
9266
9660
|
root?: string | undefined;
|
|
9267
9661
|
} | {
|
|
@@ -9272,6 +9666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9272
9666
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9273
9667
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9274
9668
|
} | undefined;
|
|
9669
|
+
tag?: string | undefined;
|
|
9275
9670
|
hidden?: boolean | undefined;
|
|
9276
9671
|
root?: string | undefined;
|
|
9277
9672
|
})[];
|
|
@@ -9291,6 +9686,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9291
9686
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9292
9687
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9293
9688
|
} | undefined;
|
|
9689
|
+
tag?: string | undefined;
|
|
9294
9690
|
hidden?: boolean | undefined;
|
|
9295
9691
|
root?: string | undefined;
|
|
9296
9692
|
} | {
|
|
@@ -9307,6 +9703,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9307
9703
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9308
9704
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9309
9705
|
} | undefined;
|
|
9706
|
+
tag?: string | undefined;
|
|
9310
9707
|
hidden?: boolean | undefined;
|
|
9311
9708
|
root?: string | undefined;
|
|
9312
9709
|
} | {
|
|
@@ -9317,6 +9714,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9317
9714
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9318
9715
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9319
9716
|
} | undefined;
|
|
9717
|
+
tag?: string | undefined;
|
|
9320
9718
|
hidden?: boolean | undefined;
|
|
9321
9719
|
root?: string | undefined;
|
|
9322
9720
|
})[];
|
|
@@ -9882,6 +10280,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9882
10280
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9883
10281
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9884
10282
|
} | undefined;
|
|
10283
|
+
tag?: string | undefined;
|
|
9885
10284
|
hidden?: boolean | undefined;
|
|
9886
10285
|
root?: string | undefined;
|
|
9887
10286
|
} | {
|
|
@@ -9898,6 +10297,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9898
10297
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9899
10298
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9900
10299
|
} | undefined;
|
|
10300
|
+
tag?: string | undefined;
|
|
9901
10301
|
hidden?: boolean | undefined;
|
|
9902
10302
|
root?: string | undefined;
|
|
9903
10303
|
} | {
|
|
@@ -9908,6 +10308,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9908
10308
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9909
10309
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9910
10310
|
} | undefined;
|
|
10311
|
+
tag?: string | undefined;
|
|
9911
10312
|
hidden?: boolean | undefined;
|
|
9912
10313
|
root?: string | undefined;
|
|
9913
10314
|
})[];
|
|
@@ -9945,6 +10346,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9945
10346
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9946
10347
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9947
10348
|
} | undefined;
|
|
10349
|
+
tag?: string | undefined;
|
|
9948
10350
|
hidden?: boolean | undefined;
|
|
9949
10351
|
root?: string | undefined;
|
|
9950
10352
|
} | {
|
|
@@ -9961,6 +10363,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9961
10363
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9962
10364
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9963
10365
|
} | undefined;
|
|
10366
|
+
tag?: string | undefined;
|
|
9964
10367
|
hidden?: boolean | undefined;
|
|
9965
10368
|
root?: string | undefined;
|
|
9966
10369
|
} | {
|
|
@@ -9971,6 +10374,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9971
10374
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9972
10375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
9973
10376
|
} | undefined;
|
|
10377
|
+
tag?: string | undefined;
|
|
9974
10378
|
hidden?: boolean | undefined;
|
|
9975
10379
|
root?: string | undefined;
|
|
9976
10380
|
})[];
|
|
@@ -10036,6 +10440,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10036
10440
|
links?: {
|
|
10037
10441
|
href: string;
|
|
10038
10442
|
label: string;
|
|
10443
|
+
icon?: string | {
|
|
10444
|
+
name: string;
|
|
10445
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10446
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10447
|
+
} | undefined;
|
|
10039
10448
|
}[] | undefined;
|
|
10040
10449
|
primary?: {
|
|
10041
10450
|
type: "button";
|
|
@@ -10207,6 +10616,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10207
10616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10208
10617
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10209
10618
|
} | undefined;
|
|
10619
|
+
tag?: string | undefined;
|
|
10210
10620
|
hidden?: boolean | undefined;
|
|
10211
10621
|
root?: string | undefined;
|
|
10212
10622
|
} | {
|
|
@@ -10223,6 +10633,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10223
10633
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10224
10634
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10225
10635
|
} | undefined;
|
|
10636
|
+
tag?: string | undefined;
|
|
10226
10637
|
hidden?: boolean | undefined;
|
|
10227
10638
|
root?: string | undefined;
|
|
10228
10639
|
} | {
|
|
@@ -10233,6 +10644,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10233
10644
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10234
10645
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10235
10646
|
} | undefined;
|
|
10647
|
+
tag?: string | undefined;
|
|
10236
10648
|
hidden?: boolean | undefined;
|
|
10237
10649
|
root?: string | undefined;
|
|
10238
10650
|
})[];
|
|
@@ -10270,6 +10682,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10270
10682
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10271
10683
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10272
10684
|
} | undefined;
|
|
10685
|
+
tag?: string | undefined;
|
|
10273
10686
|
hidden?: boolean | undefined;
|
|
10274
10687
|
root?: string | undefined;
|
|
10275
10688
|
} | {
|
|
@@ -10286,6 +10699,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10286
10699
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10287
10700
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10288
10701
|
} | undefined;
|
|
10702
|
+
tag?: string | undefined;
|
|
10289
10703
|
hidden?: boolean | undefined;
|
|
10290
10704
|
root?: string | undefined;
|
|
10291
10705
|
} | {
|
|
@@ -10296,6 +10710,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10296
10710
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10297
10711
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10298
10712
|
} | undefined;
|
|
10713
|
+
tag?: string | undefined;
|
|
10299
10714
|
hidden?: boolean | undefined;
|
|
10300
10715
|
root?: string | undefined;
|
|
10301
10716
|
})[];
|
|
@@ -10362,6 +10777,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10362
10777
|
links?: {
|
|
10363
10778
|
href: string;
|
|
10364
10779
|
label: string;
|
|
10780
|
+
icon?: string | {
|
|
10781
|
+
name: string;
|
|
10782
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10783
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10784
|
+
} | undefined;
|
|
10365
10785
|
}[] | undefined;
|
|
10366
10786
|
primary?: {
|
|
10367
10787
|
type: "button";
|
|
@@ -10719,13 +11139,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10719
11139
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
10720
11140
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10721
11141
|
label: z.ZodString;
|
|
11142
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11143
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11144
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11145
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11146
|
+
}, "strip", z.ZodTypeAny, {
|
|
11147
|
+
name: string;
|
|
11148
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11149
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11150
|
+
}, {
|
|
11151
|
+
name: string;
|
|
11152
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11153
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11154
|
+
}>]>>;
|
|
10722
11155
|
href: z.ZodString;
|
|
10723
11156
|
}, "strip", z.ZodTypeAny, {
|
|
10724
11157
|
href: string;
|
|
10725
11158
|
label: string;
|
|
11159
|
+
icon?: string | {
|
|
11160
|
+
name: string;
|
|
11161
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11162
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11163
|
+
} | undefined;
|
|
10726
11164
|
}, {
|
|
10727
11165
|
href: string;
|
|
10728
11166
|
label: string;
|
|
11167
|
+
icon?: string | {
|
|
11168
|
+
name: string;
|
|
11169
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11170
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11171
|
+
} | undefined;
|
|
10729
11172
|
}>, "many">>;
|
|
10730
11173
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10731
11174
|
type: z.ZodLiteral<"button">;
|
|
@@ -10753,6 +11196,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10753
11196
|
links?: {
|
|
10754
11197
|
href: string;
|
|
10755
11198
|
label: string;
|
|
11199
|
+
icon?: string | {
|
|
11200
|
+
name: string;
|
|
11201
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11202
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11203
|
+
} | undefined;
|
|
10756
11204
|
}[] | undefined;
|
|
10757
11205
|
primary?: {
|
|
10758
11206
|
type: "button";
|
|
@@ -10766,6 +11214,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10766
11214
|
links?: {
|
|
10767
11215
|
href: string;
|
|
10768
11216
|
label: string;
|
|
11217
|
+
icon?: string | {
|
|
11218
|
+
name: string;
|
|
11219
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11220
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11221
|
+
} | undefined;
|
|
10769
11222
|
}[] | undefined;
|
|
10770
11223
|
primary?: {
|
|
10771
11224
|
type: "button";
|
|
@@ -10838,6 +11291,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10838
11291
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10839
11292
|
}>]>>;
|
|
10840
11293
|
group: z.ZodString;
|
|
11294
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
10841
11295
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10842
11296
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10843
11297
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -10864,6 +11318,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10864
11318
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10865
11319
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10866
11320
|
} | undefined;
|
|
11321
|
+
tag?: string | undefined;
|
|
10867
11322
|
hidden?: boolean | undefined;
|
|
10868
11323
|
root?: string | undefined;
|
|
10869
11324
|
}, {
|
|
@@ -10880,6 +11335,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10880
11335
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10881
11336
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10882
11337
|
} | undefined;
|
|
11338
|
+
tag?: string | undefined;
|
|
10883
11339
|
hidden?: boolean | undefined;
|
|
10884
11340
|
root?: string | undefined;
|
|
10885
11341
|
}>, z.ZodObject<{
|
|
@@ -10897,6 +11353,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10897
11353
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10898
11354
|
}>]>>;
|
|
10899
11355
|
group: z.ZodString;
|
|
11356
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
10900
11357
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10901
11358
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10902
11359
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -10923,6 +11380,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10923
11380
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10924
11381
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10925
11382
|
} | undefined;
|
|
11383
|
+
tag?: string | undefined;
|
|
10926
11384
|
hidden?: boolean | undefined;
|
|
10927
11385
|
root?: string | undefined;
|
|
10928
11386
|
}, {
|
|
@@ -10939,6 +11397,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10939
11397
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10940
11398
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10941
11399
|
} | undefined;
|
|
11400
|
+
tag?: string | undefined;
|
|
10942
11401
|
hidden?: boolean | undefined;
|
|
10943
11402
|
root?: string | undefined;
|
|
10944
11403
|
}>, z.ZodObject<{
|
|
@@ -10956,6 +11415,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10956
11415
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10957
11416
|
}>]>>;
|
|
10958
11417
|
group: z.ZodString;
|
|
11418
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
10959
11419
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10960
11420
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
10961
11421
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -10967,6 +11427,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10967
11427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10968
11428
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10969
11429
|
} | undefined;
|
|
11430
|
+
tag?: string | undefined;
|
|
10970
11431
|
hidden?: boolean | undefined;
|
|
10971
11432
|
root?: string | undefined;
|
|
10972
11433
|
}, {
|
|
@@ -10977,6 +11438,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10977
11438
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10978
11439
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10979
11440
|
} | undefined;
|
|
11441
|
+
tag?: string | undefined;
|
|
10980
11442
|
hidden?: boolean | undefined;
|
|
10981
11443
|
root?: string | undefined;
|
|
10982
11444
|
}>]>, "many">;
|
|
@@ -10995,6 +11457,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10995
11457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10996
11458
|
library?: "fontawesome" | "lucide" | undefined;
|
|
10997
11459
|
} | undefined;
|
|
11460
|
+
tag?: string | undefined;
|
|
10998
11461
|
hidden?: boolean | undefined;
|
|
10999
11462
|
root?: string | undefined;
|
|
11000
11463
|
} | {
|
|
@@ -11011,6 +11474,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11011
11474
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11012
11475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11013
11476
|
} | undefined;
|
|
11477
|
+
tag?: string | undefined;
|
|
11014
11478
|
hidden?: boolean | undefined;
|
|
11015
11479
|
root?: string | undefined;
|
|
11016
11480
|
} | {
|
|
@@ -11021,6 +11485,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11021
11485
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11022
11486
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11023
11487
|
} | undefined;
|
|
11488
|
+
tag?: string | undefined;
|
|
11024
11489
|
hidden?: boolean | undefined;
|
|
11025
11490
|
root?: string | undefined;
|
|
11026
11491
|
})[];
|
|
@@ -11040,6 +11505,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11040
11505
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11041
11506
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11042
11507
|
} | undefined;
|
|
11508
|
+
tag?: string | undefined;
|
|
11043
11509
|
hidden?: boolean | undefined;
|
|
11044
11510
|
root?: string | undefined;
|
|
11045
11511
|
} | {
|
|
@@ -11056,6 +11522,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11056
11522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11057
11523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11058
11524
|
} | undefined;
|
|
11525
|
+
tag?: string | undefined;
|
|
11059
11526
|
hidden?: boolean | undefined;
|
|
11060
11527
|
root?: string | undefined;
|
|
11061
11528
|
} | {
|
|
@@ -11066,6 +11533,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11066
11533
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11067
11534
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11068
11535
|
} | undefined;
|
|
11536
|
+
tag?: string | undefined;
|
|
11069
11537
|
hidden?: boolean | undefined;
|
|
11070
11538
|
root?: string | undefined;
|
|
11071
11539
|
})[];
|
|
@@ -11631,6 +12099,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11631
12099
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11632
12100
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11633
12101
|
} | undefined;
|
|
12102
|
+
tag?: string | undefined;
|
|
11634
12103
|
hidden?: boolean | undefined;
|
|
11635
12104
|
root?: string | undefined;
|
|
11636
12105
|
} | {
|
|
@@ -11647,6 +12116,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11647
12116
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11648
12117
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11649
12118
|
} | undefined;
|
|
12119
|
+
tag?: string | undefined;
|
|
11650
12120
|
hidden?: boolean | undefined;
|
|
11651
12121
|
root?: string | undefined;
|
|
11652
12122
|
} | {
|
|
@@ -11657,6 +12127,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11657
12127
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11658
12128
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11659
12129
|
} | undefined;
|
|
12130
|
+
tag?: string | undefined;
|
|
11660
12131
|
hidden?: boolean | undefined;
|
|
11661
12132
|
root?: string | undefined;
|
|
11662
12133
|
})[];
|
|
@@ -11694,6 +12165,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11694
12165
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11695
12166
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11696
12167
|
} | undefined;
|
|
12168
|
+
tag?: string | undefined;
|
|
11697
12169
|
hidden?: boolean | undefined;
|
|
11698
12170
|
root?: string | undefined;
|
|
11699
12171
|
} | {
|
|
@@ -11710,6 +12182,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11710
12182
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11711
12183
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11712
12184
|
} | undefined;
|
|
12185
|
+
tag?: string | undefined;
|
|
11713
12186
|
hidden?: boolean | undefined;
|
|
11714
12187
|
root?: string | undefined;
|
|
11715
12188
|
} | {
|
|
@@ -11720,6 +12193,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11720
12193
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11721
12194
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11722
12195
|
} | undefined;
|
|
12196
|
+
tag?: string | undefined;
|
|
11723
12197
|
hidden?: boolean | undefined;
|
|
11724
12198
|
root?: string | undefined;
|
|
11725
12199
|
})[];
|
|
@@ -11785,6 +12259,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11785
12259
|
links?: {
|
|
11786
12260
|
href: string;
|
|
11787
12261
|
label: string;
|
|
12262
|
+
icon?: string | {
|
|
12263
|
+
name: string;
|
|
12264
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12265
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
12266
|
+
} | undefined;
|
|
11788
12267
|
}[] | undefined;
|
|
11789
12268
|
primary?: {
|
|
11790
12269
|
type: "button";
|
|
@@ -11956,6 +12435,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11956
12435
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11957
12436
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11958
12437
|
} | undefined;
|
|
12438
|
+
tag?: string | undefined;
|
|
11959
12439
|
hidden?: boolean | undefined;
|
|
11960
12440
|
root?: string | undefined;
|
|
11961
12441
|
} | {
|
|
@@ -11972,6 +12452,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11972
12452
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11973
12453
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11974
12454
|
} | undefined;
|
|
12455
|
+
tag?: string | undefined;
|
|
11975
12456
|
hidden?: boolean | undefined;
|
|
11976
12457
|
root?: string | undefined;
|
|
11977
12458
|
} | {
|
|
@@ -11982,6 +12463,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11982
12463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11983
12464
|
library?: "fontawesome" | "lucide" | undefined;
|
|
11984
12465
|
} | undefined;
|
|
12466
|
+
tag?: string | undefined;
|
|
11985
12467
|
hidden?: boolean | undefined;
|
|
11986
12468
|
root?: string | undefined;
|
|
11987
12469
|
})[];
|
|
@@ -12019,6 +12501,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12019
12501
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12020
12502
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12021
12503
|
} | undefined;
|
|
12504
|
+
tag?: string | undefined;
|
|
12022
12505
|
hidden?: boolean | undefined;
|
|
12023
12506
|
root?: string | undefined;
|
|
12024
12507
|
} | {
|
|
@@ -12035,6 +12518,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12035
12518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12036
12519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12037
12520
|
} | undefined;
|
|
12521
|
+
tag?: string | undefined;
|
|
12038
12522
|
hidden?: boolean | undefined;
|
|
12039
12523
|
root?: string | undefined;
|
|
12040
12524
|
} | {
|
|
@@ -12045,6 +12529,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12045
12529
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12046
12530
|
library?: "fontawesome" | "lucide" | undefined;
|
|
12047
12531
|
} | undefined;
|
|
12532
|
+
tag?: string | undefined;
|
|
12048
12533
|
hidden?: boolean | undefined;
|
|
12049
12534
|
root?: string | undefined;
|
|
12050
12535
|
})[];
|
|
@@ -12111,6 +12596,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12111
12596
|
links?: {
|
|
12112
12597
|
href: string;
|
|
12113
12598
|
label: string;
|
|
12599
|
+
icon?: string | {
|
|
12600
|
+
name: string;
|
|
12601
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12602
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
12603
|
+
} | undefined;
|
|
12114
12604
|
}[] | undefined;
|
|
12115
12605
|
primary?: {
|
|
12116
12606
|
type: "button";
|