@mintlify/validation 0.1.320 → 0.1.321
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/v1/anchors.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +190 -25
- package/dist/mint-config/schemas/v2/properties/icons.d.ts +3 -3
- package/dist/mint-config/schemas/v2/properties/icons.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +45 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +28 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/icon.js +10 -15
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +24 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +38 -5
- package/dist/mint-config/validateConfig.d.ts +70 -10
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -315,12 +315,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
315
315
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
316
316
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
317
317
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
318
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
318
319
|
}, "strip", z.ZodTypeAny, {
|
|
319
320
|
name: string;
|
|
320
321
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
322
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
321
323
|
}, {
|
|
322
324
|
name: string;
|
|
323
325
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
326
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
324
327
|
}>]>>;
|
|
325
328
|
group: z.ZodString;
|
|
326
329
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -347,6 +350,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
347
350
|
icon?: string | {
|
|
348
351
|
name: string;
|
|
349
352
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
353
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
350
354
|
} | undefined;
|
|
351
355
|
hidden?: boolean | undefined;
|
|
352
356
|
root?: string | undefined;
|
|
@@ -362,6 +366,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
362
366
|
icon?: string | {
|
|
363
367
|
name: string;
|
|
364
368
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
369
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
365
370
|
} | undefined;
|
|
366
371
|
hidden?: boolean | undefined;
|
|
367
372
|
root?: string | undefined;
|
|
@@ -369,12 +374,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
369
374
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
370
375
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
371
376
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
377
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
372
378
|
}, "strip", z.ZodTypeAny, {
|
|
373
379
|
name: string;
|
|
374
380
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
381
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
375
382
|
}, {
|
|
376
383
|
name: string;
|
|
377
384
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
385
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
378
386
|
}>]>>;
|
|
379
387
|
group: z.ZodString;
|
|
380
388
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -401,6 +409,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
401
409
|
icon?: string | {
|
|
402
410
|
name: string;
|
|
403
411
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
412
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
404
413
|
} | undefined;
|
|
405
414
|
hidden?: boolean | undefined;
|
|
406
415
|
root?: string | undefined;
|
|
@@ -416,6 +425,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
416
425
|
icon?: string | {
|
|
417
426
|
name: string;
|
|
418
427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
428
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
419
429
|
} | undefined;
|
|
420
430
|
hidden?: boolean | undefined;
|
|
421
431
|
root?: string | undefined;
|
|
@@ -423,12 +433,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
423
433
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
424
434
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
425
435
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
436
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
426
437
|
}, "strip", z.ZodTypeAny, {
|
|
427
438
|
name: string;
|
|
428
439
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
440
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
429
441
|
}, {
|
|
430
442
|
name: string;
|
|
431
443
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
444
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
432
445
|
}>]>>;
|
|
433
446
|
group: z.ZodString;
|
|
434
447
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -440,6 +453,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
440
453
|
icon?: string | {
|
|
441
454
|
name: string;
|
|
442
455
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
456
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
443
457
|
} | undefined;
|
|
444
458
|
hidden?: boolean | undefined;
|
|
445
459
|
root?: string | undefined;
|
|
@@ -449,6 +463,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
449
463
|
icon?: string | {
|
|
450
464
|
name: string;
|
|
451
465
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
466
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
452
467
|
} | undefined;
|
|
453
468
|
hidden?: boolean | undefined;
|
|
454
469
|
root?: string | undefined;
|
|
@@ -466,6 +481,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
466
481
|
icon?: string | {
|
|
467
482
|
name: string;
|
|
468
483
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
484
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
469
485
|
} | undefined;
|
|
470
486
|
hidden?: boolean | undefined;
|
|
471
487
|
root?: string | undefined;
|
|
@@ -481,6 +497,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
481
497
|
icon?: string | {
|
|
482
498
|
name: string;
|
|
483
499
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
500
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
484
501
|
} | undefined;
|
|
485
502
|
hidden?: boolean | undefined;
|
|
486
503
|
root?: string | undefined;
|
|
@@ -490,6 +507,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
490
507
|
icon?: string | {
|
|
491
508
|
name: string;
|
|
492
509
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
510
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
493
511
|
} | undefined;
|
|
494
512
|
hidden?: boolean | undefined;
|
|
495
513
|
root?: string | undefined;
|
|
@@ -508,6 +526,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
508
526
|
icon?: string | {
|
|
509
527
|
name: string;
|
|
510
528
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
529
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
511
530
|
} | undefined;
|
|
512
531
|
hidden?: boolean | undefined;
|
|
513
532
|
root?: string | undefined;
|
|
@@ -523,6 +542,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
523
542
|
icon?: string | {
|
|
524
543
|
name: string;
|
|
525
544
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
545
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
526
546
|
} | undefined;
|
|
527
547
|
hidden?: boolean | undefined;
|
|
528
548
|
root?: string | undefined;
|
|
@@ -532,6 +552,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
532
552
|
icon?: string | {
|
|
533
553
|
name: string;
|
|
534
554
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
555
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
535
556
|
} | undefined;
|
|
536
557
|
hidden?: boolean | undefined;
|
|
537
558
|
root?: string | undefined;
|
|
@@ -716,11 +737,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
716
737
|
} | undefined;
|
|
717
738
|
}>]>>;
|
|
718
739
|
icons: z.ZodOptional<z.ZodObject<{
|
|
719
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
740
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
720
741
|
}, "strip", z.ZodTypeAny, {
|
|
721
|
-
library: "fontawesome";
|
|
742
|
+
library: "fontawesome" | "lucide";
|
|
722
743
|
}, {
|
|
723
|
-
library: "fontawesome";
|
|
744
|
+
library: "fontawesome" | "lucide";
|
|
724
745
|
}>>;
|
|
725
746
|
styling: z.ZodOptional<z.ZodObject<{
|
|
726
747
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -1072,6 +1093,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1072
1093
|
icon?: string | {
|
|
1073
1094
|
name: string;
|
|
1074
1095
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1096
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1075
1097
|
} | undefined;
|
|
1076
1098
|
hidden?: boolean | undefined;
|
|
1077
1099
|
root?: string | undefined;
|
|
@@ -1087,6 +1109,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1087
1109
|
icon?: string | {
|
|
1088
1110
|
name: string;
|
|
1089
1111
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1112
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1090
1113
|
} | undefined;
|
|
1091
1114
|
hidden?: boolean | undefined;
|
|
1092
1115
|
root?: string | undefined;
|
|
@@ -1096,6 +1119,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1096
1119
|
icon?: string | {
|
|
1097
1120
|
name: string;
|
|
1098
1121
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1122
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1099
1123
|
} | undefined;
|
|
1100
1124
|
hidden?: boolean | undefined;
|
|
1101
1125
|
root?: string | undefined;
|
|
@@ -1132,6 +1156,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1132
1156
|
icon?: string | {
|
|
1133
1157
|
name: string;
|
|
1134
1158
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1159
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1135
1160
|
} | undefined;
|
|
1136
1161
|
hidden?: boolean | undefined;
|
|
1137
1162
|
root?: string | undefined;
|
|
@@ -1147,6 +1172,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1147
1172
|
icon?: string | {
|
|
1148
1173
|
name: string;
|
|
1149
1174
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1175
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1150
1176
|
} | undefined;
|
|
1151
1177
|
hidden?: boolean | undefined;
|
|
1152
1178
|
root?: string | undefined;
|
|
@@ -1156,6 +1182,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1156
1182
|
icon?: string | {
|
|
1157
1183
|
name: string;
|
|
1158
1184
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1185
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1159
1186
|
} | undefined;
|
|
1160
1187
|
hidden?: boolean | undefined;
|
|
1161
1188
|
root?: string | undefined;
|
|
@@ -1265,7 +1292,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1265
1292
|
} | undefined;
|
|
1266
1293
|
} | undefined;
|
|
1267
1294
|
icons?: {
|
|
1268
|
-
library: "fontawesome";
|
|
1295
|
+
library: "fontawesome" | "lucide";
|
|
1269
1296
|
} | undefined;
|
|
1270
1297
|
styling?: {
|
|
1271
1298
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -1379,6 +1406,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1379
1406
|
icon?: string | {
|
|
1380
1407
|
name: string;
|
|
1381
1408
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1409
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1382
1410
|
} | undefined;
|
|
1383
1411
|
hidden?: boolean | undefined;
|
|
1384
1412
|
root?: string | undefined;
|
|
@@ -1394,6 +1422,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1394
1422
|
icon?: string | {
|
|
1395
1423
|
name: string;
|
|
1396
1424
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1425
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1397
1426
|
} | undefined;
|
|
1398
1427
|
hidden?: boolean | undefined;
|
|
1399
1428
|
root?: string | undefined;
|
|
@@ -1403,6 +1432,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1403
1432
|
icon?: string | {
|
|
1404
1433
|
name: string;
|
|
1405
1434
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1435
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1406
1436
|
} | undefined;
|
|
1407
1437
|
hidden?: boolean | undefined;
|
|
1408
1438
|
root?: string | undefined;
|
|
@@ -1439,6 +1469,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1439
1469
|
icon?: string | {
|
|
1440
1470
|
name: string;
|
|
1441
1471
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1472
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1442
1473
|
} | undefined;
|
|
1443
1474
|
hidden?: boolean | undefined;
|
|
1444
1475
|
root?: string | undefined;
|
|
@@ -1454,6 +1485,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1454
1485
|
icon?: string | {
|
|
1455
1486
|
name: string;
|
|
1456
1487
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1488
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1457
1489
|
} | undefined;
|
|
1458
1490
|
hidden?: boolean | undefined;
|
|
1459
1491
|
root?: string | undefined;
|
|
@@ -1463,6 +1495,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1463
1495
|
icon?: string | {
|
|
1464
1496
|
name: string;
|
|
1465
1497
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1498
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1466
1499
|
} | undefined;
|
|
1467
1500
|
hidden?: boolean | undefined;
|
|
1468
1501
|
root?: string | undefined;
|
|
@@ -1573,7 +1606,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1573
1606
|
} | undefined;
|
|
1574
1607
|
} | undefined;
|
|
1575
1608
|
icons?: {
|
|
1576
|
-
library: "fontawesome";
|
|
1609
|
+
library: "fontawesome" | "lucide";
|
|
1577
1610
|
} | undefined;
|
|
1578
1611
|
styling?: {
|
|
1579
1612
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -1965,12 +1998,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1965
1998
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1966
1999
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1967
2000
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2001
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
1968
2002
|
}, "strip", z.ZodTypeAny, {
|
|
1969
2003
|
name: string;
|
|
1970
2004
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2005
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1971
2006
|
}, {
|
|
1972
2007
|
name: string;
|
|
1973
2008
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2009
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1974
2010
|
}>]>>;
|
|
1975
2011
|
group: z.ZodString;
|
|
1976
2012
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1997,6 +2033,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1997
2033
|
icon?: string | {
|
|
1998
2034
|
name: string;
|
|
1999
2035
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2036
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2000
2037
|
} | undefined;
|
|
2001
2038
|
hidden?: boolean | undefined;
|
|
2002
2039
|
root?: string | undefined;
|
|
@@ -2012,6 +2049,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2012
2049
|
icon?: string | {
|
|
2013
2050
|
name: string;
|
|
2014
2051
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2052
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2015
2053
|
} | undefined;
|
|
2016
2054
|
hidden?: boolean | undefined;
|
|
2017
2055
|
root?: string | undefined;
|
|
@@ -2019,12 +2057,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2019
2057
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2020
2058
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2021
2059
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2060
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2022
2061
|
}, "strip", z.ZodTypeAny, {
|
|
2023
2062
|
name: string;
|
|
2024
2063
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2064
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2025
2065
|
}, {
|
|
2026
2066
|
name: string;
|
|
2027
2067
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2068
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2028
2069
|
}>]>>;
|
|
2029
2070
|
group: z.ZodString;
|
|
2030
2071
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2051,6 +2092,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2051
2092
|
icon?: string | {
|
|
2052
2093
|
name: string;
|
|
2053
2094
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2095
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2054
2096
|
} | undefined;
|
|
2055
2097
|
hidden?: boolean | undefined;
|
|
2056
2098
|
root?: string | undefined;
|
|
@@ -2066,6 +2108,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2066
2108
|
icon?: string | {
|
|
2067
2109
|
name: string;
|
|
2068
2110
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2111
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2069
2112
|
} | undefined;
|
|
2070
2113
|
hidden?: boolean | undefined;
|
|
2071
2114
|
root?: string | undefined;
|
|
@@ -2073,12 +2116,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2073
2116
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2074
2117
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2075
2118
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2119
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2076
2120
|
}, "strip", z.ZodTypeAny, {
|
|
2077
2121
|
name: string;
|
|
2078
2122
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2123
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2079
2124
|
}, {
|
|
2080
2125
|
name: string;
|
|
2081
2126
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2127
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2082
2128
|
}>]>>;
|
|
2083
2129
|
group: z.ZodString;
|
|
2084
2130
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2090,6 +2136,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2090
2136
|
icon?: string | {
|
|
2091
2137
|
name: string;
|
|
2092
2138
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2139
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2093
2140
|
} | undefined;
|
|
2094
2141
|
hidden?: boolean | undefined;
|
|
2095
2142
|
root?: string | undefined;
|
|
@@ -2099,6 +2146,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2099
2146
|
icon?: string | {
|
|
2100
2147
|
name: string;
|
|
2101
2148
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2149
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2102
2150
|
} | undefined;
|
|
2103
2151
|
hidden?: boolean | undefined;
|
|
2104
2152
|
root?: string | undefined;
|
|
@@ -2116,6 +2164,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2116
2164
|
icon?: string | {
|
|
2117
2165
|
name: string;
|
|
2118
2166
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2167
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2119
2168
|
} | undefined;
|
|
2120
2169
|
hidden?: boolean | undefined;
|
|
2121
2170
|
root?: string | undefined;
|
|
@@ -2131,6 +2180,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2131
2180
|
icon?: string | {
|
|
2132
2181
|
name: string;
|
|
2133
2182
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2183
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2134
2184
|
} | undefined;
|
|
2135
2185
|
hidden?: boolean | undefined;
|
|
2136
2186
|
root?: string | undefined;
|
|
@@ -2140,6 +2190,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2140
2190
|
icon?: string | {
|
|
2141
2191
|
name: string;
|
|
2142
2192
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2193
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2143
2194
|
} | undefined;
|
|
2144
2195
|
hidden?: boolean | undefined;
|
|
2145
2196
|
root?: string | undefined;
|
|
@@ -2158,6 +2209,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2158
2209
|
icon?: string | {
|
|
2159
2210
|
name: string;
|
|
2160
2211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2212
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2161
2213
|
} | undefined;
|
|
2162
2214
|
hidden?: boolean | undefined;
|
|
2163
2215
|
root?: string | undefined;
|
|
@@ -2173,6 +2225,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2173
2225
|
icon?: string | {
|
|
2174
2226
|
name: string;
|
|
2175
2227
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2228
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2176
2229
|
} | undefined;
|
|
2177
2230
|
hidden?: boolean | undefined;
|
|
2178
2231
|
root?: string | undefined;
|
|
@@ -2182,6 +2235,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2182
2235
|
icon?: string | {
|
|
2183
2236
|
name: string;
|
|
2184
2237
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2238
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2185
2239
|
} | undefined;
|
|
2186
2240
|
hidden?: boolean | undefined;
|
|
2187
2241
|
root?: string | undefined;
|
|
@@ -2366,11 +2420,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2366
2420
|
} | undefined;
|
|
2367
2421
|
}>]>>;
|
|
2368
2422
|
icons: z.ZodOptional<z.ZodObject<{
|
|
2369
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
2423
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
2370
2424
|
}, "strip", z.ZodTypeAny, {
|
|
2371
|
-
library: "fontawesome";
|
|
2425
|
+
library: "fontawesome" | "lucide";
|
|
2372
2426
|
}, {
|
|
2373
|
-
library: "fontawesome";
|
|
2427
|
+
library: "fontawesome" | "lucide";
|
|
2374
2428
|
}>>;
|
|
2375
2429
|
styling: z.ZodOptional<z.ZodObject<{
|
|
2376
2430
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -2722,6 +2776,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2722
2776
|
icon?: string | {
|
|
2723
2777
|
name: string;
|
|
2724
2778
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2779
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2725
2780
|
} | undefined;
|
|
2726
2781
|
hidden?: boolean | undefined;
|
|
2727
2782
|
root?: string | undefined;
|
|
@@ -2737,6 +2792,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2737
2792
|
icon?: string | {
|
|
2738
2793
|
name: string;
|
|
2739
2794
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2795
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2740
2796
|
} | undefined;
|
|
2741
2797
|
hidden?: boolean | undefined;
|
|
2742
2798
|
root?: string | undefined;
|
|
@@ -2746,6 +2802,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2746
2802
|
icon?: string | {
|
|
2747
2803
|
name: string;
|
|
2748
2804
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2805
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2749
2806
|
} | undefined;
|
|
2750
2807
|
hidden?: boolean | undefined;
|
|
2751
2808
|
root?: string | undefined;
|
|
@@ -2782,6 +2839,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2782
2839
|
icon?: string | {
|
|
2783
2840
|
name: string;
|
|
2784
2841
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2842
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2785
2843
|
} | undefined;
|
|
2786
2844
|
hidden?: boolean | undefined;
|
|
2787
2845
|
root?: string | undefined;
|
|
@@ -2797,6 +2855,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2797
2855
|
icon?: string | {
|
|
2798
2856
|
name: string;
|
|
2799
2857
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2858
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2800
2859
|
} | undefined;
|
|
2801
2860
|
hidden?: boolean | undefined;
|
|
2802
2861
|
root?: string | undefined;
|
|
@@ -2806,6 +2865,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2806
2865
|
icon?: string | {
|
|
2807
2866
|
name: string;
|
|
2808
2867
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2868
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2809
2869
|
} | undefined;
|
|
2810
2870
|
hidden?: boolean | undefined;
|
|
2811
2871
|
root?: string | undefined;
|
|
@@ -2915,7 +2975,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2915
2975
|
} | undefined;
|
|
2916
2976
|
} | undefined;
|
|
2917
2977
|
icons?: {
|
|
2918
|
-
library: "fontawesome";
|
|
2978
|
+
library: "fontawesome" | "lucide";
|
|
2919
2979
|
} | undefined;
|
|
2920
2980
|
styling?: {
|
|
2921
2981
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -3029,6 +3089,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3029
3089
|
icon?: string | {
|
|
3030
3090
|
name: string;
|
|
3031
3091
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3092
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3032
3093
|
} | undefined;
|
|
3033
3094
|
hidden?: boolean | undefined;
|
|
3034
3095
|
root?: string | undefined;
|
|
@@ -3044,6 +3105,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3044
3105
|
icon?: string | {
|
|
3045
3106
|
name: string;
|
|
3046
3107
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3108
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3047
3109
|
} | undefined;
|
|
3048
3110
|
hidden?: boolean | undefined;
|
|
3049
3111
|
root?: string | undefined;
|
|
@@ -3053,6 +3115,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3053
3115
|
icon?: string | {
|
|
3054
3116
|
name: string;
|
|
3055
3117
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3118
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3056
3119
|
} | undefined;
|
|
3057
3120
|
hidden?: boolean | undefined;
|
|
3058
3121
|
root?: string | undefined;
|
|
@@ -3089,6 +3152,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3089
3152
|
icon?: string | {
|
|
3090
3153
|
name: string;
|
|
3091
3154
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3155
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3092
3156
|
} | undefined;
|
|
3093
3157
|
hidden?: boolean | undefined;
|
|
3094
3158
|
root?: string | undefined;
|
|
@@ -3104,6 +3168,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3104
3168
|
icon?: string | {
|
|
3105
3169
|
name: string;
|
|
3106
3170
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3171
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3107
3172
|
} | undefined;
|
|
3108
3173
|
hidden?: boolean | undefined;
|
|
3109
3174
|
root?: string | undefined;
|
|
@@ -3113,6 +3178,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3113
3178
|
icon?: string | {
|
|
3114
3179
|
name: string;
|
|
3115
3180
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3181
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3116
3182
|
} | undefined;
|
|
3117
3183
|
hidden?: boolean | undefined;
|
|
3118
3184
|
root?: string | undefined;
|
|
@@ -3223,7 +3289,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3223
3289
|
} | undefined;
|
|
3224
3290
|
} | undefined;
|
|
3225
3291
|
icons?: {
|
|
3226
|
-
library: "fontawesome";
|
|
3292
|
+
library: "fontawesome" | "lucide";
|
|
3227
3293
|
} | undefined;
|
|
3228
3294
|
styling?: {
|
|
3229
3295
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -3615,12 +3681,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3615
3681
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3616
3682
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3617
3683
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3684
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3618
3685
|
}, "strip", z.ZodTypeAny, {
|
|
3619
3686
|
name: string;
|
|
3620
3687
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3688
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3621
3689
|
}, {
|
|
3622
3690
|
name: string;
|
|
3623
3691
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3692
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3624
3693
|
}>]>>;
|
|
3625
3694
|
group: z.ZodString;
|
|
3626
3695
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3647,6 +3716,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3647
3716
|
icon?: string | {
|
|
3648
3717
|
name: string;
|
|
3649
3718
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3719
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3650
3720
|
} | undefined;
|
|
3651
3721
|
hidden?: boolean | undefined;
|
|
3652
3722
|
root?: string | undefined;
|
|
@@ -3662,6 +3732,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3662
3732
|
icon?: string | {
|
|
3663
3733
|
name: string;
|
|
3664
3734
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3735
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3665
3736
|
} | undefined;
|
|
3666
3737
|
hidden?: boolean | undefined;
|
|
3667
3738
|
root?: string | undefined;
|
|
@@ -3669,12 +3740,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3669
3740
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3670
3741
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3671
3742
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3743
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3672
3744
|
}, "strip", z.ZodTypeAny, {
|
|
3673
3745
|
name: string;
|
|
3674
3746
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3747
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3675
3748
|
}, {
|
|
3676
3749
|
name: string;
|
|
3677
3750
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3751
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3678
3752
|
}>]>>;
|
|
3679
3753
|
group: z.ZodString;
|
|
3680
3754
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3701,6 +3775,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3701
3775
|
icon?: string | {
|
|
3702
3776
|
name: string;
|
|
3703
3777
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3778
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3704
3779
|
} | undefined;
|
|
3705
3780
|
hidden?: boolean | undefined;
|
|
3706
3781
|
root?: string | undefined;
|
|
@@ -3716,6 +3791,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3716
3791
|
icon?: string | {
|
|
3717
3792
|
name: string;
|
|
3718
3793
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3794
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3719
3795
|
} | undefined;
|
|
3720
3796
|
hidden?: boolean | undefined;
|
|
3721
3797
|
root?: string | undefined;
|
|
@@ -3723,12 +3799,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3723
3799
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3724
3800
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3725
3801
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3802
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3726
3803
|
}, "strip", z.ZodTypeAny, {
|
|
3727
3804
|
name: string;
|
|
3728
3805
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3806
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3729
3807
|
}, {
|
|
3730
3808
|
name: string;
|
|
3731
3809
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3810
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3732
3811
|
}>]>>;
|
|
3733
3812
|
group: z.ZodString;
|
|
3734
3813
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3740,6 +3819,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3740
3819
|
icon?: string | {
|
|
3741
3820
|
name: string;
|
|
3742
3821
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3822
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3743
3823
|
} | undefined;
|
|
3744
3824
|
hidden?: boolean | undefined;
|
|
3745
3825
|
root?: string | undefined;
|
|
@@ -3749,6 +3829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3749
3829
|
icon?: string | {
|
|
3750
3830
|
name: string;
|
|
3751
3831
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3832
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3752
3833
|
} | undefined;
|
|
3753
3834
|
hidden?: boolean | undefined;
|
|
3754
3835
|
root?: string | undefined;
|
|
@@ -3766,6 +3847,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3766
3847
|
icon?: string | {
|
|
3767
3848
|
name: string;
|
|
3768
3849
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3850
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3769
3851
|
} | undefined;
|
|
3770
3852
|
hidden?: boolean | undefined;
|
|
3771
3853
|
root?: string | undefined;
|
|
@@ -3781,6 +3863,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3781
3863
|
icon?: string | {
|
|
3782
3864
|
name: string;
|
|
3783
3865
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3866
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3784
3867
|
} | undefined;
|
|
3785
3868
|
hidden?: boolean | undefined;
|
|
3786
3869
|
root?: string | undefined;
|
|
@@ -3790,6 +3873,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3790
3873
|
icon?: string | {
|
|
3791
3874
|
name: string;
|
|
3792
3875
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3876
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3793
3877
|
} | undefined;
|
|
3794
3878
|
hidden?: boolean | undefined;
|
|
3795
3879
|
root?: string | undefined;
|
|
@@ -3808,6 +3892,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3808
3892
|
icon?: string | {
|
|
3809
3893
|
name: string;
|
|
3810
3894
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3895
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3811
3896
|
} | undefined;
|
|
3812
3897
|
hidden?: boolean | undefined;
|
|
3813
3898
|
root?: string | undefined;
|
|
@@ -3823,6 +3908,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3823
3908
|
icon?: string | {
|
|
3824
3909
|
name: string;
|
|
3825
3910
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3911
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3826
3912
|
} | undefined;
|
|
3827
3913
|
hidden?: boolean | undefined;
|
|
3828
3914
|
root?: string | undefined;
|
|
@@ -3832,6 +3918,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3832
3918
|
icon?: string | {
|
|
3833
3919
|
name: string;
|
|
3834
3920
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3921
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3835
3922
|
} | undefined;
|
|
3836
3923
|
hidden?: boolean | undefined;
|
|
3837
3924
|
root?: string | undefined;
|
|
@@ -4016,11 +4103,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4016
4103
|
} | undefined;
|
|
4017
4104
|
}>]>>;
|
|
4018
4105
|
icons: z.ZodOptional<z.ZodObject<{
|
|
4019
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
4106
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
4020
4107
|
}, "strip", z.ZodTypeAny, {
|
|
4021
|
-
library: "fontawesome";
|
|
4108
|
+
library: "fontawesome" | "lucide";
|
|
4022
4109
|
}, {
|
|
4023
|
-
library: "fontawesome";
|
|
4110
|
+
library: "fontawesome" | "lucide";
|
|
4024
4111
|
}>>;
|
|
4025
4112
|
styling: z.ZodOptional<z.ZodObject<{
|
|
4026
4113
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -4372,6 +4459,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4372
4459
|
icon?: string | {
|
|
4373
4460
|
name: string;
|
|
4374
4461
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4462
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4375
4463
|
} | undefined;
|
|
4376
4464
|
hidden?: boolean | undefined;
|
|
4377
4465
|
root?: string | undefined;
|
|
@@ -4387,6 +4475,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4387
4475
|
icon?: string | {
|
|
4388
4476
|
name: string;
|
|
4389
4477
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4478
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4390
4479
|
} | undefined;
|
|
4391
4480
|
hidden?: boolean | undefined;
|
|
4392
4481
|
root?: string | undefined;
|
|
@@ -4396,6 +4485,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4396
4485
|
icon?: string | {
|
|
4397
4486
|
name: string;
|
|
4398
4487
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4488
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4399
4489
|
} | undefined;
|
|
4400
4490
|
hidden?: boolean | undefined;
|
|
4401
4491
|
root?: string | undefined;
|
|
@@ -4432,6 +4522,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4432
4522
|
icon?: string | {
|
|
4433
4523
|
name: string;
|
|
4434
4524
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4525
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4435
4526
|
} | undefined;
|
|
4436
4527
|
hidden?: boolean | undefined;
|
|
4437
4528
|
root?: string | undefined;
|
|
@@ -4447,6 +4538,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4447
4538
|
icon?: string | {
|
|
4448
4539
|
name: string;
|
|
4449
4540
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4541
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4450
4542
|
} | undefined;
|
|
4451
4543
|
hidden?: boolean | undefined;
|
|
4452
4544
|
root?: string | undefined;
|
|
@@ -4456,6 +4548,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4456
4548
|
icon?: string | {
|
|
4457
4549
|
name: string;
|
|
4458
4550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4551
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4459
4552
|
} | undefined;
|
|
4460
4553
|
hidden?: boolean | undefined;
|
|
4461
4554
|
root?: string | undefined;
|
|
@@ -4565,7 +4658,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4565
4658
|
} | undefined;
|
|
4566
4659
|
} | undefined;
|
|
4567
4660
|
icons?: {
|
|
4568
|
-
library: "fontawesome";
|
|
4661
|
+
library: "fontawesome" | "lucide";
|
|
4569
4662
|
} | undefined;
|
|
4570
4663
|
styling?: {
|
|
4571
4664
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -4679,6 +4772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4679
4772
|
icon?: string | {
|
|
4680
4773
|
name: string;
|
|
4681
4774
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4775
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4682
4776
|
} | undefined;
|
|
4683
4777
|
hidden?: boolean | undefined;
|
|
4684
4778
|
root?: string | undefined;
|
|
@@ -4694,6 +4788,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4694
4788
|
icon?: string | {
|
|
4695
4789
|
name: string;
|
|
4696
4790
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4791
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4697
4792
|
} | undefined;
|
|
4698
4793
|
hidden?: boolean | undefined;
|
|
4699
4794
|
root?: string | undefined;
|
|
@@ -4703,6 +4798,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4703
4798
|
icon?: string | {
|
|
4704
4799
|
name: string;
|
|
4705
4800
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4801
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4706
4802
|
} | undefined;
|
|
4707
4803
|
hidden?: boolean | undefined;
|
|
4708
4804
|
root?: string | undefined;
|
|
@@ -4739,6 +4835,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4739
4835
|
icon?: string | {
|
|
4740
4836
|
name: string;
|
|
4741
4837
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4838
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4742
4839
|
} | undefined;
|
|
4743
4840
|
hidden?: boolean | undefined;
|
|
4744
4841
|
root?: string | undefined;
|
|
@@ -4754,6 +4851,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4754
4851
|
icon?: string | {
|
|
4755
4852
|
name: string;
|
|
4756
4853
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4854
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4757
4855
|
} | undefined;
|
|
4758
4856
|
hidden?: boolean | undefined;
|
|
4759
4857
|
root?: string | undefined;
|
|
@@ -4763,6 +4861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4763
4861
|
icon?: string | {
|
|
4764
4862
|
name: string;
|
|
4765
4863
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4864
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4766
4865
|
} | undefined;
|
|
4767
4866
|
hidden?: boolean | undefined;
|
|
4768
4867
|
root?: string | undefined;
|
|
@@ -4873,7 +4972,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4873
4972
|
} | undefined;
|
|
4874
4973
|
} | undefined;
|
|
4875
4974
|
icons?: {
|
|
4876
|
-
library: "fontawesome";
|
|
4975
|
+
library: "fontawesome" | "lucide";
|
|
4877
4976
|
} | undefined;
|
|
4878
4977
|
styling?: {
|
|
4879
4978
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -5265,12 +5364,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5265
5364
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5266
5365
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5267
5366
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5367
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5268
5368
|
}, "strip", z.ZodTypeAny, {
|
|
5269
5369
|
name: string;
|
|
5270
5370
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5371
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5271
5372
|
}, {
|
|
5272
5373
|
name: string;
|
|
5273
5374
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5375
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5274
5376
|
}>]>>;
|
|
5275
5377
|
group: z.ZodString;
|
|
5276
5378
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5297,6 +5399,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5297
5399
|
icon?: string | {
|
|
5298
5400
|
name: string;
|
|
5299
5401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5402
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5300
5403
|
} | undefined;
|
|
5301
5404
|
hidden?: boolean | undefined;
|
|
5302
5405
|
root?: string | undefined;
|
|
@@ -5312,6 +5415,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5312
5415
|
icon?: string | {
|
|
5313
5416
|
name: string;
|
|
5314
5417
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5418
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5315
5419
|
} | undefined;
|
|
5316
5420
|
hidden?: boolean | undefined;
|
|
5317
5421
|
root?: string | undefined;
|
|
@@ -5319,12 +5423,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5319
5423
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5320
5424
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5321
5425
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5426
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5322
5427
|
}, "strip", z.ZodTypeAny, {
|
|
5323
5428
|
name: string;
|
|
5324
5429
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5430
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5325
5431
|
}, {
|
|
5326
5432
|
name: string;
|
|
5327
5433
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5434
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5328
5435
|
}>]>>;
|
|
5329
5436
|
group: z.ZodString;
|
|
5330
5437
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5351,6 +5458,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5351
5458
|
icon?: string | {
|
|
5352
5459
|
name: string;
|
|
5353
5460
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5461
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5354
5462
|
} | undefined;
|
|
5355
5463
|
hidden?: boolean | undefined;
|
|
5356
5464
|
root?: string | undefined;
|
|
@@ -5366,6 +5474,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5366
5474
|
icon?: string | {
|
|
5367
5475
|
name: string;
|
|
5368
5476
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5477
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5369
5478
|
} | undefined;
|
|
5370
5479
|
hidden?: boolean | undefined;
|
|
5371
5480
|
root?: string | undefined;
|
|
@@ -5373,12 +5482,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5373
5482
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5374
5483
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5375
5484
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5485
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5376
5486
|
}, "strip", z.ZodTypeAny, {
|
|
5377
5487
|
name: string;
|
|
5378
5488
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5489
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5379
5490
|
}, {
|
|
5380
5491
|
name: string;
|
|
5381
5492
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5493
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5382
5494
|
}>]>>;
|
|
5383
5495
|
group: z.ZodString;
|
|
5384
5496
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5390,6 +5502,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5390
5502
|
icon?: string | {
|
|
5391
5503
|
name: string;
|
|
5392
5504
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5505
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5393
5506
|
} | undefined;
|
|
5394
5507
|
hidden?: boolean | undefined;
|
|
5395
5508
|
root?: string | undefined;
|
|
@@ -5399,6 +5512,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5399
5512
|
icon?: string | {
|
|
5400
5513
|
name: string;
|
|
5401
5514
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5515
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5402
5516
|
} | undefined;
|
|
5403
5517
|
hidden?: boolean | undefined;
|
|
5404
5518
|
root?: string | undefined;
|
|
@@ -5416,6 +5530,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5416
5530
|
icon?: string | {
|
|
5417
5531
|
name: string;
|
|
5418
5532
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5533
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5419
5534
|
} | undefined;
|
|
5420
5535
|
hidden?: boolean | undefined;
|
|
5421
5536
|
root?: string | undefined;
|
|
@@ -5431,6 +5546,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5431
5546
|
icon?: string | {
|
|
5432
5547
|
name: string;
|
|
5433
5548
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5549
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5434
5550
|
} | undefined;
|
|
5435
5551
|
hidden?: boolean | undefined;
|
|
5436
5552
|
root?: string | undefined;
|
|
@@ -5440,6 +5556,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5440
5556
|
icon?: string | {
|
|
5441
5557
|
name: string;
|
|
5442
5558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5559
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5443
5560
|
} | undefined;
|
|
5444
5561
|
hidden?: boolean | undefined;
|
|
5445
5562
|
root?: string | undefined;
|
|
@@ -5458,6 +5575,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5458
5575
|
icon?: string | {
|
|
5459
5576
|
name: string;
|
|
5460
5577
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5578
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5461
5579
|
} | undefined;
|
|
5462
5580
|
hidden?: boolean | undefined;
|
|
5463
5581
|
root?: string | undefined;
|
|
@@ -5473,6 +5591,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5473
5591
|
icon?: string | {
|
|
5474
5592
|
name: string;
|
|
5475
5593
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5594
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5476
5595
|
} | undefined;
|
|
5477
5596
|
hidden?: boolean | undefined;
|
|
5478
5597
|
root?: string | undefined;
|
|
@@ -5482,6 +5601,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5482
5601
|
icon?: string | {
|
|
5483
5602
|
name: string;
|
|
5484
5603
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5604
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5485
5605
|
} | undefined;
|
|
5486
5606
|
hidden?: boolean | undefined;
|
|
5487
5607
|
root?: string | undefined;
|
|
@@ -5666,11 +5786,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5666
5786
|
} | undefined;
|
|
5667
5787
|
}>]>>;
|
|
5668
5788
|
icons: z.ZodOptional<z.ZodObject<{
|
|
5669
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
5789
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
5670
5790
|
}, "strip", z.ZodTypeAny, {
|
|
5671
|
-
library: "fontawesome";
|
|
5791
|
+
library: "fontawesome" | "lucide";
|
|
5672
5792
|
}, {
|
|
5673
|
-
library: "fontawesome";
|
|
5793
|
+
library: "fontawesome" | "lucide";
|
|
5674
5794
|
}>>;
|
|
5675
5795
|
styling: z.ZodOptional<z.ZodObject<{
|
|
5676
5796
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -6022,6 +6142,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6022
6142
|
icon?: string | {
|
|
6023
6143
|
name: string;
|
|
6024
6144
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6145
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6025
6146
|
} | undefined;
|
|
6026
6147
|
hidden?: boolean | undefined;
|
|
6027
6148
|
root?: string | undefined;
|
|
@@ -6037,6 +6158,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6037
6158
|
icon?: string | {
|
|
6038
6159
|
name: string;
|
|
6039
6160
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6161
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6040
6162
|
} | undefined;
|
|
6041
6163
|
hidden?: boolean | undefined;
|
|
6042
6164
|
root?: string | undefined;
|
|
@@ -6046,6 +6168,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6046
6168
|
icon?: string | {
|
|
6047
6169
|
name: string;
|
|
6048
6170
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6171
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6049
6172
|
} | undefined;
|
|
6050
6173
|
hidden?: boolean | undefined;
|
|
6051
6174
|
root?: string | undefined;
|
|
@@ -6082,6 +6205,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6082
6205
|
icon?: string | {
|
|
6083
6206
|
name: string;
|
|
6084
6207
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6208
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6085
6209
|
} | undefined;
|
|
6086
6210
|
hidden?: boolean | undefined;
|
|
6087
6211
|
root?: string | undefined;
|
|
@@ -6097,6 +6221,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6097
6221
|
icon?: string | {
|
|
6098
6222
|
name: string;
|
|
6099
6223
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6224
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6100
6225
|
} | undefined;
|
|
6101
6226
|
hidden?: boolean | undefined;
|
|
6102
6227
|
root?: string | undefined;
|
|
@@ -6106,6 +6231,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6106
6231
|
icon?: string | {
|
|
6107
6232
|
name: string;
|
|
6108
6233
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6234
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6109
6235
|
} | undefined;
|
|
6110
6236
|
hidden?: boolean | undefined;
|
|
6111
6237
|
root?: string | undefined;
|
|
@@ -6215,7 +6341,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6215
6341
|
} | undefined;
|
|
6216
6342
|
} | undefined;
|
|
6217
6343
|
icons?: {
|
|
6218
|
-
library: "fontawesome";
|
|
6344
|
+
library: "fontawesome" | "lucide";
|
|
6219
6345
|
} | undefined;
|
|
6220
6346
|
styling?: {
|
|
6221
6347
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -6329,6 +6455,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6329
6455
|
icon?: string | {
|
|
6330
6456
|
name: string;
|
|
6331
6457
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6458
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6332
6459
|
} | undefined;
|
|
6333
6460
|
hidden?: boolean | undefined;
|
|
6334
6461
|
root?: string | undefined;
|
|
@@ -6344,6 +6471,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6344
6471
|
icon?: string | {
|
|
6345
6472
|
name: string;
|
|
6346
6473
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6474
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6347
6475
|
} | undefined;
|
|
6348
6476
|
hidden?: boolean | undefined;
|
|
6349
6477
|
root?: string | undefined;
|
|
@@ -6353,6 +6481,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6353
6481
|
icon?: string | {
|
|
6354
6482
|
name: string;
|
|
6355
6483
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6484
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6356
6485
|
} | undefined;
|
|
6357
6486
|
hidden?: boolean | undefined;
|
|
6358
6487
|
root?: string | undefined;
|
|
@@ -6389,6 +6518,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6389
6518
|
icon?: string | {
|
|
6390
6519
|
name: string;
|
|
6391
6520
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6521
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6392
6522
|
} | undefined;
|
|
6393
6523
|
hidden?: boolean | undefined;
|
|
6394
6524
|
root?: string | undefined;
|
|
@@ -6404,6 +6534,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6404
6534
|
icon?: string | {
|
|
6405
6535
|
name: string;
|
|
6406
6536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6537
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6407
6538
|
} | undefined;
|
|
6408
6539
|
hidden?: boolean | undefined;
|
|
6409
6540
|
root?: string | undefined;
|
|
@@ -6413,6 +6544,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6413
6544
|
icon?: string | {
|
|
6414
6545
|
name: string;
|
|
6415
6546
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6547
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6416
6548
|
} | undefined;
|
|
6417
6549
|
hidden?: boolean | undefined;
|
|
6418
6550
|
root?: string | undefined;
|
|
@@ -6523,7 +6655,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6523
6655
|
} | undefined;
|
|
6524
6656
|
} | undefined;
|
|
6525
6657
|
icons?: {
|
|
6526
|
-
library: "fontawesome";
|
|
6658
|
+
library: "fontawesome" | "lucide";
|
|
6527
6659
|
} | undefined;
|
|
6528
6660
|
styling?: {
|
|
6529
6661
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -6915,12 +7047,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6915
7047
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6916
7048
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6917
7049
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7050
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
6918
7051
|
}, "strip", z.ZodTypeAny, {
|
|
6919
7052
|
name: string;
|
|
6920
7053
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7054
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6921
7055
|
}, {
|
|
6922
7056
|
name: string;
|
|
6923
7057
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7058
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6924
7059
|
}>]>>;
|
|
6925
7060
|
group: z.ZodString;
|
|
6926
7061
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6947,6 +7082,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6947
7082
|
icon?: string | {
|
|
6948
7083
|
name: string;
|
|
6949
7084
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7085
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6950
7086
|
} | undefined;
|
|
6951
7087
|
hidden?: boolean | undefined;
|
|
6952
7088
|
root?: string | undefined;
|
|
@@ -6962,6 +7098,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6962
7098
|
icon?: string | {
|
|
6963
7099
|
name: string;
|
|
6964
7100
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7101
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6965
7102
|
} | undefined;
|
|
6966
7103
|
hidden?: boolean | undefined;
|
|
6967
7104
|
root?: string | undefined;
|
|
@@ -6969,12 +7106,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6969
7106
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6970
7107
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6971
7108
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7109
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
6972
7110
|
}, "strip", z.ZodTypeAny, {
|
|
6973
7111
|
name: string;
|
|
6974
7112
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7113
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6975
7114
|
}, {
|
|
6976
7115
|
name: string;
|
|
6977
7116
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7117
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6978
7118
|
}>]>>;
|
|
6979
7119
|
group: z.ZodString;
|
|
6980
7120
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7001,6 +7141,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7001
7141
|
icon?: string | {
|
|
7002
7142
|
name: string;
|
|
7003
7143
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7144
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7004
7145
|
} | undefined;
|
|
7005
7146
|
hidden?: boolean | undefined;
|
|
7006
7147
|
root?: string | undefined;
|
|
@@ -7016,6 +7157,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7016
7157
|
icon?: string | {
|
|
7017
7158
|
name: string;
|
|
7018
7159
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7160
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7019
7161
|
} | undefined;
|
|
7020
7162
|
hidden?: boolean | undefined;
|
|
7021
7163
|
root?: string | undefined;
|
|
@@ -7023,12 +7165,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7023
7165
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7024
7166
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7025
7167
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7168
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7026
7169
|
}, "strip", z.ZodTypeAny, {
|
|
7027
7170
|
name: string;
|
|
7028
7171
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7172
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7029
7173
|
}, {
|
|
7030
7174
|
name: string;
|
|
7031
7175
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7176
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7032
7177
|
}>]>>;
|
|
7033
7178
|
group: z.ZodString;
|
|
7034
7179
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7040,6 +7185,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7040
7185
|
icon?: string | {
|
|
7041
7186
|
name: string;
|
|
7042
7187
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7188
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7043
7189
|
} | undefined;
|
|
7044
7190
|
hidden?: boolean | undefined;
|
|
7045
7191
|
root?: string | undefined;
|
|
@@ -7049,6 +7195,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7049
7195
|
icon?: string | {
|
|
7050
7196
|
name: string;
|
|
7051
7197
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7198
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7052
7199
|
} | undefined;
|
|
7053
7200
|
hidden?: boolean | undefined;
|
|
7054
7201
|
root?: string | undefined;
|
|
@@ -7066,6 +7213,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7066
7213
|
icon?: string | {
|
|
7067
7214
|
name: string;
|
|
7068
7215
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7216
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7069
7217
|
} | undefined;
|
|
7070
7218
|
hidden?: boolean | undefined;
|
|
7071
7219
|
root?: string | undefined;
|
|
@@ -7081,6 +7229,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7081
7229
|
icon?: string | {
|
|
7082
7230
|
name: string;
|
|
7083
7231
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7232
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7084
7233
|
} | undefined;
|
|
7085
7234
|
hidden?: boolean | undefined;
|
|
7086
7235
|
root?: string | undefined;
|
|
@@ -7090,6 +7239,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7090
7239
|
icon?: string | {
|
|
7091
7240
|
name: string;
|
|
7092
7241
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7242
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7093
7243
|
} | undefined;
|
|
7094
7244
|
hidden?: boolean | undefined;
|
|
7095
7245
|
root?: string | undefined;
|
|
@@ -7108,6 +7258,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7108
7258
|
icon?: string | {
|
|
7109
7259
|
name: string;
|
|
7110
7260
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7261
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7111
7262
|
} | undefined;
|
|
7112
7263
|
hidden?: boolean | undefined;
|
|
7113
7264
|
root?: string | undefined;
|
|
@@ -7123,6 +7274,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7123
7274
|
icon?: string | {
|
|
7124
7275
|
name: string;
|
|
7125
7276
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7277
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7126
7278
|
} | undefined;
|
|
7127
7279
|
hidden?: boolean | undefined;
|
|
7128
7280
|
root?: string | undefined;
|
|
@@ -7132,6 +7284,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7132
7284
|
icon?: string | {
|
|
7133
7285
|
name: string;
|
|
7134
7286
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7287
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7135
7288
|
} | undefined;
|
|
7136
7289
|
hidden?: boolean | undefined;
|
|
7137
7290
|
root?: string | undefined;
|
|
@@ -7316,11 +7469,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7316
7469
|
} | undefined;
|
|
7317
7470
|
}>]>>;
|
|
7318
7471
|
icons: z.ZodOptional<z.ZodObject<{
|
|
7319
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
7472
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
7320
7473
|
}, "strip", z.ZodTypeAny, {
|
|
7321
|
-
library: "fontawesome";
|
|
7474
|
+
library: "fontawesome" | "lucide";
|
|
7322
7475
|
}, {
|
|
7323
|
-
library: "fontawesome";
|
|
7476
|
+
library: "fontawesome" | "lucide";
|
|
7324
7477
|
}>>;
|
|
7325
7478
|
styling: z.ZodOptional<z.ZodObject<{
|
|
7326
7479
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -7672,6 +7825,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7672
7825
|
icon?: string | {
|
|
7673
7826
|
name: string;
|
|
7674
7827
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7828
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7675
7829
|
} | undefined;
|
|
7676
7830
|
hidden?: boolean | undefined;
|
|
7677
7831
|
root?: string | undefined;
|
|
@@ -7687,6 +7841,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7687
7841
|
icon?: string | {
|
|
7688
7842
|
name: string;
|
|
7689
7843
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7844
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7690
7845
|
} | undefined;
|
|
7691
7846
|
hidden?: boolean | undefined;
|
|
7692
7847
|
root?: string | undefined;
|
|
@@ -7696,6 +7851,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7696
7851
|
icon?: string | {
|
|
7697
7852
|
name: string;
|
|
7698
7853
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7854
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7699
7855
|
} | undefined;
|
|
7700
7856
|
hidden?: boolean | undefined;
|
|
7701
7857
|
root?: string | undefined;
|
|
@@ -7732,6 +7888,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7732
7888
|
icon?: string | {
|
|
7733
7889
|
name: string;
|
|
7734
7890
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7891
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7735
7892
|
} | undefined;
|
|
7736
7893
|
hidden?: boolean | undefined;
|
|
7737
7894
|
root?: string | undefined;
|
|
@@ -7747,6 +7904,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7747
7904
|
icon?: string | {
|
|
7748
7905
|
name: string;
|
|
7749
7906
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7907
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7750
7908
|
} | undefined;
|
|
7751
7909
|
hidden?: boolean | undefined;
|
|
7752
7910
|
root?: string | undefined;
|
|
@@ -7756,6 +7914,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7756
7914
|
icon?: string | {
|
|
7757
7915
|
name: string;
|
|
7758
7916
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7917
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7759
7918
|
} | undefined;
|
|
7760
7919
|
hidden?: boolean | undefined;
|
|
7761
7920
|
root?: string | undefined;
|
|
@@ -7865,7 +8024,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7865
8024
|
} | undefined;
|
|
7866
8025
|
} | undefined;
|
|
7867
8026
|
icons?: {
|
|
7868
|
-
library: "fontawesome";
|
|
8027
|
+
library: "fontawesome" | "lucide";
|
|
7869
8028
|
} | undefined;
|
|
7870
8029
|
styling?: {
|
|
7871
8030
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -7979,6 +8138,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7979
8138
|
icon?: string | {
|
|
7980
8139
|
name: string;
|
|
7981
8140
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8141
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7982
8142
|
} | undefined;
|
|
7983
8143
|
hidden?: boolean | undefined;
|
|
7984
8144
|
root?: string | undefined;
|
|
@@ -7994,6 +8154,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7994
8154
|
icon?: string | {
|
|
7995
8155
|
name: string;
|
|
7996
8156
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8157
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7997
8158
|
} | undefined;
|
|
7998
8159
|
hidden?: boolean | undefined;
|
|
7999
8160
|
root?: string | undefined;
|
|
@@ -8003,6 +8164,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8003
8164
|
icon?: string | {
|
|
8004
8165
|
name: string;
|
|
8005
8166
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8167
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8006
8168
|
} | undefined;
|
|
8007
8169
|
hidden?: boolean | undefined;
|
|
8008
8170
|
root?: string | undefined;
|
|
@@ -8039,6 +8201,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8039
8201
|
icon?: string | {
|
|
8040
8202
|
name: string;
|
|
8041
8203
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8204
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8042
8205
|
} | undefined;
|
|
8043
8206
|
hidden?: boolean | undefined;
|
|
8044
8207
|
root?: string | undefined;
|
|
@@ -8054,6 +8217,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8054
8217
|
icon?: string | {
|
|
8055
8218
|
name: string;
|
|
8056
8219
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8220
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8057
8221
|
} | undefined;
|
|
8058
8222
|
hidden?: boolean | undefined;
|
|
8059
8223
|
root?: string | undefined;
|
|
@@ -8063,6 +8227,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8063
8227
|
icon?: string | {
|
|
8064
8228
|
name: string;
|
|
8065
8229
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8230
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8066
8231
|
} | undefined;
|
|
8067
8232
|
hidden?: boolean | undefined;
|
|
8068
8233
|
root?: string | undefined;
|
|
@@ -8173,7 +8338,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8173
8338
|
} | undefined;
|
|
8174
8339
|
} | undefined;
|
|
8175
8340
|
icons?: {
|
|
8176
|
-
library: "fontawesome";
|
|
8341
|
+
library: "fontawesome" | "lucide";
|
|
8177
8342
|
} | undefined;
|
|
8178
8343
|
styling?: {
|
|
8179
8344
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|