@mintlify/validation 0.1.587 → 0.1.588
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 +558 -558
- package/dist/mint-config/schemas/v2/properties/contextual.d.ts +20 -20
- package/dist/mint-config/schemas/v2/properties/contextual.js +1 -0
- package/dist/mint-config/schemas/v2/properties/icons.d.ts +3 -3
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +21 -21
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +9 -9
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +28 -28
- package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +10 -10
- package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +3 -3
- package/dist/mint-config/schemas/v2/properties/reusable/icon.js +1 -1
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +9 -9
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +46 -46
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +62 -62
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +62 -62
- package/dist/mint-config/validateConfig.d.ts +128 -128
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -239,15 +239,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
239
239
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
240
240
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
241
241
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
242
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
242
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
244
|
name: string;
|
|
245
245
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
247
247
|
}, {
|
|
248
248
|
name: string;
|
|
249
249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
250
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
250
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
251
251
|
}>]>>;
|
|
252
252
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
253
253
|
}, {
|
|
@@ -259,7 +259,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
259
259
|
icon?: string | {
|
|
260
260
|
name: string;
|
|
261
261
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
262
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
262
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
263
263
|
} | undefined;
|
|
264
264
|
label?: string | undefined;
|
|
265
265
|
}, {
|
|
@@ -268,22 +268,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
268
268
|
icon?: string | {
|
|
269
269
|
name: string;
|
|
270
270
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
271
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
271
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
272
272
|
} | undefined;
|
|
273
273
|
label?: string | undefined;
|
|
274
274
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
275
275
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
276
276
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
277
277
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
278
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
278
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
name: string;
|
|
281
281
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
282
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
282
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
283
283
|
}, {
|
|
284
284
|
name: string;
|
|
285
285
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
287
287
|
}>]>>;
|
|
288
288
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
289
289
|
}, {
|
|
@@ -295,7 +295,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
295
295
|
icon?: string | {
|
|
296
296
|
name: string;
|
|
297
297
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
298
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
298
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
299
299
|
} | undefined;
|
|
300
300
|
label?: string | undefined;
|
|
301
301
|
}, {
|
|
@@ -304,22 +304,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
304
304
|
icon?: string | {
|
|
305
305
|
name: string;
|
|
306
306
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
307
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
307
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
308
308
|
} | undefined;
|
|
309
309
|
label?: string | undefined;
|
|
310
310
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
311
311
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
312
312
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
313
313
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
314
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
314
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
315
315
|
}, "strip", z.ZodTypeAny, {
|
|
316
316
|
name: string;
|
|
317
317
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
318
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
318
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
319
319
|
}, {
|
|
320
320
|
name: string;
|
|
321
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;
|
|
322
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
323
323
|
}>]>>;
|
|
324
324
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
325
325
|
}, {
|
|
@@ -332,7 +332,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
332
332
|
icon?: string | {
|
|
333
333
|
name: string;
|
|
334
334
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
335
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
335
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
336
336
|
} | undefined;
|
|
337
337
|
}, {
|
|
338
338
|
href: string;
|
|
@@ -341,7 +341,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
341
341
|
icon?: string | {
|
|
342
342
|
name: string;
|
|
343
343
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
344
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
344
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
345
345
|
} | undefined;
|
|
346
346
|
}>]>, "many">>;
|
|
347
347
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -402,7 +402,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
402
402
|
icon?: string | {
|
|
403
403
|
name: string;
|
|
404
404
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
405
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
405
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
406
406
|
} | undefined;
|
|
407
407
|
} | {
|
|
408
408
|
type: "github";
|
|
@@ -410,7 +410,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
410
410
|
icon?: string | {
|
|
411
411
|
name: string;
|
|
412
412
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
413
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
413
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
414
414
|
} | undefined;
|
|
415
415
|
label?: string | undefined;
|
|
416
416
|
} | {
|
|
@@ -419,7 +419,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
419
419
|
icon?: string | {
|
|
420
420
|
name: string;
|
|
421
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
422
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
422
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
423
423
|
} | undefined;
|
|
424
424
|
label?: string | undefined;
|
|
425
425
|
})[] | undefined;
|
|
@@ -444,7 +444,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
444
444
|
icon?: string | {
|
|
445
445
|
name: string;
|
|
446
446
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
447
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
447
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
448
448
|
} | undefined;
|
|
449
449
|
} | {
|
|
450
450
|
type: "github";
|
|
@@ -452,7 +452,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
452
452
|
icon?: string | {
|
|
453
453
|
name: string;
|
|
454
454
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
455
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
455
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
456
456
|
} | undefined;
|
|
457
457
|
label?: string | undefined;
|
|
458
458
|
} | {
|
|
@@ -461,7 +461,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
461
461
|
icon?: string | {
|
|
462
462
|
name: string;
|
|
463
463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
464
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
464
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
465
465
|
} | undefined;
|
|
466
466
|
label?: string | undefined;
|
|
467
467
|
})[] | undefined;
|
|
@@ -534,7 +534,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
534
534
|
icon?: string | {
|
|
535
535
|
name: string;
|
|
536
536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
537
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
537
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
538
538
|
} | undefined;
|
|
539
539
|
expanded?: boolean | undefined;
|
|
540
540
|
public?: boolean | undefined;
|
|
@@ -557,7 +557,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
557
557
|
icon?: string | {
|
|
558
558
|
name: string;
|
|
559
559
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
560
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
560
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
561
561
|
} | undefined;
|
|
562
562
|
expanded?: boolean | undefined;
|
|
563
563
|
public?: boolean | undefined;
|
|
@@ -582,7 +582,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
582
582
|
icon?: string | {
|
|
583
583
|
name: string;
|
|
584
584
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
585
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
585
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
586
586
|
} | undefined;
|
|
587
587
|
expanded?: boolean | undefined;
|
|
588
588
|
public?: boolean | undefined;
|
|
@@ -608,7 +608,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
608
608
|
icon?: string | {
|
|
609
609
|
name: string;
|
|
610
610
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
611
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
611
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
612
612
|
} | undefined;
|
|
613
613
|
expanded?: boolean | undefined;
|
|
614
614
|
public?: boolean | undefined;
|
|
@@ -636,7 +636,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
636
636
|
icon?: string | {
|
|
637
637
|
name: string;
|
|
638
638
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
639
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
639
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
640
640
|
} | undefined;
|
|
641
641
|
expanded?: boolean | undefined;
|
|
642
642
|
public?: boolean | undefined;
|
|
@@ -659,7 +659,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
659
659
|
icon?: string | {
|
|
660
660
|
name: string;
|
|
661
661
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
662
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
662
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
663
663
|
} | undefined;
|
|
664
664
|
expanded?: boolean | undefined;
|
|
665
665
|
public?: boolean | undefined;
|
|
@@ -684,7 +684,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
684
684
|
icon?: string | {
|
|
685
685
|
name: string;
|
|
686
686
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
687
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
687
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
688
688
|
} | undefined;
|
|
689
689
|
expanded?: boolean | undefined;
|
|
690
690
|
public?: boolean | undefined;
|
|
@@ -710,7 +710,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
710
710
|
icon?: string | {
|
|
711
711
|
name: string;
|
|
712
712
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
713
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
713
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
714
714
|
} | undefined;
|
|
715
715
|
expanded?: boolean | undefined;
|
|
716
716
|
public?: boolean | undefined;
|
|
@@ -900,11 +900,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
900
900
|
} | undefined;
|
|
901
901
|
}>]>>;
|
|
902
902
|
icons: z.ZodOptional<z.ZodObject<{
|
|
903
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
903
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
904
904
|
}, "strip", z.ZodTypeAny, {
|
|
905
|
-
library: "fontawesome" | "lucide";
|
|
905
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
906
906
|
}, {
|
|
907
|
-
library: "fontawesome" | "lucide";
|
|
907
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
908
908
|
}>>;
|
|
909
909
|
styling: z.ZodOptional<z.ZodObject<{
|
|
910
910
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -1317,21 +1317,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1317
1317
|
};
|
|
1318
1318
|
}>>;
|
|
1319
1319
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
1320
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
1320
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
1321
1321
|
title: z.ZodString;
|
|
1322
1322
|
description: z.ZodString;
|
|
1323
1323
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1324
1324
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
1325
1325
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
1326
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
1326
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
1327
1327
|
}, "strip", z.ZodTypeAny, {
|
|
1328
1328
|
name: string;
|
|
1329
1329
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1330
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1330
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1331
1331
|
}, {
|
|
1332
1332
|
name: string;
|
|
1333
1333
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1334
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1334
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1335
1335
|
}>]>>;
|
|
1336
1336
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1337
1337
|
base: z.ZodString;
|
|
@@ -1371,7 +1371,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1371
1371
|
icon?: string | {
|
|
1372
1372
|
name: string;
|
|
1373
1373
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1374
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1374
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1375
1375
|
} | undefined;
|
|
1376
1376
|
}, {
|
|
1377
1377
|
href: string | {
|
|
@@ -1386,9 +1386,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1386
1386
|
icon?: string | {
|
|
1387
1387
|
name: string;
|
|
1388
1388
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1389
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1389
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1390
1390
|
} | undefined;
|
|
1391
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1391
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
1392
1392
|
href: string | {
|
|
1393
1393
|
base: string;
|
|
1394
1394
|
query?: {
|
|
@@ -1401,9 +1401,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1401
1401
|
icon?: string | {
|
|
1402
1402
|
name: string;
|
|
1403
1403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1404
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1404
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1405
1405
|
} | undefined;
|
|
1406
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1406
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
1407
1407
|
href: string | {
|
|
1408
1408
|
base: string;
|
|
1409
1409
|
query?: {
|
|
@@ -1416,12 +1416,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1416
1416
|
icon?: string | {
|
|
1417
1417
|
name: string;
|
|
1418
1418
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1419
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1419
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1420
1420
|
} | undefined;
|
|
1421
1421
|
})[]>;
|
|
1422
1422
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
1423
1423
|
}, "strip", z.ZodTypeAny, {
|
|
1424
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1424
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
1425
1425
|
href: string | {
|
|
1426
1426
|
base: string;
|
|
1427
1427
|
query?: {
|
|
@@ -1434,12 +1434,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1434
1434
|
icon?: string | {
|
|
1435
1435
|
name: string;
|
|
1436
1436
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1437
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1437
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1438
1438
|
} | undefined;
|
|
1439
1439
|
})[];
|
|
1440
1440
|
display: "header" | "toc";
|
|
1441
1441
|
}, {
|
|
1442
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1442
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
1443
1443
|
href: string | {
|
|
1444
1444
|
base: string;
|
|
1445
1445
|
query?: {
|
|
@@ -1452,7 +1452,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1452
1452
|
icon?: string | {
|
|
1453
1453
|
name: string;
|
|
1454
1454
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1455
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1455
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1456
1456
|
} | undefined;
|
|
1457
1457
|
})[];
|
|
1458
1458
|
display?: "header" | "toc" | undefined;
|
|
@@ -1528,7 +1528,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1528
1528
|
icon?: string | {
|
|
1529
1529
|
name: string;
|
|
1530
1530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1531
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1531
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1532
1532
|
} | undefined;
|
|
1533
1533
|
expanded?: boolean | undefined;
|
|
1534
1534
|
public?: boolean | undefined;
|
|
@@ -1554,7 +1554,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1554
1554
|
icon?: string | {
|
|
1555
1555
|
name: string;
|
|
1556
1556
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1557
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1557
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1558
1558
|
} | undefined;
|
|
1559
1559
|
expanded?: boolean | undefined;
|
|
1560
1560
|
public?: boolean | undefined;
|
|
@@ -1767,7 +1767,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1767
1767
|
icon?: string | {
|
|
1768
1768
|
name: string;
|
|
1769
1769
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1770
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1770
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1771
1771
|
} | undefined;
|
|
1772
1772
|
} | {
|
|
1773
1773
|
type: "github";
|
|
@@ -1775,7 +1775,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1775
1775
|
icon?: string | {
|
|
1776
1776
|
name: string;
|
|
1777
1777
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1778
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1778
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1779
1779
|
} | undefined;
|
|
1780
1780
|
label?: string | undefined;
|
|
1781
1781
|
} | {
|
|
@@ -1784,13 +1784,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1784
1784
|
icon?: string | {
|
|
1785
1785
|
name: string;
|
|
1786
1786
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1787
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1787
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1788
1788
|
} | undefined;
|
|
1789
1789
|
label?: string | undefined;
|
|
1790
1790
|
})[] | undefined;
|
|
1791
1791
|
} | undefined;
|
|
1792
1792
|
icons?: {
|
|
1793
|
-
library: "fontawesome" | "lucide";
|
|
1793
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
1794
1794
|
} | undefined;
|
|
1795
1795
|
styling?: {
|
|
1796
1796
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -1813,7 +1813,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1813
1813
|
};
|
|
1814
1814
|
} | undefined;
|
|
1815
1815
|
contextual?: {
|
|
1816
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
1816
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
1817
1817
|
href: string | {
|
|
1818
1818
|
base: string;
|
|
1819
1819
|
query?: {
|
|
@@ -1826,7 +1826,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1826
1826
|
icon?: string | {
|
|
1827
1827
|
name: string;
|
|
1828
1828
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1829
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1829
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1830
1830
|
} | undefined;
|
|
1831
1831
|
})[];
|
|
1832
1832
|
display: "header" | "toc";
|
|
@@ -1873,7 +1873,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1873
1873
|
icon?: string | {
|
|
1874
1874
|
name: string;
|
|
1875
1875
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1876
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1876
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1877
1877
|
} | undefined;
|
|
1878
1878
|
expanded?: boolean | undefined;
|
|
1879
1879
|
public?: boolean | undefined;
|
|
@@ -1899,7 +1899,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1899
1899
|
icon?: string | {
|
|
1900
1900
|
name: string;
|
|
1901
1901
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1902
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
1902
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
1903
1903
|
} | undefined;
|
|
1904
1904
|
expanded?: boolean | undefined;
|
|
1905
1905
|
public?: boolean | undefined;
|
|
@@ -2113,7 +2113,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2113
2113
|
icon?: string | {
|
|
2114
2114
|
name: string;
|
|
2115
2115
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2116
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2116
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2117
2117
|
} | undefined;
|
|
2118
2118
|
} | {
|
|
2119
2119
|
type: "github";
|
|
@@ -2121,7 +2121,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2121
2121
|
icon?: string | {
|
|
2122
2122
|
name: string;
|
|
2123
2123
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2124
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2124
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2125
2125
|
} | undefined;
|
|
2126
2126
|
label?: string | undefined;
|
|
2127
2127
|
} | {
|
|
@@ -2130,13 +2130,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2130
2130
|
icon?: string | {
|
|
2131
2131
|
name: string;
|
|
2132
2132
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2133
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2133
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2134
2134
|
} | undefined;
|
|
2135
2135
|
label?: string | undefined;
|
|
2136
2136
|
})[] | undefined;
|
|
2137
2137
|
} | undefined;
|
|
2138
2138
|
icons?: {
|
|
2139
|
-
library: "fontawesome" | "lucide";
|
|
2139
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
2140
2140
|
} | undefined;
|
|
2141
2141
|
styling?: {
|
|
2142
2142
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -2159,7 +2159,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2159
2159
|
};
|
|
2160
2160
|
} | undefined;
|
|
2161
2161
|
contextual?: {
|
|
2162
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
2162
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
2163
2163
|
href: string | {
|
|
2164
2164
|
base: string;
|
|
2165
2165
|
query?: {
|
|
@@ -2172,7 +2172,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2172
2172
|
icon?: string | {
|
|
2173
2173
|
name: string;
|
|
2174
2174
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2175
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2175
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2176
2176
|
} | undefined;
|
|
2177
2177
|
})[];
|
|
2178
2178
|
display?: "header" | "toc" | undefined;
|
|
@@ -2424,15 +2424,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2424
2424
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2425
2425
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2426
2426
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2427
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2427
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
2428
2428
|
}, "strip", z.ZodTypeAny, {
|
|
2429
2429
|
name: string;
|
|
2430
2430
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2431
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2431
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2432
2432
|
}, {
|
|
2433
2433
|
name: string;
|
|
2434
2434
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2435
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2435
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2436
2436
|
}>]>>;
|
|
2437
2437
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2438
2438
|
}, {
|
|
@@ -2444,7 +2444,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2444
2444
|
icon?: string | {
|
|
2445
2445
|
name: string;
|
|
2446
2446
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2447
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2447
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2448
2448
|
} | undefined;
|
|
2449
2449
|
label?: string | undefined;
|
|
2450
2450
|
}, {
|
|
@@ -2453,22 +2453,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2453
2453
|
icon?: string | {
|
|
2454
2454
|
name: string;
|
|
2455
2455
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2456
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2456
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2457
2457
|
} | undefined;
|
|
2458
2458
|
label?: string | undefined;
|
|
2459
2459
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2460
2460
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2461
2461
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2462
2462
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2463
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2463
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
2464
2464
|
}, "strip", z.ZodTypeAny, {
|
|
2465
2465
|
name: string;
|
|
2466
2466
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2467
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2467
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2468
2468
|
}, {
|
|
2469
2469
|
name: string;
|
|
2470
2470
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2471
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2471
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2472
2472
|
}>]>>;
|
|
2473
2473
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2474
2474
|
}, {
|
|
@@ -2480,7 +2480,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2480
2480
|
icon?: string | {
|
|
2481
2481
|
name: string;
|
|
2482
2482
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2483
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2483
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2484
2484
|
} | undefined;
|
|
2485
2485
|
label?: string | undefined;
|
|
2486
2486
|
}, {
|
|
@@ -2489,22 +2489,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2489
2489
|
icon?: string | {
|
|
2490
2490
|
name: string;
|
|
2491
2491
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2492
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2492
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2493
2493
|
} | undefined;
|
|
2494
2494
|
label?: string | undefined;
|
|
2495
2495
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2496
2496
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2497
2497
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2498
2498
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2499
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2499
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
2500
2500
|
}, "strip", z.ZodTypeAny, {
|
|
2501
2501
|
name: string;
|
|
2502
2502
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2503
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2503
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2504
2504
|
}, {
|
|
2505
2505
|
name: string;
|
|
2506
2506
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2507
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2507
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2508
2508
|
}>]>>;
|
|
2509
2509
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
2510
2510
|
}, {
|
|
@@ -2517,7 +2517,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2517
2517
|
icon?: string | {
|
|
2518
2518
|
name: string;
|
|
2519
2519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2520
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2520
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2521
2521
|
} | undefined;
|
|
2522
2522
|
}, {
|
|
2523
2523
|
href: string;
|
|
@@ -2526,7 +2526,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2526
2526
|
icon?: string | {
|
|
2527
2527
|
name: string;
|
|
2528
2528
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2529
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2529
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2530
2530
|
} | undefined;
|
|
2531
2531
|
}>]>, "many">>;
|
|
2532
2532
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -2587,7 +2587,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2587
2587
|
icon?: string | {
|
|
2588
2588
|
name: string;
|
|
2589
2589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2590
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2590
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2591
2591
|
} | undefined;
|
|
2592
2592
|
} | {
|
|
2593
2593
|
type: "github";
|
|
@@ -2595,7 +2595,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2595
2595
|
icon?: string | {
|
|
2596
2596
|
name: string;
|
|
2597
2597
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2598
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2598
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2599
2599
|
} | undefined;
|
|
2600
2600
|
label?: string | undefined;
|
|
2601
2601
|
} | {
|
|
@@ -2604,7 +2604,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2604
2604
|
icon?: string | {
|
|
2605
2605
|
name: string;
|
|
2606
2606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2607
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2607
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2608
2608
|
} | undefined;
|
|
2609
2609
|
label?: string | undefined;
|
|
2610
2610
|
})[] | undefined;
|
|
@@ -2629,7 +2629,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2629
2629
|
icon?: string | {
|
|
2630
2630
|
name: string;
|
|
2631
2631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2632
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2632
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2633
2633
|
} | undefined;
|
|
2634
2634
|
} | {
|
|
2635
2635
|
type: "github";
|
|
@@ -2637,7 +2637,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2637
2637
|
icon?: string | {
|
|
2638
2638
|
name: string;
|
|
2639
2639
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2640
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2640
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2641
2641
|
} | undefined;
|
|
2642
2642
|
label?: string | undefined;
|
|
2643
2643
|
} | {
|
|
@@ -2646,7 +2646,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2646
2646
|
icon?: string | {
|
|
2647
2647
|
name: string;
|
|
2648
2648
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2649
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2649
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2650
2650
|
} | undefined;
|
|
2651
2651
|
label?: string | undefined;
|
|
2652
2652
|
})[] | undefined;
|
|
@@ -2719,7 +2719,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2719
2719
|
icon?: string | {
|
|
2720
2720
|
name: string;
|
|
2721
2721
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2722
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2722
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2723
2723
|
} | undefined;
|
|
2724
2724
|
expanded?: boolean | undefined;
|
|
2725
2725
|
public?: boolean | undefined;
|
|
@@ -2742,7 +2742,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2742
2742
|
icon?: string | {
|
|
2743
2743
|
name: string;
|
|
2744
2744
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2745
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2745
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2746
2746
|
} | undefined;
|
|
2747
2747
|
expanded?: boolean | undefined;
|
|
2748
2748
|
public?: boolean | undefined;
|
|
@@ -2767,7 +2767,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2767
2767
|
icon?: string | {
|
|
2768
2768
|
name: string;
|
|
2769
2769
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2770
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2770
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2771
2771
|
} | undefined;
|
|
2772
2772
|
expanded?: boolean | undefined;
|
|
2773
2773
|
public?: boolean | undefined;
|
|
@@ -2793,7 +2793,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2793
2793
|
icon?: string | {
|
|
2794
2794
|
name: string;
|
|
2795
2795
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2796
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2796
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2797
2797
|
} | undefined;
|
|
2798
2798
|
expanded?: boolean | undefined;
|
|
2799
2799
|
public?: boolean | undefined;
|
|
@@ -2821,7 +2821,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2821
2821
|
icon?: string | {
|
|
2822
2822
|
name: string;
|
|
2823
2823
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2824
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2824
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2825
2825
|
} | undefined;
|
|
2826
2826
|
expanded?: boolean | undefined;
|
|
2827
2827
|
public?: boolean | undefined;
|
|
@@ -2844,7 +2844,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2844
2844
|
icon?: string | {
|
|
2845
2845
|
name: string;
|
|
2846
2846
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2847
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2847
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2848
2848
|
} | undefined;
|
|
2849
2849
|
expanded?: boolean | undefined;
|
|
2850
2850
|
public?: boolean | undefined;
|
|
@@ -2869,7 +2869,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2869
2869
|
icon?: string | {
|
|
2870
2870
|
name: string;
|
|
2871
2871
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2872
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2872
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2873
2873
|
} | undefined;
|
|
2874
2874
|
expanded?: boolean | undefined;
|
|
2875
2875
|
public?: boolean | undefined;
|
|
@@ -2895,7 +2895,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2895
2895
|
icon?: string | {
|
|
2896
2896
|
name: string;
|
|
2897
2897
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2898
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
2898
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
2899
2899
|
} | undefined;
|
|
2900
2900
|
expanded?: boolean | undefined;
|
|
2901
2901
|
public?: boolean | undefined;
|
|
@@ -3085,11 +3085,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3085
3085
|
} | undefined;
|
|
3086
3086
|
}>]>>;
|
|
3087
3087
|
icons: z.ZodOptional<z.ZodObject<{
|
|
3088
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
3088
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
3089
3089
|
}, "strip", z.ZodTypeAny, {
|
|
3090
|
-
library: "fontawesome" | "lucide";
|
|
3090
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
3091
3091
|
}, {
|
|
3092
|
-
library: "fontawesome" | "lucide";
|
|
3092
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
3093
3093
|
}>>;
|
|
3094
3094
|
styling: z.ZodOptional<z.ZodObject<{
|
|
3095
3095
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -3502,21 +3502,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3502
3502
|
};
|
|
3503
3503
|
}>>;
|
|
3504
3504
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
3505
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
3505
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
3506
3506
|
title: z.ZodString;
|
|
3507
3507
|
description: z.ZodString;
|
|
3508
3508
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3509
3509
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3510
3510
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3511
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3511
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
3512
3512
|
}, "strip", z.ZodTypeAny, {
|
|
3513
3513
|
name: string;
|
|
3514
3514
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3515
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3515
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3516
3516
|
}, {
|
|
3517
3517
|
name: string;
|
|
3518
3518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3519
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3519
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3520
3520
|
}>]>>;
|
|
3521
3521
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3522
3522
|
base: z.ZodString;
|
|
@@ -3556,7 +3556,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3556
3556
|
icon?: string | {
|
|
3557
3557
|
name: string;
|
|
3558
3558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3559
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3559
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3560
3560
|
} | undefined;
|
|
3561
3561
|
}, {
|
|
3562
3562
|
href: string | {
|
|
@@ -3571,9 +3571,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3571
3571
|
icon?: string | {
|
|
3572
3572
|
name: string;
|
|
3573
3573
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3574
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3574
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3575
3575
|
} | undefined;
|
|
3576
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3576
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3577
3577
|
href: string | {
|
|
3578
3578
|
base: string;
|
|
3579
3579
|
query?: {
|
|
@@ -3586,9 +3586,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3586
3586
|
icon?: string | {
|
|
3587
3587
|
name: string;
|
|
3588
3588
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3589
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3589
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3590
3590
|
} | undefined;
|
|
3591
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3591
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3592
3592
|
href: string | {
|
|
3593
3593
|
base: string;
|
|
3594
3594
|
query?: {
|
|
@@ -3601,12 +3601,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3601
3601
|
icon?: string | {
|
|
3602
3602
|
name: string;
|
|
3603
3603
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3604
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3604
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3605
3605
|
} | undefined;
|
|
3606
3606
|
})[]>;
|
|
3607
3607
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
3608
3608
|
}, "strip", z.ZodTypeAny, {
|
|
3609
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3609
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3610
3610
|
href: string | {
|
|
3611
3611
|
base: string;
|
|
3612
3612
|
query?: {
|
|
@@ -3619,12 +3619,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3619
3619
|
icon?: string | {
|
|
3620
3620
|
name: string;
|
|
3621
3621
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3622
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3622
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3623
3623
|
} | undefined;
|
|
3624
3624
|
})[];
|
|
3625
3625
|
display: "header" | "toc";
|
|
3626
3626
|
}, {
|
|
3627
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
3627
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
3628
3628
|
href: string | {
|
|
3629
3629
|
base: string;
|
|
3630
3630
|
query?: {
|
|
@@ -3637,7 +3637,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3637
3637
|
icon?: string | {
|
|
3638
3638
|
name: string;
|
|
3639
3639
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3640
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3640
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3641
3641
|
} | undefined;
|
|
3642
3642
|
})[];
|
|
3643
3643
|
display?: "header" | "toc" | undefined;
|
|
@@ -3713,7 +3713,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3713
3713
|
icon?: string | {
|
|
3714
3714
|
name: string;
|
|
3715
3715
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3716
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3716
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3717
3717
|
} | undefined;
|
|
3718
3718
|
expanded?: boolean | undefined;
|
|
3719
3719
|
public?: boolean | undefined;
|
|
@@ -3739,7 +3739,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3739
3739
|
icon?: string | {
|
|
3740
3740
|
name: string;
|
|
3741
3741
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3742
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3742
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3743
3743
|
} | undefined;
|
|
3744
3744
|
expanded?: boolean | undefined;
|
|
3745
3745
|
public?: boolean | undefined;
|
|
@@ -3952,7 +3952,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3952
3952
|
icon?: string | {
|
|
3953
3953
|
name: string;
|
|
3954
3954
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3955
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3955
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3956
3956
|
} | undefined;
|
|
3957
3957
|
} | {
|
|
3958
3958
|
type: "github";
|
|
@@ -3960,7 +3960,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3960
3960
|
icon?: string | {
|
|
3961
3961
|
name: string;
|
|
3962
3962
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3963
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3963
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3964
3964
|
} | undefined;
|
|
3965
3965
|
label?: string | undefined;
|
|
3966
3966
|
} | {
|
|
@@ -3969,13 +3969,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3969
3969
|
icon?: string | {
|
|
3970
3970
|
name: string;
|
|
3971
3971
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3972
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
3972
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
3973
3973
|
} | undefined;
|
|
3974
3974
|
label?: string | undefined;
|
|
3975
3975
|
})[] | undefined;
|
|
3976
3976
|
} | undefined;
|
|
3977
3977
|
icons?: {
|
|
3978
|
-
library: "fontawesome" | "lucide";
|
|
3978
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
3979
3979
|
} | undefined;
|
|
3980
3980
|
styling?: {
|
|
3981
3981
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -3998,7 +3998,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3998
3998
|
};
|
|
3999
3999
|
} | undefined;
|
|
4000
4000
|
contextual?: {
|
|
4001
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4001
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
4002
4002
|
href: string | {
|
|
4003
4003
|
base: string;
|
|
4004
4004
|
query?: {
|
|
@@ -4011,7 +4011,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4011
4011
|
icon?: string | {
|
|
4012
4012
|
name: string;
|
|
4013
4013
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4014
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4014
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4015
4015
|
} | undefined;
|
|
4016
4016
|
})[];
|
|
4017
4017
|
display: "header" | "toc";
|
|
@@ -4058,7 +4058,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4058
4058
|
icon?: string | {
|
|
4059
4059
|
name: string;
|
|
4060
4060
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4061
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4061
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4062
4062
|
} | undefined;
|
|
4063
4063
|
expanded?: boolean | undefined;
|
|
4064
4064
|
public?: boolean | undefined;
|
|
@@ -4084,7 +4084,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4084
4084
|
icon?: string | {
|
|
4085
4085
|
name: string;
|
|
4086
4086
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4087
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4087
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4088
4088
|
} | undefined;
|
|
4089
4089
|
expanded?: boolean | undefined;
|
|
4090
4090
|
public?: boolean | undefined;
|
|
@@ -4298,7 +4298,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4298
4298
|
icon?: string | {
|
|
4299
4299
|
name: string;
|
|
4300
4300
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4301
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4301
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4302
4302
|
} | undefined;
|
|
4303
4303
|
} | {
|
|
4304
4304
|
type: "github";
|
|
@@ -4306,7 +4306,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4306
4306
|
icon?: string | {
|
|
4307
4307
|
name: string;
|
|
4308
4308
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4309
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4309
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4310
4310
|
} | undefined;
|
|
4311
4311
|
label?: string | undefined;
|
|
4312
4312
|
} | {
|
|
@@ -4315,13 +4315,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4315
4315
|
icon?: string | {
|
|
4316
4316
|
name: string;
|
|
4317
4317
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4318
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4318
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4319
4319
|
} | undefined;
|
|
4320
4320
|
label?: string | undefined;
|
|
4321
4321
|
})[] | undefined;
|
|
4322
4322
|
} | undefined;
|
|
4323
4323
|
icons?: {
|
|
4324
|
-
library: "fontawesome" | "lucide";
|
|
4324
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
4325
4325
|
} | undefined;
|
|
4326
4326
|
styling?: {
|
|
4327
4327
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -4344,7 +4344,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4344
4344
|
};
|
|
4345
4345
|
} | undefined;
|
|
4346
4346
|
contextual?: {
|
|
4347
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
4347
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
4348
4348
|
href: string | {
|
|
4349
4349
|
base: string;
|
|
4350
4350
|
query?: {
|
|
@@ -4357,7 +4357,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4357
4357
|
icon?: string | {
|
|
4358
4358
|
name: string;
|
|
4359
4359
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4360
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4360
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4361
4361
|
} | undefined;
|
|
4362
4362
|
})[];
|
|
4363
4363
|
display?: "header" | "toc" | undefined;
|
|
@@ -4609,15 +4609,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4609
4609
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4610
4610
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4611
4611
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4612
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
4612
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
4613
4613
|
}, "strip", z.ZodTypeAny, {
|
|
4614
4614
|
name: string;
|
|
4615
4615
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4616
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4616
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4617
4617
|
}, {
|
|
4618
4618
|
name: string;
|
|
4619
4619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4620
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4620
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4621
4621
|
}>]>>;
|
|
4622
4622
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4623
4623
|
}, {
|
|
@@ -4629,7 +4629,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4629
4629
|
icon?: string | {
|
|
4630
4630
|
name: string;
|
|
4631
4631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4632
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4632
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4633
4633
|
} | undefined;
|
|
4634
4634
|
label?: string | undefined;
|
|
4635
4635
|
}, {
|
|
@@ -4638,22 +4638,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4638
4638
|
icon?: string | {
|
|
4639
4639
|
name: string;
|
|
4640
4640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4641
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4641
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4642
4642
|
} | undefined;
|
|
4643
4643
|
label?: string | undefined;
|
|
4644
4644
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4645
4645
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4646
4646
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4647
4647
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4648
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
4648
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
4649
4649
|
}, "strip", z.ZodTypeAny, {
|
|
4650
4650
|
name: string;
|
|
4651
4651
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4652
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4652
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4653
4653
|
}, {
|
|
4654
4654
|
name: string;
|
|
4655
4655
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4656
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4656
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4657
4657
|
}>]>>;
|
|
4658
4658
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4659
4659
|
}, {
|
|
@@ -4665,7 +4665,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4665
4665
|
icon?: string | {
|
|
4666
4666
|
name: string;
|
|
4667
4667
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4668
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4668
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4669
4669
|
} | undefined;
|
|
4670
4670
|
label?: string | undefined;
|
|
4671
4671
|
}, {
|
|
@@ -4674,22 +4674,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4674
4674
|
icon?: string | {
|
|
4675
4675
|
name: string;
|
|
4676
4676
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4677
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4677
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4678
4678
|
} | undefined;
|
|
4679
4679
|
label?: string | undefined;
|
|
4680
4680
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
4681
4681
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4682
4682
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4683
4683
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
4684
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
4684
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
4685
4685
|
}, "strip", z.ZodTypeAny, {
|
|
4686
4686
|
name: string;
|
|
4687
4687
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4688
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4688
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4689
4689
|
}, {
|
|
4690
4690
|
name: string;
|
|
4691
4691
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4692
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4692
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4693
4693
|
}>]>>;
|
|
4694
4694
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
4695
4695
|
}, {
|
|
@@ -4702,7 +4702,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4702
4702
|
icon?: string | {
|
|
4703
4703
|
name: string;
|
|
4704
4704
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4705
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4705
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4706
4706
|
} | undefined;
|
|
4707
4707
|
}, {
|
|
4708
4708
|
href: string;
|
|
@@ -4711,7 +4711,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4711
4711
|
icon?: string | {
|
|
4712
4712
|
name: string;
|
|
4713
4713
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4714
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4714
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4715
4715
|
} | undefined;
|
|
4716
4716
|
}>]>, "many">>;
|
|
4717
4717
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -4772,7 +4772,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4772
4772
|
icon?: string | {
|
|
4773
4773
|
name: string;
|
|
4774
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;
|
|
4775
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4776
4776
|
} | undefined;
|
|
4777
4777
|
} | {
|
|
4778
4778
|
type: "github";
|
|
@@ -4780,7 +4780,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4780
4780
|
icon?: string | {
|
|
4781
4781
|
name: string;
|
|
4782
4782
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4783
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4783
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4784
4784
|
} | undefined;
|
|
4785
4785
|
label?: string | undefined;
|
|
4786
4786
|
} | {
|
|
@@ -4789,7 +4789,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4789
4789
|
icon?: string | {
|
|
4790
4790
|
name: string;
|
|
4791
4791
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4792
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4792
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4793
4793
|
} | undefined;
|
|
4794
4794
|
label?: string | undefined;
|
|
4795
4795
|
})[] | undefined;
|
|
@@ -4814,7 +4814,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4814
4814
|
icon?: string | {
|
|
4815
4815
|
name: string;
|
|
4816
4816
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4817
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4817
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4818
4818
|
} | undefined;
|
|
4819
4819
|
} | {
|
|
4820
4820
|
type: "github";
|
|
@@ -4822,7 +4822,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4822
4822
|
icon?: string | {
|
|
4823
4823
|
name: string;
|
|
4824
4824
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4825
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4825
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4826
4826
|
} | undefined;
|
|
4827
4827
|
label?: string | undefined;
|
|
4828
4828
|
} | {
|
|
@@ -4831,7 +4831,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4831
4831
|
icon?: string | {
|
|
4832
4832
|
name: string;
|
|
4833
4833
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4834
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4834
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4835
4835
|
} | undefined;
|
|
4836
4836
|
label?: string | undefined;
|
|
4837
4837
|
})[] | undefined;
|
|
@@ -4904,7 +4904,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4904
4904
|
icon?: string | {
|
|
4905
4905
|
name: string;
|
|
4906
4906
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4907
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4907
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4908
4908
|
} | undefined;
|
|
4909
4909
|
expanded?: boolean | undefined;
|
|
4910
4910
|
public?: boolean | undefined;
|
|
@@ -4927,7 +4927,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4927
4927
|
icon?: string | {
|
|
4928
4928
|
name: string;
|
|
4929
4929
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4930
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4930
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4931
4931
|
} | undefined;
|
|
4932
4932
|
expanded?: boolean | undefined;
|
|
4933
4933
|
public?: boolean | undefined;
|
|
@@ -4952,7 +4952,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4952
4952
|
icon?: string | {
|
|
4953
4953
|
name: string;
|
|
4954
4954
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4955
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4955
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4956
4956
|
} | undefined;
|
|
4957
4957
|
expanded?: boolean | undefined;
|
|
4958
4958
|
public?: boolean | undefined;
|
|
@@ -4978,7 +4978,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4978
4978
|
icon?: string | {
|
|
4979
4979
|
name: string;
|
|
4980
4980
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4981
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
4981
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
4982
4982
|
} | undefined;
|
|
4983
4983
|
expanded?: boolean | undefined;
|
|
4984
4984
|
public?: boolean | undefined;
|
|
@@ -5006,7 +5006,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5006
5006
|
icon?: string | {
|
|
5007
5007
|
name: string;
|
|
5008
5008
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5009
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5009
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5010
5010
|
} | undefined;
|
|
5011
5011
|
expanded?: boolean | undefined;
|
|
5012
5012
|
public?: boolean | undefined;
|
|
@@ -5029,7 +5029,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5029
5029
|
icon?: string | {
|
|
5030
5030
|
name: string;
|
|
5031
5031
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5032
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5032
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5033
5033
|
} | undefined;
|
|
5034
5034
|
expanded?: boolean | undefined;
|
|
5035
5035
|
public?: boolean | undefined;
|
|
@@ -5054,7 +5054,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5054
5054
|
icon?: string | {
|
|
5055
5055
|
name: string;
|
|
5056
5056
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5057
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5057
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5058
5058
|
} | undefined;
|
|
5059
5059
|
expanded?: boolean | undefined;
|
|
5060
5060
|
public?: boolean | undefined;
|
|
@@ -5080,7 +5080,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5080
5080
|
icon?: string | {
|
|
5081
5081
|
name: string;
|
|
5082
5082
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5083
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5083
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5084
5084
|
} | undefined;
|
|
5085
5085
|
expanded?: boolean | undefined;
|
|
5086
5086
|
public?: boolean | undefined;
|
|
@@ -5270,11 +5270,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5270
5270
|
} | undefined;
|
|
5271
5271
|
}>]>>;
|
|
5272
5272
|
icons: z.ZodOptional<z.ZodObject<{
|
|
5273
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
5273
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
5274
5274
|
}, "strip", z.ZodTypeAny, {
|
|
5275
|
-
library: "fontawesome" | "lucide";
|
|
5275
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
5276
5276
|
}, {
|
|
5277
|
-
library: "fontawesome" | "lucide";
|
|
5277
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
5278
5278
|
}>>;
|
|
5279
5279
|
styling: z.ZodOptional<z.ZodObject<{
|
|
5280
5280
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -5687,21 +5687,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5687
5687
|
};
|
|
5688
5688
|
}>>;
|
|
5689
5689
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
5690
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
5690
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
5691
5691
|
title: z.ZodString;
|
|
5692
5692
|
description: z.ZodString;
|
|
5693
5693
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5694
5694
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5695
5695
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5696
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5696
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
5697
5697
|
}, "strip", z.ZodTypeAny, {
|
|
5698
5698
|
name: string;
|
|
5699
5699
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5700
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5700
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5701
5701
|
}, {
|
|
5702
5702
|
name: string;
|
|
5703
5703
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5704
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5704
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5705
5705
|
}>]>>;
|
|
5706
5706
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
5707
5707
|
base: z.ZodString;
|
|
@@ -5741,7 +5741,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5741
5741
|
icon?: string | {
|
|
5742
5742
|
name: string;
|
|
5743
5743
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5744
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5744
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5745
5745
|
} | undefined;
|
|
5746
5746
|
}, {
|
|
5747
5747
|
href: string | {
|
|
@@ -5756,9 +5756,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5756
5756
|
icon?: string | {
|
|
5757
5757
|
name: string;
|
|
5758
5758
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5759
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5759
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5760
5760
|
} | undefined;
|
|
5761
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5761
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
5762
5762
|
href: string | {
|
|
5763
5763
|
base: string;
|
|
5764
5764
|
query?: {
|
|
@@ -5771,9 +5771,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5771
5771
|
icon?: string | {
|
|
5772
5772
|
name: string;
|
|
5773
5773
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5774
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5774
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5775
5775
|
} | undefined;
|
|
5776
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5776
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
5777
5777
|
href: string | {
|
|
5778
5778
|
base: string;
|
|
5779
5779
|
query?: {
|
|
@@ -5786,12 +5786,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5786
5786
|
icon?: string | {
|
|
5787
5787
|
name: string;
|
|
5788
5788
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5789
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5789
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5790
5790
|
} | undefined;
|
|
5791
5791
|
})[]>;
|
|
5792
5792
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
5793
5793
|
}, "strip", z.ZodTypeAny, {
|
|
5794
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5794
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
5795
5795
|
href: string | {
|
|
5796
5796
|
base: string;
|
|
5797
5797
|
query?: {
|
|
@@ -5804,12 +5804,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5804
5804
|
icon?: string | {
|
|
5805
5805
|
name: string;
|
|
5806
5806
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5807
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5807
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5808
5808
|
} | undefined;
|
|
5809
5809
|
})[];
|
|
5810
5810
|
display: "header" | "toc";
|
|
5811
5811
|
}, {
|
|
5812
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
5812
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
5813
5813
|
href: string | {
|
|
5814
5814
|
base: string;
|
|
5815
5815
|
query?: {
|
|
@@ -5822,7 +5822,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5822
5822
|
icon?: string | {
|
|
5823
5823
|
name: string;
|
|
5824
5824
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5825
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5825
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5826
5826
|
} | undefined;
|
|
5827
5827
|
})[];
|
|
5828
5828
|
display?: "header" | "toc" | undefined;
|
|
@@ -5898,7 +5898,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5898
5898
|
icon?: string | {
|
|
5899
5899
|
name: string;
|
|
5900
5900
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5901
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5901
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5902
5902
|
} | undefined;
|
|
5903
5903
|
expanded?: boolean | undefined;
|
|
5904
5904
|
public?: boolean | undefined;
|
|
@@ -5924,7 +5924,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5924
5924
|
icon?: string | {
|
|
5925
5925
|
name: string;
|
|
5926
5926
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5927
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
5927
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
5928
5928
|
} | undefined;
|
|
5929
5929
|
expanded?: boolean | undefined;
|
|
5930
5930
|
public?: boolean | undefined;
|
|
@@ -6137,7 +6137,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6137
6137
|
icon?: string | {
|
|
6138
6138
|
name: string;
|
|
6139
6139
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6140
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6140
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6141
6141
|
} | undefined;
|
|
6142
6142
|
} | {
|
|
6143
6143
|
type: "github";
|
|
@@ -6145,7 +6145,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6145
6145
|
icon?: string | {
|
|
6146
6146
|
name: string;
|
|
6147
6147
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6148
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6148
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6149
6149
|
} | undefined;
|
|
6150
6150
|
label?: string | undefined;
|
|
6151
6151
|
} | {
|
|
@@ -6154,13 +6154,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6154
6154
|
icon?: string | {
|
|
6155
6155
|
name: string;
|
|
6156
6156
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6157
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6157
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6158
6158
|
} | undefined;
|
|
6159
6159
|
label?: string | undefined;
|
|
6160
6160
|
})[] | undefined;
|
|
6161
6161
|
} | undefined;
|
|
6162
6162
|
icons?: {
|
|
6163
|
-
library: "fontawesome" | "lucide";
|
|
6163
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
6164
6164
|
} | undefined;
|
|
6165
6165
|
styling?: {
|
|
6166
6166
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -6183,7 +6183,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6183
6183
|
};
|
|
6184
6184
|
} | undefined;
|
|
6185
6185
|
contextual?: {
|
|
6186
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
6186
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
6187
6187
|
href: string | {
|
|
6188
6188
|
base: string;
|
|
6189
6189
|
query?: {
|
|
@@ -6196,7 +6196,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6196
6196
|
icon?: string | {
|
|
6197
6197
|
name: string;
|
|
6198
6198
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6199
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6199
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6200
6200
|
} | undefined;
|
|
6201
6201
|
})[];
|
|
6202
6202
|
display: "header" | "toc";
|
|
@@ -6243,7 +6243,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6243
6243
|
icon?: string | {
|
|
6244
6244
|
name: string;
|
|
6245
6245
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6246
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6246
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6247
6247
|
} | undefined;
|
|
6248
6248
|
expanded?: boolean | undefined;
|
|
6249
6249
|
public?: boolean | undefined;
|
|
@@ -6269,7 +6269,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6269
6269
|
icon?: string | {
|
|
6270
6270
|
name: string;
|
|
6271
6271
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6272
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6272
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6273
6273
|
} | undefined;
|
|
6274
6274
|
expanded?: boolean | undefined;
|
|
6275
6275
|
public?: boolean | undefined;
|
|
@@ -6483,7 +6483,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6483
6483
|
icon?: string | {
|
|
6484
6484
|
name: string;
|
|
6485
6485
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6486
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6486
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6487
6487
|
} | undefined;
|
|
6488
6488
|
} | {
|
|
6489
6489
|
type: "github";
|
|
@@ -6491,7 +6491,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6491
6491
|
icon?: string | {
|
|
6492
6492
|
name: string;
|
|
6493
6493
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6494
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6494
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6495
6495
|
} | undefined;
|
|
6496
6496
|
label?: string | undefined;
|
|
6497
6497
|
} | {
|
|
@@ -6500,13 +6500,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6500
6500
|
icon?: string | {
|
|
6501
6501
|
name: string;
|
|
6502
6502
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6503
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6503
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6504
6504
|
} | undefined;
|
|
6505
6505
|
label?: string | undefined;
|
|
6506
6506
|
})[] | undefined;
|
|
6507
6507
|
} | undefined;
|
|
6508
6508
|
icons?: {
|
|
6509
|
-
library: "fontawesome" | "lucide";
|
|
6509
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
6510
6510
|
} | undefined;
|
|
6511
6511
|
styling?: {
|
|
6512
6512
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -6529,7 +6529,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6529
6529
|
};
|
|
6530
6530
|
} | undefined;
|
|
6531
6531
|
contextual?: {
|
|
6532
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
6532
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
6533
6533
|
href: string | {
|
|
6534
6534
|
base: string;
|
|
6535
6535
|
query?: {
|
|
@@ -6542,7 +6542,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6542
6542
|
icon?: string | {
|
|
6543
6543
|
name: string;
|
|
6544
6544
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6545
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6545
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6546
6546
|
} | undefined;
|
|
6547
6547
|
})[];
|
|
6548
6548
|
display?: "header" | "toc" | undefined;
|
|
@@ -6794,15 +6794,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6794
6794
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6795
6795
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6796
6796
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
6797
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
6797
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
6798
6798
|
}, "strip", z.ZodTypeAny, {
|
|
6799
6799
|
name: string;
|
|
6800
6800
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6801
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6801
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6802
6802
|
}, {
|
|
6803
6803
|
name: string;
|
|
6804
6804
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6805
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6805
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6806
6806
|
}>]>>;
|
|
6807
6807
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
6808
6808
|
}, {
|
|
@@ -6814,7 +6814,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6814
6814
|
icon?: string | {
|
|
6815
6815
|
name: string;
|
|
6816
6816
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6817
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6817
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6818
6818
|
} | undefined;
|
|
6819
6819
|
label?: string | undefined;
|
|
6820
6820
|
}, {
|
|
@@ -6823,22 +6823,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6823
6823
|
icon?: string | {
|
|
6824
6824
|
name: string;
|
|
6825
6825
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6826
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6826
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6827
6827
|
} | undefined;
|
|
6828
6828
|
label?: string | undefined;
|
|
6829
6829
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6830
6830
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6831
6831
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6832
6832
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
6833
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
6833
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
6834
6834
|
}, "strip", z.ZodTypeAny, {
|
|
6835
6835
|
name: string;
|
|
6836
6836
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6837
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6837
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6838
6838
|
}, {
|
|
6839
6839
|
name: string;
|
|
6840
6840
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6841
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6841
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6842
6842
|
}>]>>;
|
|
6843
6843
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
6844
6844
|
}, {
|
|
@@ -6850,7 +6850,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6850
6850
|
icon?: string | {
|
|
6851
6851
|
name: string;
|
|
6852
6852
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6853
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6853
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6854
6854
|
} | undefined;
|
|
6855
6855
|
label?: string | undefined;
|
|
6856
6856
|
}, {
|
|
@@ -6859,22 +6859,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6859
6859
|
icon?: string | {
|
|
6860
6860
|
name: string;
|
|
6861
6861
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6862
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6862
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6863
6863
|
} | undefined;
|
|
6864
6864
|
label?: string | undefined;
|
|
6865
6865
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6866
6866
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
6867
6867
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6868
6868
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
6869
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
6869
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
6870
6870
|
}, "strip", z.ZodTypeAny, {
|
|
6871
6871
|
name: string;
|
|
6872
6872
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6873
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6873
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6874
6874
|
}, {
|
|
6875
6875
|
name: string;
|
|
6876
6876
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6877
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6877
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6878
6878
|
}>]>>;
|
|
6879
6879
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
6880
6880
|
}, {
|
|
@@ -6887,7 +6887,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6887
6887
|
icon?: string | {
|
|
6888
6888
|
name: string;
|
|
6889
6889
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6890
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6890
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6891
6891
|
} | undefined;
|
|
6892
6892
|
}, {
|
|
6893
6893
|
href: string;
|
|
@@ -6896,7 +6896,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6896
6896
|
icon?: string | {
|
|
6897
6897
|
name: string;
|
|
6898
6898
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6899
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6899
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6900
6900
|
} | undefined;
|
|
6901
6901
|
}>]>, "many">>;
|
|
6902
6902
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -6957,7 +6957,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6957
6957
|
icon?: string | {
|
|
6958
6958
|
name: string;
|
|
6959
6959
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6960
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6960
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6961
6961
|
} | undefined;
|
|
6962
6962
|
} | {
|
|
6963
6963
|
type: "github";
|
|
@@ -6965,7 +6965,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6965
6965
|
icon?: string | {
|
|
6966
6966
|
name: string;
|
|
6967
6967
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6968
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6968
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6969
6969
|
} | undefined;
|
|
6970
6970
|
label?: string | undefined;
|
|
6971
6971
|
} | {
|
|
@@ -6974,7 +6974,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6974
6974
|
icon?: string | {
|
|
6975
6975
|
name: string;
|
|
6976
6976
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6977
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
6977
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
6978
6978
|
} | undefined;
|
|
6979
6979
|
label?: string | undefined;
|
|
6980
6980
|
})[] | undefined;
|
|
@@ -6999,7 +6999,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6999
6999
|
icon?: string | {
|
|
7000
7000
|
name: string;
|
|
7001
7001
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7002
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7002
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7003
7003
|
} | undefined;
|
|
7004
7004
|
} | {
|
|
7005
7005
|
type: "github";
|
|
@@ -7007,7 +7007,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7007
7007
|
icon?: string | {
|
|
7008
7008
|
name: string;
|
|
7009
7009
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7010
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7010
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7011
7011
|
} | undefined;
|
|
7012
7012
|
label?: string | undefined;
|
|
7013
7013
|
} | {
|
|
@@ -7016,7 +7016,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7016
7016
|
icon?: string | {
|
|
7017
7017
|
name: string;
|
|
7018
7018
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7019
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7019
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7020
7020
|
} | undefined;
|
|
7021
7021
|
label?: string | undefined;
|
|
7022
7022
|
})[] | undefined;
|
|
@@ -7089,7 +7089,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7089
7089
|
icon?: string | {
|
|
7090
7090
|
name: string;
|
|
7091
7091
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7092
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7092
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7093
7093
|
} | undefined;
|
|
7094
7094
|
expanded?: boolean | undefined;
|
|
7095
7095
|
public?: boolean | undefined;
|
|
@@ -7112,7 +7112,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7112
7112
|
icon?: string | {
|
|
7113
7113
|
name: string;
|
|
7114
7114
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7115
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7115
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7116
7116
|
} | undefined;
|
|
7117
7117
|
expanded?: boolean | undefined;
|
|
7118
7118
|
public?: boolean | undefined;
|
|
@@ -7137,7 +7137,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7137
7137
|
icon?: string | {
|
|
7138
7138
|
name: string;
|
|
7139
7139
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7140
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7140
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7141
7141
|
} | undefined;
|
|
7142
7142
|
expanded?: boolean | undefined;
|
|
7143
7143
|
public?: boolean | undefined;
|
|
@@ -7163,7 +7163,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7163
7163
|
icon?: string | {
|
|
7164
7164
|
name: string;
|
|
7165
7165
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7166
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7166
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7167
7167
|
} | undefined;
|
|
7168
7168
|
expanded?: boolean | undefined;
|
|
7169
7169
|
public?: boolean | undefined;
|
|
@@ -7191,7 +7191,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7191
7191
|
icon?: string | {
|
|
7192
7192
|
name: string;
|
|
7193
7193
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7194
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7194
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7195
7195
|
} | undefined;
|
|
7196
7196
|
expanded?: boolean | undefined;
|
|
7197
7197
|
public?: boolean | undefined;
|
|
@@ -7214,7 +7214,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7214
7214
|
icon?: string | {
|
|
7215
7215
|
name: string;
|
|
7216
7216
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7217
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7217
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7218
7218
|
} | undefined;
|
|
7219
7219
|
expanded?: boolean | undefined;
|
|
7220
7220
|
public?: boolean | undefined;
|
|
@@ -7239,7 +7239,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7239
7239
|
icon?: string | {
|
|
7240
7240
|
name: string;
|
|
7241
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;
|
|
7242
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7243
7243
|
} | undefined;
|
|
7244
7244
|
expanded?: boolean | undefined;
|
|
7245
7245
|
public?: boolean | undefined;
|
|
@@ -7265,7 +7265,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7265
7265
|
icon?: string | {
|
|
7266
7266
|
name: string;
|
|
7267
7267
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7268
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7268
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7269
7269
|
} | undefined;
|
|
7270
7270
|
expanded?: boolean | undefined;
|
|
7271
7271
|
public?: boolean | undefined;
|
|
@@ -7455,11 +7455,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7455
7455
|
} | undefined;
|
|
7456
7456
|
}>]>>;
|
|
7457
7457
|
icons: z.ZodOptional<z.ZodObject<{
|
|
7458
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
7458
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
7459
7459
|
}, "strip", z.ZodTypeAny, {
|
|
7460
|
-
library: "fontawesome" | "lucide";
|
|
7460
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
7461
7461
|
}, {
|
|
7462
|
-
library: "fontawesome" | "lucide";
|
|
7462
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
7463
7463
|
}>>;
|
|
7464
7464
|
styling: z.ZodOptional<z.ZodObject<{
|
|
7465
7465
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -7872,21 +7872,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7872
7872
|
};
|
|
7873
7873
|
}>>;
|
|
7874
7874
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
7875
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
7875
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
7876
7876
|
title: z.ZodString;
|
|
7877
7877
|
description: z.ZodString;
|
|
7878
7878
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7879
7879
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7880
7880
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7881
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7881
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
7882
7882
|
}, "strip", z.ZodTypeAny, {
|
|
7883
7883
|
name: string;
|
|
7884
7884
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7885
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7885
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7886
7886
|
}, {
|
|
7887
7887
|
name: string;
|
|
7888
7888
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7889
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7889
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7890
7890
|
}>]>>;
|
|
7891
7891
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
7892
7892
|
base: z.ZodString;
|
|
@@ -7926,7 +7926,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7926
7926
|
icon?: string | {
|
|
7927
7927
|
name: string;
|
|
7928
7928
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7929
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7929
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7930
7930
|
} | undefined;
|
|
7931
7931
|
}, {
|
|
7932
7932
|
href: string | {
|
|
@@ -7941,9 +7941,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7941
7941
|
icon?: string | {
|
|
7942
7942
|
name: string;
|
|
7943
7943
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7944
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7944
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7945
7945
|
} | undefined;
|
|
7946
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
7946
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
7947
7947
|
href: string | {
|
|
7948
7948
|
base: string;
|
|
7949
7949
|
query?: {
|
|
@@ -7956,9 +7956,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7956
7956
|
icon?: string | {
|
|
7957
7957
|
name: string;
|
|
7958
7958
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7959
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7959
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7960
7960
|
} | undefined;
|
|
7961
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
7961
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
7962
7962
|
href: string | {
|
|
7963
7963
|
base: string;
|
|
7964
7964
|
query?: {
|
|
@@ -7971,12 +7971,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7971
7971
|
icon?: string | {
|
|
7972
7972
|
name: string;
|
|
7973
7973
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7974
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7974
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7975
7975
|
} | undefined;
|
|
7976
7976
|
})[]>;
|
|
7977
7977
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
7978
7978
|
}, "strip", z.ZodTypeAny, {
|
|
7979
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
7979
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
7980
7980
|
href: string | {
|
|
7981
7981
|
base: string;
|
|
7982
7982
|
query?: {
|
|
@@ -7989,12 +7989,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7989
7989
|
icon?: string | {
|
|
7990
7990
|
name: string;
|
|
7991
7991
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7992
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
7992
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
7993
7993
|
} | undefined;
|
|
7994
7994
|
})[];
|
|
7995
7995
|
display: "header" | "toc";
|
|
7996
7996
|
}, {
|
|
7997
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
7997
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
7998
7998
|
href: string | {
|
|
7999
7999
|
base: string;
|
|
8000
8000
|
query?: {
|
|
@@ -8007,7 +8007,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8007
8007
|
icon?: string | {
|
|
8008
8008
|
name: string;
|
|
8009
8009
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8010
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8010
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8011
8011
|
} | undefined;
|
|
8012
8012
|
})[];
|
|
8013
8013
|
display?: "header" | "toc" | undefined;
|
|
@@ -8083,7 +8083,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8083
8083
|
icon?: string | {
|
|
8084
8084
|
name: string;
|
|
8085
8085
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8086
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8086
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8087
8087
|
} | undefined;
|
|
8088
8088
|
expanded?: boolean | undefined;
|
|
8089
8089
|
public?: boolean | undefined;
|
|
@@ -8109,7 +8109,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8109
8109
|
icon?: string | {
|
|
8110
8110
|
name: string;
|
|
8111
8111
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8112
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8112
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8113
8113
|
} | undefined;
|
|
8114
8114
|
expanded?: boolean | undefined;
|
|
8115
8115
|
public?: boolean | undefined;
|
|
@@ -8322,7 +8322,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8322
8322
|
icon?: string | {
|
|
8323
8323
|
name: string;
|
|
8324
8324
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8325
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8325
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8326
8326
|
} | undefined;
|
|
8327
8327
|
} | {
|
|
8328
8328
|
type: "github";
|
|
@@ -8330,7 +8330,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8330
8330
|
icon?: string | {
|
|
8331
8331
|
name: string;
|
|
8332
8332
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8333
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8333
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8334
8334
|
} | undefined;
|
|
8335
8335
|
label?: string | undefined;
|
|
8336
8336
|
} | {
|
|
@@ -8339,13 +8339,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8339
8339
|
icon?: string | {
|
|
8340
8340
|
name: string;
|
|
8341
8341
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8342
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8342
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8343
8343
|
} | undefined;
|
|
8344
8344
|
label?: string | undefined;
|
|
8345
8345
|
})[] | undefined;
|
|
8346
8346
|
} | undefined;
|
|
8347
8347
|
icons?: {
|
|
8348
|
-
library: "fontawesome" | "lucide";
|
|
8348
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
8349
8349
|
} | undefined;
|
|
8350
8350
|
styling?: {
|
|
8351
8351
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -8368,7 +8368,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8368
8368
|
};
|
|
8369
8369
|
} | undefined;
|
|
8370
8370
|
contextual?: {
|
|
8371
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
8371
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
8372
8372
|
href: string | {
|
|
8373
8373
|
base: string;
|
|
8374
8374
|
query?: {
|
|
@@ -8381,7 +8381,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8381
8381
|
icon?: string | {
|
|
8382
8382
|
name: string;
|
|
8383
8383
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8384
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8384
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8385
8385
|
} | undefined;
|
|
8386
8386
|
})[];
|
|
8387
8387
|
display: "header" | "toc";
|
|
@@ -8428,7 +8428,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8428
8428
|
icon?: string | {
|
|
8429
8429
|
name: string;
|
|
8430
8430
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8431
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8431
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8432
8432
|
} | undefined;
|
|
8433
8433
|
expanded?: boolean | undefined;
|
|
8434
8434
|
public?: boolean | undefined;
|
|
@@ -8454,7 +8454,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8454
8454
|
icon?: string | {
|
|
8455
8455
|
name: string;
|
|
8456
8456
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8457
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8457
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8458
8458
|
} | undefined;
|
|
8459
8459
|
expanded?: boolean | undefined;
|
|
8460
8460
|
public?: boolean | undefined;
|
|
@@ -8668,7 +8668,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8668
8668
|
icon?: string | {
|
|
8669
8669
|
name: string;
|
|
8670
8670
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8671
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8671
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8672
8672
|
} | undefined;
|
|
8673
8673
|
} | {
|
|
8674
8674
|
type: "github";
|
|
@@ -8676,7 +8676,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8676
8676
|
icon?: string | {
|
|
8677
8677
|
name: string;
|
|
8678
8678
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8679
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8679
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8680
8680
|
} | undefined;
|
|
8681
8681
|
label?: string | undefined;
|
|
8682
8682
|
} | {
|
|
@@ -8685,13 +8685,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8685
8685
|
icon?: string | {
|
|
8686
8686
|
name: string;
|
|
8687
8687
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8688
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8688
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8689
8689
|
} | undefined;
|
|
8690
8690
|
label?: string | undefined;
|
|
8691
8691
|
})[] | undefined;
|
|
8692
8692
|
} | undefined;
|
|
8693
8693
|
icons?: {
|
|
8694
|
-
library: "fontawesome" | "lucide";
|
|
8694
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
8695
8695
|
} | undefined;
|
|
8696
8696
|
styling?: {
|
|
8697
8697
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -8714,7 +8714,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8714
8714
|
};
|
|
8715
8715
|
} | undefined;
|
|
8716
8716
|
contextual?: {
|
|
8717
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
8717
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
8718
8718
|
href: string | {
|
|
8719
8719
|
base: string;
|
|
8720
8720
|
query?: {
|
|
@@ -8727,7 +8727,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8727
8727
|
icon?: string | {
|
|
8728
8728
|
name: string;
|
|
8729
8729
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8730
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8730
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8731
8731
|
} | undefined;
|
|
8732
8732
|
})[];
|
|
8733
8733
|
display?: "header" | "toc" | undefined;
|
|
@@ -8979,15 +8979,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8979
8979
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
8980
8980
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
8981
8981
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
8982
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
8982
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
8983
8983
|
}, "strip", z.ZodTypeAny, {
|
|
8984
8984
|
name: string;
|
|
8985
8985
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8986
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8986
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8987
8987
|
}, {
|
|
8988
8988
|
name: string;
|
|
8989
8989
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8990
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
8990
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
8991
8991
|
}>]>>;
|
|
8992
8992
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
8993
8993
|
}, {
|
|
@@ -8999,7 +8999,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8999
8999
|
icon?: string | {
|
|
9000
9000
|
name: string;
|
|
9001
9001
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9002
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9002
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9003
9003
|
} | undefined;
|
|
9004
9004
|
label?: string | undefined;
|
|
9005
9005
|
}, {
|
|
@@ -9008,22 +9008,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9008
9008
|
icon?: string | {
|
|
9009
9009
|
name: string;
|
|
9010
9010
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9011
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9011
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9012
9012
|
} | undefined;
|
|
9013
9013
|
label?: string | undefined;
|
|
9014
9014
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9015
9015
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9016
9016
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9017
9017
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9018
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9018
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
9019
9019
|
}, "strip", z.ZodTypeAny, {
|
|
9020
9020
|
name: string;
|
|
9021
9021
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9022
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9022
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9023
9023
|
}, {
|
|
9024
9024
|
name: string;
|
|
9025
9025
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9026
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9026
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9027
9027
|
}>]>>;
|
|
9028
9028
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
9029
9029
|
}, {
|
|
@@ -9035,7 +9035,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9035
9035
|
icon?: string | {
|
|
9036
9036
|
name: string;
|
|
9037
9037
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9038
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9038
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9039
9039
|
} | undefined;
|
|
9040
9040
|
label?: string | undefined;
|
|
9041
9041
|
}, {
|
|
@@ -9044,22 +9044,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9044
9044
|
icon?: string | {
|
|
9045
9045
|
name: string;
|
|
9046
9046
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9047
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9047
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9048
9048
|
} | undefined;
|
|
9049
9049
|
label?: string | undefined;
|
|
9050
9050
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9051
9051
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9052
9052
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9053
9053
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9054
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9054
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
9055
9055
|
}, "strip", z.ZodTypeAny, {
|
|
9056
9056
|
name: string;
|
|
9057
9057
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9058
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9058
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9059
9059
|
}, {
|
|
9060
9060
|
name: string;
|
|
9061
9061
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9062
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9062
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9063
9063
|
}>]>>;
|
|
9064
9064
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
9065
9065
|
}, {
|
|
@@ -9072,7 +9072,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9072
9072
|
icon?: string | {
|
|
9073
9073
|
name: string;
|
|
9074
9074
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9075
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9075
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9076
9076
|
} | undefined;
|
|
9077
9077
|
}, {
|
|
9078
9078
|
href: string;
|
|
@@ -9081,7 +9081,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9081
9081
|
icon?: string | {
|
|
9082
9082
|
name: string;
|
|
9083
9083
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9084
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9084
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9085
9085
|
} | undefined;
|
|
9086
9086
|
}>]>, "many">>;
|
|
9087
9087
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -9142,7 +9142,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9142
9142
|
icon?: string | {
|
|
9143
9143
|
name: string;
|
|
9144
9144
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9145
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9145
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9146
9146
|
} | undefined;
|
|
9147
9147
|
} | {
|
|
9148
9148
|
type: "github";
|
|
@@ -9150,7 +9150,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9150
9150
|
icon?: string | {
|
|
9151
9151
|
name: string;
|
|
9152
9152
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9153
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9153
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9154
9154
|
} | undefined;
|
|
9155
9155
|
label?: string | undefined;
|
|
9156
9156
|
} | {
|
|
@@ -9159,7 +9159,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9159
9159
|
icon?: string | {
|
|
9160
9160
|
name: string;
|
|
9161
9161
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9162
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9162
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9163
9163
|
} | undefined;
|
|
9164
9164
|
label?: string | undefined;
|
|
9165
9165
|
})[] | undefined;
|
|
@@ -9184,7 +9184,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9184
9184
|
icon?: string | {
|
|
9185
9185
|
name: string;
|
|
9186
9186
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9187
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9187
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9188
9188
|
} | undefined;
|
|
9189
9189
|
} | {
|
|
9190
9190
|
type: "github";
|
|
@@ -9192,7 +9192,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9192
9192
|
icon?: string | {
|
|
9193
9193
|
name: string;
|
|
9194
9194
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9195
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9195
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9196
9196
|
} | undefined;
|
|
9197
9197
|
label?: string | undefined;
|
|
9198
9198
|
} | {
|
|
@@ -9201,7 +9201,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9201
9201
|
icon?: string | {
|
|
9202
9202
|
name: string;
|
|
9203
9203
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9204
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9204
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9205
9205
|
} | undefined;
|
|
9206
9206
|
label?: string | undefined;
|
|
9207
9207
|
})[] | undefined;
|
|
@@ -9274,7 +9274,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9274
9274
|
icon?: string | {
|
|
9275
9275
|
name: string;
|
|
9276
9276
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9277
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9277
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9278
9278
|
} | undefined;
|
|
9279
9279
|
expanded?: boolean | undefined;
|
|
9280
9280
|
public?: boolean | undefined;
|
|
@@ -9297,7 +9297,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9297
9297
|
icon?: string | {
|
|
9298
9298
|
name: string;
|
|
9299
9299
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9300
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9300
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9301
9301
|
} | undefined;
|
|
9302
9302
|
expanded?: boolean | undefined;
|
|
9303
9303
|
public?: boolean | undefined;
|
|
@@ -9322,7 +9322,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9322
9322
|
icon?: string | {
|
|
9323
9323
|
name: string;
|
|
9324
9324
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9325
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9325
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9326
9326
|
} | undefined;
|
|
9327
9327
|
expanded?: boolean | undefined;
|
|
9328
9328
|
public?: boolean | undefined;
|
|
@@ -9348,7 +9348,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9348
9348
|
icon?: string | {
|
|
9349
9349
|
name: string;
|
|
9350
9350
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9351
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9351
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9352
9352
|
} | undefined;
|
|
9353
9353
|
expanded?: boolean | undefined;
|
|
9354
9354
|
public?: boolean | undefined;
|
|
@@ -9376,7 +9376,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9376
9376
|
icon?: string | {
|
|
9377
9377
|
name: string;
|
|
9378
9378
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9379
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9379
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9380
9380
|
} | undefined;
|
|
9381
9381
|
expanded?: boolean | undefined;
|
|
9382
9382
|
public?: boolean | undefined;
|
|
@@ -9399,7 +9399,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9399
9399
|
icon?: string | {
|
|
9400
9400
|
name: string;
|
|
9401
9401
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9402
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9402
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9403
9403
|
} | undefined;
|
|
9404
9404
|
expanded?: boolean | undefined;
|
|
9405
9405
|
public?: boolean | undefined;
|
|
@@ -9424,7 +9424,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9424
9424
|
icon?: string | {
|
|
9425
9425
|
name: string;
|
|
9426
9426
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9427
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9427
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9428
9428
|
} | undefined;
|
|
9429
9429
|
expanded?: boolean | undefined;
|
|
9430
9430
|
public?: boolean | undefined;
|
|
@@ -9450,7 +9450,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9450
9450
|
icon?: string | {
|
|
9451
9451
|
name: string;
|
|
9452
9452
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9453
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
9453
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
9454
9454
|
} | undefined;
|
|
9455
9455
|
expanded?: boolean | undefined;
|
|
9456
9456
|
public?: boolean | undefined;
|
|
@@ -9640,11 +9640,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9640
9640
|
} | undefined;
|
|
9641
9641
|
}>]>>;
|
|
9642
9642
|
icons: z.ZodOptional<z.ZodObject<{
|
|
9643
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
9643
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
9644
9644
|
}, "strip", z.ZodTypeAny, {
|
|
9645
|
-
library: "fontawesome" | "lucide";
|
|
9645
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
9646
9646
|
}, {
|
|
9647
|
-
library: "fontawesome" | "lucide";
|
|
9647
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
9648
9648
|
}>>;
|
|
9649
9649
|
styling: z.ZodOptional<z.ZodObject<{
|
|
9650
9650
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -10057,21 +10057,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10057
10057
|
};
|
|
10058
10058
|
}>>;
|
|
10059
10059
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
10060
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
10060
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
10061
10061
|
title: z.ZodString;
|
|
10062
10062
|
description: z.ZodString;
|
|
10063
10063
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
10064
10064
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
10065
10065
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
10066
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
10066
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
10067
10067
|
}, "strip", z.ZodTypeAny, {
|
|
10068
10068
|
name: string;
|
|
10069
10069
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10070
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10070
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10071
10071
|
}, {
|
|
10072
10072
|
name: string;
|
|
10073
10073
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10074
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10074
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10075
10075
|
}>]>>;
|
|
10076
10076
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
10077
10077
|
base: z.ZodString;
|
|
@@ -10111,7 +10111,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10111
10111
|
icon?: string | {
|
|
10112
10112
|
name: string;
|
|
10113
10113
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10114
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10114
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10115
10115
|
} | undefined;
|
|
10116
10116
|
}, {
|
|
10117
10117
|
href: string | {
|
|
@@ -10126,9 +10126,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10126
10126
|
icon?: string | {
|
|
10127
10127
|
name: string;
|
|
10128
10128
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10129
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10129
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10130
10130
|
} | undefined;
|
|
10131
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10131
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10132
10132
|
href: string | {
|
|
10133
10133
|
base: string;
|
|
10134
10134
|
query?: {
|
|
@@ -10141,9 +10141,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10141
10141
|
icon?: string | {
|
|
10142
10142
|
name: string;
|
|
10143
10143
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10144
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10144
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10145
10145
|
} | undefined;
|
|
10146
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10146
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10147
10147
|
href: string | {
|
|
10148
10148
|
base: string;
|
|
10149
10149
|
query?: {
|
|
@@ -10156,12 +10156,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10156
10156
|
icon?: string | {
|
|
10157
10157
|
name: string;
|
|
10158
10158
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10159
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10159
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10160
10160
|
} | undefined;
|
|
10161
10161
|
})[]>;
|
|
10162
10162
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
10163
10163
|
}, "strip", z.ZodTypeAny, {
|
|
10164
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10164
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10165
10165
|
href: string | {
|
|
10166
10166
|
base: string;
|
|
10167
10167
|
query?: {
|
|
@@ -10174,12 +10174,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10174
10174
|
icon?: string | {
|
|
10175
10175
|
name: string;
|
|
10176
10176
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10177
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10177
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10178
10178
|
} | undefined;
|
|
10179
10179
|
})[];
|
|
10180
10180
|
display: "header" | "toc";
|
|
10181
10181
|
}, {
|
|
10182
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10182
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10183
10183
|
href: string | {
|
|
10184
10184
|
base: string;
|
|
10185
10185
|
query?: {
|
|
@@ -10192,7 +10192,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10192
10192
|
icon?: string | {
|
|
10193
10193
|
name: string;
|
|
10194
10194
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10195
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10195
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10196
10196
|
} | undefined;
|
|
10197
10197
|
})[];
|
|
10198
10198
|
display?: "header" | "toc" | undefined;
|
|
@@ -10268,7 +10268,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10268
10268
|
icon?: string | {
|
|
10269
10269
|
name: string;
|
|
10270
10270
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10271
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10271
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10272
10272
|
} | undefined;
|
|
10273
10273
|
expanded?: boolean | undefined;
|
|
10274
10274
|
public?: boolean | undefined;
|
|
@@ -10294,7 +10294,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10294
10294
|
icon?: string | {
|
|
10295
10295
|
name: string;
|
|
10296
10296
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10297
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10297
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10298
10298
|
} | undefined;
|
|
10299
10299
|
expanded?: boolean | undefined;
|
|
10300
10300
|
public?: boolean | undefined;
|
|
@@ -10507,7 +10507,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10507
10507
|
icon?: string | {
|
|
10508
10508
|
name: string;
|
|
10509
10509
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10510
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10510
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10511
10511
|
} | undefined;
|
|
10512
10512
|
} | {
|
|
10513
10513
|
type: "github";
|
|
@@ -10515,7 +10515,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10515
10515
|
icon?: string | {
|
|
10516
10516
|
name: string;
|
|
10517
10517
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10518
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10518
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10519
10519
|
} | undefined;
|
|
10520
10520
|
label?: string | undefined;
|
|
10521
10521
|
} | {
|
|
@@ -10524,13 +10524,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10524
10524
|
icon?: string | {
|
|
10525
10525
|
name: string;
|
|
10526
10526
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10527
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10527
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10528
10528
|
} | undefined;
|
|
10529
10529
|
label?: string | undefined;
|
|
10530
10530
|
})[] | undefined;
|
|
10531
10531
|
} | undefined;
|
|
10532
10532
|
icons?: {
|
|
10533
|
-
library: "fontawesome" | "lucide";
|
|
10533
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
10534
10534
|
} | undefined;
|
|
10535
10535
|
styling?: {
|
|
10536
10536
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -10553,7 +10553,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10553
10553
|
};
|
|
10554
10554
|
} | undefined;
|
|
10555
10555
|
contextual?: {
|
|
10556
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10556
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10557
10557
|
href: string | {
|
|
10558
10558
|
base: string;
|
|
10559
10559
|
query?: {
|
|
@@ -10566,7 +10566,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10566
10566
|
icon?: string | {
|
|
10567
10567
|
name: string;
|
|
10568
10568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10569
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10569
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10570
10570
|
} | undefined;
|
|
10571
10571
|
})[];
|
|
10572
10572
|
display: "header" | "toc";
|
|
@@ -10613,7 +10613,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10613
10613
|
icon?: string | {
|
|
10614
10614
|
name: string;
|
|
10615
10615
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10616
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10616
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10617
10617
|
} | undefined;
|
|
10618
10618
|
expanded?: boolean | undefined;
|
|
10619
10619
|
public?: boolean | undefined;
|
|
@@ -10639,7 +10639,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10639
10639
|
icon?: string | {
|
|
10640
10640
|
name: string;
|
|
10641
10641
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10642
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10642
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10643
10643
|
} | undefined;
|
|
10644
10644
|
expanded?: boolean | undefined;
|
|
10645
10645
|
public?: boolean | undefined;
|
|
@@ -10853,7 +10853,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10853
10853
|
icon?: string | {
|
|
10854
10854
|
name: string;
|
|
10855
10855
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10856
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10856
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10857
10857
|
} | undefined;
|
|
10858
10858
|
} | {
|
|
10859
10859
|
type: "github";
|
|
@@ -10861,7 +10861,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10861
10861
|
icon?: string | {
|
|
10862
10862
|
name: string;
|
|
10863
10863
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10864
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10864
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10865
10865
|
} | undefined;
|
|
10866
10866
|
label?: string | undefined;
|
|
10867
10867
|
} | {
|
|
@@ -10870,13 +10870,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10870
10870
|
icon?: string | {
|
|
10871
10871
|
name: string;
|
|
10872
10872
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10873
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10873
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10874
10874
|
} | undefined;
|
|
10875
10875
|
label?: string | undefined;
|
|
10876
10876
|
})[] | undefined;
|
|
10877
10877
|
} | undefined;
|
|
10878
10878
|
icons?: {
|
|
10879
|
-
library: "fontawesome" | "lucide";
|
|
10879
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
10880
10880
|
} | undefined;
|
|
10881
10881
|
styling?: {
|
|
10882
10882
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -10899,7 +10899,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10899
10899
|
};
|
|
10900
10900
|
} | undefined;
|
|
10901
10901
|
contextual?: {
|
|
10902
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
10902
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
10903
10903
|
href: string | {
|
|
10904
10904
|
base: string;
|
|
10905
10905
|
query?: {
|
|
@@ -10912,7 +10912,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10912
10912
|
icon?: string | {
|
|
10913
10913
|
name: string;
|
|
10914
10914
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10915
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
10915
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
10916
10916
|
} | undefined;
|
|
10917
10917
|
})[];
|
|
10918
10918
|
display?: "header" | "toc" | undefined;
|
|
@@ -11164,15 +11164,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11164
11164
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11165
11165
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11166
11166
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11167
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11167
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
11168
11168
|
}, "strip", z.ZodTypeAny, {
|
|
11169
11169
|
name: string;
|
|
11170
11170
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11171
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11171
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11172
11172
|
}, {
|
|
11173
11173
|
name: string;
|
|
11174
11174
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11175
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11175
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11176
11176
|
}>]>>;
|
|
11177
11177
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11178
11178
|
}, {
|
|
@@ -11184,7 +11184,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11184
11184
|
icon?: string | {
|
|
11185
11185
|
name: string;
|
|
11186
11186
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11187
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11187
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11188
11188
|
} | undefined;
|
|
11189
11189
|
label?: string | undefined;
|
|
11190
11190
|
}, {
|
|
@@ -11193,22 +11193,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11193
11193
|
icon?: string | {
|
|
11194
11194
|
name: string;
|
|
11195
11195
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11196
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11196
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11197
11197
|
} | undefined;
|
|
11198
11198
|
label?: string | undefined;
|
|
11199
11199
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11200
11200
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11201
11201
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11202
11202
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11203
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11203
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
11204
11204
|
}, "strip", z.ZodTypeAny, {
|
|
11205
11205
|
name: string;
|
|
11206
11206
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11207
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11207
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11208
11208
|
}, {
|
|
11209
11209
|
name: string;
|
|
11210
11210
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11211
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11211
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11212
11212
|
}>]>>;
|
|
11213
11213
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11214
11214
|
}, {
|
|
@@ -11220,7 +11220,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11220
11220
|
icon?: string | {
|
|
11221
11221
|
name: string;
|
|
11222
11222
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11223
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11223
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11224
11224
|
} | undefined;
|
|
11225
11225
|
label?: string | undefined;
|
|
11226
11226
|
}, {
|
|
@@ -11229,22 +11229,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11229
11229
|
icon?: string | {
|
|
11230
11230
|
name: string;
|
|
11231
11231
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11232
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11232
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11233
11233
|
} | undefined;
|
|
11234
11234
|
label?: string | undefined;
|
|
11235
11235
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11236
11236
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
11237
11237
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
11238
11238
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
11239
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
11239
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
11240
11240
|
}, "strip", z.ZodTypeAny, {
|
|
11241
11241
|
name: string;
|
|
11242
11242
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11243
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11243
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11244
11244
|
}, {
|
|
11245
11245
|
name: string;
|
|
11246
11246
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11247
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11247
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11248
11248
|
}>]>>;
|
|
11249
11249
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
11250
11250
|
}, {
|
|
@@ -11257,7 +11257,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11257
11257
|
icon?: string | {
|
|
11258
11258
|
name: string;
|
|
11259
11259
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11260
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11260
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11261
11261
|
} | undefined;
|
|
11262
11262
|
}, {
|
|
11263
11263
|
href: string;
|
|
@@ -11266,7 +11266,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11266
11266
|
icon?: string | {
|
|
11267
11267
|
name: string;
|
|
11268
11268
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11269
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11269
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11270
11270
|
} | undefined;
|
|
11271
11271
|
}>]>, "many">>;
|
|
11272
11272
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -11327,7 +11327,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11327
11327
|
icon?: string | {
|
|
11328
11328
|
name: string;
|
|
11329
11329
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11330
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11330
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11331
11331
|
} | undefined;
|
|
11332
11332
|
} | {
|
|
11333
11333
|
type: "github";
|
|
@@ -11335,7 +11335,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11335
11335
|
icon?: string | {
|
|
11336
11336
|
name: string;
|
|
11337
11337
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11338
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11338
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11339
11339
|
} | undefined;
|
|
11340
11340
|
label?: string | undefined;
|
|
11341
11341
|
} | {
|
|
@@ -11344,7 +11344,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11344
11344
|
icon?: string | {
|
|
11345
11345
|
name: string;
|
|
11346
11346
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11347
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11347
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11348
11348
|
} | undefined;
|
|
11349
11349
|
label?: string | undefined;
|
|
11350
11350
|
})[] | undefined;
|
|
@@ -11369,7 +11369,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11369
11369
|
icon?: string | {
|
|
11370
11370
|
name: string;
|
|
11371
11371
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11372
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11372
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11373
11373
|
} | undefined;
|
|
11374
11374
|
} | {
|
|
11375
11375
|
type: "github";
|
|
@@ -11377,7 +11377,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11377
11377
|
icon?: string | {
|
|
11378
11378
|
name: string;
|
|
11379
11379
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11380
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11380
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11381
11381
|
} | undefined;
|
|
11382
11382
|
label?: string | undefined;
|
|
11383
11383
|
} | {
|
|
@@ -11386,7 +11386,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11386
11386
|
icon?: string | {
|
|
11387
11387
|
name: string;
|
|
11388
11388
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11389
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11389
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11390
11390
|
} | undefined;
|
|
11391
11391
|
label?: string | undefined;
|
|
11392
11392
|
})[] | undefined;
|
|
@@ -11459,7 +11459,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11459
11459
|
icon?: string | {
|
|
11460
11460
|
name: string;
|
|
11461
11461
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11462
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11462
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11463
11463
|
} | undefined;
|
|
11464
11464
|
expanded?: boolean | undefined;
|
|
11465
11465
|
public?: boolean | undefined;
|
|
@@ -11482,7 +11482,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11482
11482
|
icon?: string | {
|
|
11483
11483
|
name: string;
|
|
11484
11484
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11485
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11485
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11486
11486
|
} | undefined;
|
|
11487
11487
|
expanded?: boolean | undefined;
|
|
11488
11488
|
public?: boolean | undefined;
|
|
@@ -11507,7 +11507,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11507
11507
|
icon?: string | {
|
|
11508
11508
|
name: string;
|
|
11509
11509
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11510
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11510
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11511
11511
|
} | undefined;
|
|
11512
11512
|
expanded?: boolean | undefined;
|
|
11513
11513
|
public?: boolean | undefined;
|
|
@@ -11533,7 +11533,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11533
11533
|
icon?: string | {
|
|
11534
11534
|
name: string;
|
|
11535
11535
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11536
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11536
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11537
11537
|
} | undefined;
|
|
11538
11538
|
expanded?: boolean | undefined;
|
|
11539
11539
|
public?: boolean | undefined;
|
|
@@ -11561,7 +11561,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11561
11561
|
icon?: string | {
|
|
11562
11562
|
name: string;
|
|
11563
11563
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11564
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11564
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11565
11565
|
} | undefined;
|
|
11566
11566
|
expanded?: boolean | undefined;
|
|
11567
11567
|
public?: boolean | undefined;
|
|
@@ -11584,7 +11584,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11584
11584
|
icon?: string | {
|
|
11585
11585
|
name: string;
|
|
11586
11586
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11587
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11587
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11588
11588
|
} | undefined;
|
|
11589
11589
|
expanded?: boolean | undefined;
|
|
11590
11590
|
public?: boolean | undefined;
|
|
@@ -11609,7 +11609,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11609
11609
|
icon?: string | {
|
|
11610
11610
|
name: string;
|
|
11611
11611
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11612
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11612
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11613
11613
|
} | undefined;
|
|
11614
11614
|
expanded?: boolean | undefined;
|
|
11615
11615
|
public?: boolean | undefined;
|
|
@@ -11635,7 +11635,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11635
11635
|
icon?: string | {
|
|
11636
11636
|
name: string;
|
|
11637
11637
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11638
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
11638
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
11639
11639
|
} | undefined;
|
|
11640
11640
|
expanded?: boolean | undefined;
|
|
11641
11641
|
public?: boolean | undefined;
|
|
@@ -11825,11 +11825,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11825
11825
|
} | undefined;
|
|
11826
11826
|
}>]>>;
|
|
11827
11827
|
icons: z.ZodOptional<z.ZodObject<{
|
|
11828
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
11828
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
11829
11829
|
}, "strip", z.ZodTypeAny, {
|
|
11830
|
-
library: "fontawesome" | "lucide";
|
|
11830
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
11831
11831
|
}, {
|
|
11832
|
-
library: "fontawesome" | "lucide";
|
|
11832
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
11833
11833
|
}>>;
|
|
11834
11834
|
styling: z.ZodOptional<z.ZodObject<{
|
|
11835
11835
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -12242,21 +12242,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12242
12242
|
};
|
|
12243
12243
|
}>>;
|
|
12244
12244
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
12245
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
12245
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
12246
12246
|
title: z.ZodString;
|
|
12247
12247
|
description: z.ZodString;
|
|
12248
12248
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
12249
12249
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
12250
12250
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
12251
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
12251
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
12252
12252
|
}, "strip", z.ZodTypeAny, {
|
|
12253
12253
|
name: string;
|
|
12254
12254
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12255
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12255
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12256
12256
|
}, {
|
|
12257
12257
|
name: string;
|
|
12258
12258
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12259
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12259
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12260
12260
|
}>]>>;
|
|
12261
12261
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
12262
12262
|
base: z.ZodString;
|
|
@@ -12296,7 +12296,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12296
12296
|
icon?: string | {
|
|
12297
12297
|
name: string;
|
|
12298
12298
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12299
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12299
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12300
12300
|
} | undefined;
|
|
12301
12301
|
}, {
|
|
12302
12302
|
href: string | {
|
|
@@ -12311,9 +12311,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12311
12311
|
icon?: string | {
|
|
12312
12312
|
name: string;
|
|
12313
12313
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12314
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12314
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12315
12315
|
} | undefined;
|
|
12316
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
12316
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
12317
12317
|
href: string | {
|
|
12318
12318
|
base: string;
|
|
12319
12319
|
query?: {
|
|
@@ -12326,9 +12326,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12326
12326
|
icon?: string | {
|
|
12327
12327
|
name: string;
|
|
12328
12328
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12329
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12329
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12330
12330
|
} | undefined;
|
|
12331
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
12331
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
12332
12332
|
href: string | {
|
|
12333
12333
|
base: string;
|
|
12334
12334
|
query?: {
|
|
@@ -12341,12 +12341,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12341
12341
|
icon?: string | {
|
|
12342
12342
|
name: string;
|
|
12343
12343
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12344
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12344
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12345
12345
|
} | undefined;
|
|
12346
12346
|
})[]>;
|
|
12347
12347
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
12348
12348
|
}, "strip", z.ZodTypeAny, {
|
|
12349
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
12349
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
12350
12350
|
href: string | {
|
|
12351
12351
|
base: string;
|
|
12352
12352
|
query?: {
|
|
@@ -12359,12 +12359,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12359
12359
|
icon?: string | {
|
|
12360
12360
|
name: string;
|
|
12361
12361
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12362
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12362
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12363
12363
|
} | undefined;
|
|
12364
12364
|
})[];
|
|
12365
12365
|
display: "header" | "toc";
|
|
12366
12366
|
}, {
|
|
12367
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
12367
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
12368
12368
|
href: string | {
|
|
12369
12369
|
base: string;
|
|
12370
12370
|
query?: {
|
|
@@ -12377,7 +12377,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12377
12377
|
icon?: string | {
|
|
12378
12378
|
name: string;
|
|
12379
12379
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12380
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12380
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12381
12381
|
} | undefined;
|
|
12382
12382
|
})[];
|
|
12383
12383
|
display?: "header" | "toc" | undefined;
|
|
@@ -12453,7 +12453,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12453
12453
|
icon?: string | {
|
|
12454
12454
|
name: string;
|
|
12455
12455
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12456
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12456
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12457
12457
|
} | undefined;
|
|
12458
12458
|
expanded?: boolean | undefined;
|
|
12459
12459
|
public?: boolean | undefined;
|
|
@@ -12479,7 +12479,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12479
12479
|
icon?: string | {
|
|
12480
12480
|
name: string;
|
|
12481
12481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12482
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12482
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12483
12483
|
} | undefined;
|
|
12484
12484
|
expanded?: boolean | undefined;
|
|
12485
12485
|
public?: boolean | undefined;
|
|
@@ -12692,7 +12692,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12692
12692
|
icon?: string | {
|
|
12693
12693
|
name: string;
|
|
12694
12694
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12695
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12695
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12696
12696
|
} | undefined;
|
|
12697
12697
|
} | {
|
|
12698
12698
|
type: "github";
|
|
@@ -12700,7 +12700,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12700
12700
|
icon?: string | {
|
|
12701
12701
|
name: string;
|
|
12702
12702
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12703
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12703
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12704
12704
|
} | undefined;
|
|
12705
12705
|
label?: string | undefined;
|
|
12706
12706
|
} | {
|
|
@@ -12709,13 +12709,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12709
12709
|
icon?: string | {
|
|
12710
12710
|
name: string;
|
|
12711
12711
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12712
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12712
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12713
12713
|
} | undefined;
|
|
12714
12714
|
label?: string | undefined;
|
|
12715
12715
|
})[] | undefined;
|
|
12716
12716
|
} | undefined;
|
|
12717
12717
|
icons?: {
|
|
12718
|
-
library: "fontawesome" | "lucide";
|
|
12718
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
12719
12719
|
} | undefined;
|
|
12720
12720
|
styling?: {
|
|
12721
12721
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -12738,7 +12738,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12738
12738
|
};
|
|
12739
12739
|
} | undefined;
|
|
12740
12740
|
contextual?: {
|
|
12741
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
12741
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
12742
12742
|
href: string | {
|
|
12743
12743
|
base: string;
|
|
12744
12744
|
query?: {
|
|
@@ -12751,7 +12751,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12751
12751
|
icon?: string | {
|
|
12752
12752
|
name: string;
|
|
12753
12753
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12754
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12754
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12755
12755
|
} | undefined;
|
|
12756
12756
|
})[];
|
|
12757
12757
|
display: "header" | "toc";
|
|
@@ -12798,7 +12798,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12798
12798
|
icon?: string | {
|
|
12799
12799
|
name: string;
|
|
12800
12800
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12801
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12801
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12802
12802
|
} | undefined;
|
|
12803
12803
|
expanded?: boolean | undefined;
|
|
12804
12804
|
public?: boolean | undefined;
|
|
@@ -12824,7 +12824,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12824
12824
|
icon?: string | {
|
|
12825
12825
|
name: string;
|
|
12826
12826
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12827
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
12827
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
12828
12828
|
} | undefined;
|
|
12829
12829
|
expanded?: boolean | undefined;
|
|
12830
12830
|
public?: boolean | undefined;
|
|
@@ -13038,7 +13038,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13038
13038
|
icon?: string | {
|
|
13039
13039
|
name: string;
|
|
13040
13040
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13041
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13041
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13042
13042
|
} | undefined;
|
|
13043
13043
|
} | {
|
|
13044
13044
|
type: "github";
|
|
@@ -13046,7 +13046,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13046
13046
|
icon?: string | {
|
|
13047
13047
|
name: string;
|
|
13048
13048
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13049
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13049
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13050
13050
|
} | undefined;
|
|
13051
13051
|
label?: string | undefined;
|
|
13052
13052
|
} | {
|
|
@@ -13055,13 +13055,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13055
13055
|
icon?: string | {
|
|
13056
13056
|
name: string;
|
|
13057
13057
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13058
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13058
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13059
13059
|
} | undefined;
|
|
13060
13060
|
label?: string | undefined;
|
|
13061
13061
|
})[] | undefined;
|
|
13062
13062
|
} | undefined;
|
|
13063
13063
|
icons?: {
|
|
13064
|
-
library: "fontawesome" | "lucide";
|
|
13064
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
13065
13065
|
} | undefined;
|
|
13066
13066
|
styling?: {
|
|
13067
13067
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -13084,7 +13084,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13084
13084
|
};
|
|
13085
13085
|
} | undefined;
|
|
13086
13086
|
contextual?: {
|
|
13087
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
13087
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
13088
13088
|
href: string | {
|
|
13089
13089
|
base: string;
|
|
13090
13090
|
query?: {
|
|
@@ -13097,7 +13097,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13097
13097
|
icon?: string | {
|
|
13098
13098
|
name: string;
|
|
13099
13099
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13100
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13100
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13101
13101
|
} | undefined;
|
|
13102
13102
|
})[];
|
|
13103
13103
|
display?: "header" | "toc" | undefined;
|
|
@@ -13349,15 +13349,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13349
13349
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
13350
13350
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
13351
13351
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
13352
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
13352
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
13353
13353
|
}, "strip", z.ZodTypeAny, {
|
|
13354
13354
|
name: string;
|
|
13355
13355
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13356
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13356
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13357
13357
|
}, {
|
|
13358
13358
|
name: string;
|
|
13359
13359
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13360
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13360
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13361
13361
|
}>]>>;
|
|
13362
13362
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
13363
13363
|
}, {
|
|
@@ -13369,7 +13369,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13369
13369
|
icon?: string | {
|
|
13370
13370
|
name: string;
|
|
13371
13371
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13372
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13372
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13373
13373
|
} | undefined;
|
|
13374
13374
|
label?: string | undefined;
|
|
13375
13375
|
}, {
|
|
@@ -13378,22 +13378,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13378
13378
|
icon?: string | {
|
|
13379
13379
|
name: string;
|
|
13380
13380
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13381
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13381
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13382
13382
|
} | undefined;
|
|
13383
13383
|
label?: string | undefined;
|
|
13384
13384
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13385
13385
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
13386
13386
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
13387
13387
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
13388
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
13388
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
13389
13389
|
}, "strip", z.ZodTypeAny, {
|
|
13390
13390
|
name: string;
|
|
13391
13391
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13392
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13392
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13393
13393
|
}, {
|
|
13394
13394
|
name: string;
|
|
13395
13395
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13396
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13396
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13397
13397
|
}>]>>;
|
|
13398
13398
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
13399
13399
|
}, {
|
|
@@ -13405,7 +13405,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13405
13405
|
icon?: string | {
|
|
13406
13406
|
name: string;
|
|
13407
13407
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13408
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13408
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13409
13409
|
} | undefined;
|
|
13410
13410
|
label?: string | undefined;
|
|
13411
13411
|
}, {
|
|
@@ -13414,22 +13414,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13414
13414
|
icon?: string | {
|
|
13415
13415
|
name: string;
|
|
13416
13416
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13417
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13417
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13418
13418
|
} | undefined;
|
|
13419
13419
|
label?: string | undefined;
|
|
13420
13420
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13421
13421
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
13422
13422
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
13423
13423
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
13424
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
13424
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
13425
13425
|
}, "strip", z.ZodTypeAny, {
|
|
13426
13426
|
name: string;
|
|
13427
13427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13428
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13428
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13429
13429
|
}, {
|
|
13430
13430
|
name: string;
|
|
13431
13431
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13432
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13432
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13433
13433
|
}>]>>;
|
|
13434
13434
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
13435
13435
|
}, {
|
|
@@ -13442,7 +13442,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13442
13442
|
icon?: string | {
|
|
13443
13443
|
name: string;
|
|
13444
13444
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13445
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13445
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13446
13446
|
} | undefined;
|
|
13447
13447
|
}, {
|
|
13448
13448
|
href: string;
|
|
@@ -13451,7 +13451,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13451
13451
|
icon?: string | {
|
|
13452
13452
|
name: string;
|
|
13453
13453
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13454
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13454
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13455
13455
|
} | undefined;
|
|
13456
13456
|
}>]>, "many">>;
|
|
13457
13457
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -13512,7 +13512,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13512
13512
|
icon?: string | {
|
|
13513
13513
|
name: string;
|
|
13514
13514
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13515
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13515
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13516
13516
|
} | undefined;
|
|
13517
13517
|
} | {
|
|
13518
13518
|
type: "github";
|
|
@@ -13520,7 +13520,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13520
13520
|
icon?: string | {
|
|
13521
13521
|
name: string;
|
|
13522
13522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13523
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13523
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13524
13524
|
} | undefined;
|
|
13525
13525
|
label?: string | undefined;
|
|
13526
13526
|
} | {
|
|
@@ -13529,7 +13529,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13529
13529
|
icon?: string | {
|
|
13530
13530
|
name: string;
|
|
13531
13531
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13532
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13532
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13533
13533
|
} | undefined;
|
|
13534
13534
|
label?: string | undefined;
|
|
13535
13535
|
})[] | undefined;
|
|
@@ -13554,7 +13554,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13554
13554
|
icon?: string | {
|
|
13555
13555
|
name: string;
|
|
13556
13556
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13557
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13557
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13558
13558
|
} | undefined;
|
|
13559
13559
|
} | {
|
|
13560
13560
|
type: "github";
|
|
@@ -13562,7 +13562,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13562
13562
|
icon?: string | {
|
|
13563
13563
|
name: string;
|
|
13564
13564
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13565
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13565
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13566
13566
|
} | undefined;
|
|
13567
13567
|
label?: string | undefined;
|
|
13568
13568
|
} | {
|
|
@@ -13571,7 +13571,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13571
13571
|
icon?: string | {
|
|
13572
13572
|
name: string;
|
|
13573
13573
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13574
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13574
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13575
13575
|
} | undefined;
|
|
13576
13576
|
label?: string | undefined;
|
|
13577
13577
|
})[] | undefined;
|
|
@@ -13644,7 +13644,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13644
13644
|
icon?: string | {
|
|
13645
13645
|
name: string;
|
|
13646
13646
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13647
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13647
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13648
13648
|
} | undefined;
|
|
13649
13649
|
expanded?: boolean | undefined;
|
|
13650
13650
|
public?: boolean | undefined;
|
|
@@ -13667,7 +13667,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13667
13667
|
icon?: string | {
|
|
13668
13668
|
name: string;
|
|
13669
13669
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13670
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13670
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13671
13671
|
} | undefined;
|
|
13672
13672
|
expanded?: boolean | undefined;
|
|
13673
13673
|
public?: boolean | undefined;
|
|
@@ -13692,7 +13692,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13692
13692
|
icon?: string | {
|
|
13693
13693
|
name: string;
|
|
13694
13694
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13695
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13695
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13696
13696
|
} | undefined;
|
|
13697
13697
|
expanded?: boolean | undefined;
|
|
13698
13698
|
public?: boolean | undefined;
|
|
@@ -13718,7 +13718,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13718
13718
|
icon?: string | {
|
|
13719
13719
|
name: string;
|
|
13720
13720
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13721
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13721
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13722
13722
|
} | undefined;
|
|
13723
13723
|
expanded?: boolean | undefined;
|
|
13724
13724
|
public?: boolean | undefined;
|
|
@@ -13746,7 +13746,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13746
13746
|
icon?: string | {
|
|
13747
13747
|
name: string;
|
|
13748
13748
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13749
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13749
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13750
13750
|
} | undefined;
|
|
13751
13751
|
expanded?: boolean | undefined;
|
|
13752
13752
|
public?: boolean | undefined;
|
|
@@ -13769,7 +13769,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13769
13769
|
icon?: string | {
|
|
13770
13770
|
name: string;
|
|
13771
13771
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13772
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13772
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13773
13773
|
} | undefined;
|
|
13774
13774
|
expanded?: boolean | undefined;
|
|
13775
13775
|
public?: boolean | undefined;
|
|
@@ -13794,7 +13794,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13794
13794
|
icon?: string | {
|
|
13795
13795
|
name: string;
|
|
13796
13796
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13797
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13797
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13798
13798
|
} | undefined;
|
|
13799
13799
|
expanded?: boolean | undefined;
|
|
13800
13800
|
public?: boolean | undefined;
|
|
@@ -13820,7 +13820,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
13820
13820
|
icon?: string | {
|
|
13821
13821
|
name: string;
|
|
13822
13822
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
13823
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
13823
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
13824
13824
|
} | undefined;
|
|
13825
13825
|
expanded?: boolean | undefined;
|
|
13826
13826
|
public?: boolean | undefined;
|
|
@@ -14010,11 +14010,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14010
14010
|
} | undefined;
|
|
14011
14011
|
}>]>>;
|
|
14012
14012
|
icons: z.ZodOptional<z.ZodObject<{
|
|
14013
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
14013
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
14014
14014
|
}, "strip", z.ZodTypeAny, {
|
|
14015
|
-
library: "fontawesome" | "lucide";
|
|
14015
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
14016
14016
|
}, {
|
|
14017
|
-
library: "fontawesome" | "lucide";
|
|
14017
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
14018
14018
|
}>>;
|
|
14019
14019
|
styling: z.ZodOptional<z.ZodObject<{
|
|
14020
14020
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -14427,21 +14427,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14427
14427
|
};
|
|
14428
14428
|
}>>;
|
|
14429
14429
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
14430
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
14430
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
14431
14431
|
title: z.ZodString;
|
|
14432
14432
|
description: z.ZodString;
|
|
14433
14433
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
14434
14434
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
14435
14435
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
14436
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
14436
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
14437
14437
|
}, "strip", z.ZodTypeAny, {
|
|
14438
14438
|
name: string;
|
|
14439
14439
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14440
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14440
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14441
14441
|
}, {
|
|
14442
14442
|
name: string;
|
|
14443
14443
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14444
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14444
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14445
14445
|
}>]>>;
|
|
14446
14446
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
14447
14447
|
base: z.ZodString;
|
|
@@ -14481,7 +14481,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14481
14481
|
icon?: string | {
|
|
14482
14482
|
name: string;
|
|
14483
14483
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14484
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14484
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14485
14485
|
} | undefined;
|
|
14486
14486
|
}, {
|
|
14487
14487
|
href: string | {
|
|
@@ -14496,9 +14496,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14496
14496
|
icon?: string | {
|
|
14497
14497
|
name: string;
|
|
14498
14498
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14499
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14499
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14500
14500
|
} | undefined;
|
|
14501
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
14501
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
14502
14502
|
href: string | {
|
|
14503
14503
|
base: string;
|
|
14504
14504
|
query?: {
|
|
@@ -14511,9 +14511,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14511
14511
|
icon?: string | {
|
|
14512
14512
|
name: string;
|
|
14513
14513
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14514
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14514
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14515
14515
|
} | undefined;
|
|
14516
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
14516
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
14517
14517
|
href: string | {
|
|
14518
14518
|
base: string;
|
|
14519
14519
|
query?: {
|
|
@@ -14526,12 +14526,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14526
14526
|
icon?: string | {
|
|
14527
14527
|
name: string;
|
|
14528
14528
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14529
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14529
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14530
14530
|
} | undefined;
|
|
14531
14531
|
})[]>;
|
|
14532
14532
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
14533
14533
|
}, "strip", z.ZodTypeAny, {
|
|
14534
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
14534
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
14535
14535
|
href: string | {
|
|
14536
14536
|
base: string;
|
|
14537
14537
|
query?: {
|
|
@@ -14544,12 +14544,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14544
14544
|
icon?: string | {
|
|
14545
14545
|
name: string;
|
|
14546
14546
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14547
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14547
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14548
14548
|
} | undefined;
|
|
14549
14549
|
})[];
|
|
14550
14550
|
display: "header" | "toc";
|
|
14551
14551
|
}, {
|
|
14552
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
14552
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
14553
14553
|
href: string | {
|
|
14554
14554
|
base: string;
|
|
14555
14555
|
query?: {
|
|
@@ -14562,7 +14562,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14562
14562
|
icon?: string | {
|
|
14563
14563
|
name: string;
|
|
14564
14564
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14565
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14565
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14566
14566
|
} | undefined;
|
|
14567
14567
|
})[];
|
|
14568
14568
|
display?: "header" | "toc" | undefined;
|
|
@@ -14638,7 +14638,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14638
14638
|
icon?: string | {
|
|
14639
14639
|
name: string;
|
|
14640
14640
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14641
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14641
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14642
14642
|
} | undefined;
|
|
14643
14643
|
expanded?: boolean | undefined;
|
|
14644
14644
|
public?: boolean | undefined;
|
|
@@ -14664,7 +14664,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14664
14664
|
icon?: string | {
|
|
14665
14665
|
name: string;
|
|
14666
14666
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14667
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14667
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14668
14668
|
} | undefined;
|
|
14669
14669
|
expanded?: boolean | undefined;
|
|
14670
14670
|
public?: boolean | undefined;
|
|
@@ -14877,7 +14877,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14877
14877
|
icon?: string | {
|
|
14878
14878
|
name: string;
|
|
14879
14879
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14880
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14880
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14881
14881
|
} | undefined;
|
|
14882
14882
|
} | {
|
|
14883
14883
|
type: "github";
|
|
@@ -14885,7 +14885,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14885
14885
|
icon?: string | {
|
|
14886
14886
|
name: string;
|
|
14887
14887
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14888
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14888
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14889
14889
|
} | undefined;
|
|
14890
14890
|
label?: string | undefined;
|
|
14891
14891
|
} | {
|
|
@@ -14894,13 +14894,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14894
14894
|
icon?: string | {
|
|
14895
14895
|
name: string;
|
|
14896
14896
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14897
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14897
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14898
14898
|
} | undefined;
|
|
14899
14899
|
label?: string | undefined;
|
|
14900
14900
|
})[] | undefined;
|
|
14901
14901
|
} | undefined;
|
|
14902
14902
|
icons?: {
|
|
14903
|
-
library: "fontawesome" | "lucide";
|
|
14903
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
14904
14904
|
} | undefined;
|
|
14905
14905
|
styling?: {
|
|
14906
14906
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -14923,7 +14923,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14923
14923
|
};
|
|
14924
14924
|
} | undefined;
|
|
14925
14925
|
contextual?: {
|
|
14926
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
14926
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
14927
14927
|
href: string | {
|
|
14928
14928
|
base: string;
|
|
14929
14929
|
query?: {
|
|
@@ -14936,7 +14936,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14936
14936
|
icon?: string | {
|
|
14937
14937
|
name: string;
|
|
14938
14938
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14939
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14939
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14940
14940
|
} | undefined;
|
|
14941
14941
|
})[];
|
|
14942
14942
|
display: "header" | "toc";
|
|
@@ -14983,7 +14983,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
14983
14983
|
icon?: string | {
|
|
14984
14984
|
name: string;
|
|
14985
14985
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
14986
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
14986
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
14987
14987
|
} | undefined;
|
|
14988
14988
|
expanded?: boolean | undefined;
|
|
14989
14989
|
public?: boolean | undefined;
|
|
@@ -15009,7 +15009,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15009
15009
|
icon?: string | {
|
|
15010
15010
|
name: string;
|
|
15011
15011
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15012
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15012
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15013
15013
|
} | undefined;
|
|
15014
15014
|
expanded?: boolean | undefined;
|
|
15015
15015
|
public?: boolean | undefined;
|
|
@@ -15223,7 +15223,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15223
15223
|
icon?: string | {
|
|
15224
15224
|
name: string;
|
|
15225
15225
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15226
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15226
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15227
15227
|
} | undefined;
|
|
15228
15228
|
} | {
|
|
15229
15229
|
type: "github";
|
|
@@ -15231,7 +15231,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15231
15231
|
icon?: string | {
|
|
15232
15232
|
name: string;
|
|
15233
15233
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15234
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15234
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15235
15235
|
} | undefined;
|
|
15236
15236
|
label?: string | undefined;
|
|
15237
15237
|
} | {
|
|
@@ -15240,13 +15240,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15240
15240
|
icon?: string | {
|
|
15241
15241
|
name: string;
|
|
15242
15242
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15243
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15243
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15244
15244
|
} | undefined;
|
|
15245
15245
|
label?: string | undefined;
|
|
15246
15246
|
})[] | undefined;
|
|
15247
15247
|
} | undefined;
|
|
15248
15248
|
icons?: {
|
|
15249
|
-
library: "fontawesome" | "lucide";
|
|
15249
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
15250
15250
|
} | undefined;
|
|
15251
15251
|
styling?: {
|
|
15252
15252
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -15269,7 +15269,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15269
15269
|
};
|
|
15270
15270
|
} | undefined;
|
|
15271
15271
|
contextual?: {
|
|
15272
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
15272
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
15273
15273
|
href: string | {
|
|
15274
15274
|
base: string;
|
|
15275
15275
|
query?: {
|
|
@@ -15282,7 +15282,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15282
15282
|
icon?: string | {
|
|
15283
15283
|
name: string;
|
|
15284
15284
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15285
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15285
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15286
15286
|
} | undefined;
|
|
15287
15287
|
})[];
|
|
15288
15288
|
display?: "header" | "toc" | undefined;
|
|
@@ -15534,15 +15534,15 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15534
15534
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
15535
15535
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
15536
15536
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
15537
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
15537
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
15538
15538
|
}, "strip", z.ZodTypeAny, {
|
|
15539
15539
|
name: string;
|
|
15540
15540
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15541
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15541
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15542
15542
|
}, {
|
|
15543
15543
|
name: string;
|
|
15544
15544
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15545
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15545
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15546
15546
|
}>]>>;
|
|
15547
15547
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
15548
15548
|
}, {
|
|
@@ -15554,7 +15554,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15554
15554
|
icon?: string | {
|
|
15555
15555
|
name: string;
|
|
15556
15556
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15557
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15557
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15558
15558
|
} | undefined;
|
|
15559
15559
|
label?: string | undefined;
|
|
15560
15560
|
}, {
|
|
@@ -15563,22 +15563,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15563
15563
|
icon?: string | {
|
|
15564
15564
|
name: string;
|
|
15565
15565
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15566
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15566
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15567
15567
|
} | undefined;
|
|
15568
15568
|
label?: string | undefined;
|
|
15569
15569
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15570
15570
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
15571
15571
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
15572
15572
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
15573
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
15573
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
15574
15574
|
}, "strip", z.ZodTypeAny, {
|
|
15575
15575
|
name: string;
|
|
15576
15576
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15577
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15577
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15578
15578
|
}, {
|
|
15579
15579
|
name: string;
|
|
15580
15580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15581
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15581
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15582
15582
|
}>]>>;
|
|
15583
15583
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
15584
15584
|
}, {
|
|
@@ -15590,7 +15590,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15590
15590
|
icon?: string | {
|
|
15591
15591
|
name: string;
|
|
15592
15592
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15593
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15593
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15594
15594
|
} | undefined;
|
|
15595
15595
|
label?: string | undefined;
|
|
15596
15596
|
}, {
|
|
@@ -15599,22 +15599,22 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15599
15599
|
icon?: string | {
|
|
15600
15600
|
name: string;
|
|
15601
15601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15602
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15602
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15603
15603
|
} | undefined;
|
|
15604
15604
|
label?: string | undefined;
|
|
15605
15605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
15606
15606
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
15607
15607
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
15608
15608
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
15609
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
15609
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
15610
15610
|
}, "strip", z.ZodTypeAny, {
|
|
15611
15611
|
name: string;
|
|
15612
15612
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15613
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15613
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15614
15614
|
}, {
|
|
15615
15615
|
name: string;
|
|
15616
15616
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15617
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15617
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15618
15618
|
}>]>>;
|
|
15619
15619
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
15620
15620
|
}, {
|
|
@@ -15627,7 +15627,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15627
15627
|
icon?: string | {
|
|
15628
15628
|
name: string;
|
|
15629
15629
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15630
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15630
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15631
15631
|
} | undefined;
|
|
15632
15632
|
}, {
|
|
15633
15633
|
href: string;
|
|
@@ -15636,7 +15636,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15636
15636
|
icon?: string | {
|
|
15637
15637
|
name: string;
|
|
15638
15638
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15639
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15639
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15640
15640
|
} | undefined;
|
|
15641
15641
|
}>]>, "many">>;
|
|
15642
15642
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -15697,7 +15697,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15697
15697
|
icon?: string | {
|
|
15698
15698
|
name: string;
|
|
15699
15699
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15700
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15700
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15701
15701
|
} | undefined;
|
|
15702
15702
|
} | {
|
|
15703
15703
|
type: "github";
|
|
@@ -15705,7 +15705,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15705
15705
|
icon?: string | {
|
|
15706
15706
|
name: string;
|
|
15707
15707
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15708
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15708
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15709
15709
|
} | undefined;
|
|
15710
15710
|
label?: string | undefined;
|
|
15711
15711
|
} | {
|
|
@@ -15714,7 +15714,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15714
15714
|
icon?: string | {
|
|
15715
15715
|
name: string;
|
|
15716
15716
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15717
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15717
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15718
15718
|
} | undefined;
|
|
15719
15719
|
label?: string | undefined;
|
|
15720
15720
|
})[] | undefined;
|
|
@@ -15739,7 +15739,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15739
15739
|
icon?: string | {
|
|
15740
15740
|
name: string;
|
|
15741
15741
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15742
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15742
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15743
15743
|
} | undefined;
|
|
15744
15744
|
} | {
|
|
15745
15745
|
type: "github";
|
|
@@ -15747,7 +15747,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15747
15747
|
icon?: string | {
|
|
15748
15748
|
name: string;
|
|
15749
15749
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15750
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15750
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15751
15751
|
} | undefined;
|
|
15752
15752
|
label?: string | undefined;
|
|
15753
15753
|
} | {
|
|
@@ -15756,7 +15756,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15756
15756
|
icon?: string | {
|
|
15757
15757
|
name: string;
|
|
15758
15758
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15759
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15759
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15760
15760
|
} | undefined;
|
|
15761
15761
|
label?: string | undefined;
|
|
15762
15762
|
})[] | undefined;
|
|
@@ -15829,7 +15829,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15829
15829
|
icon?: string | {
|
|
15830
15830
|
name: string;
|
|
15831
15831
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15832
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15832
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15833
15833
|
} | undefined;
|
|
15834
15834
|
expanded?: boolean | undefined;
|
|
15835
15835
|
public?: boolean | undefined;
|
|
@@ -15852,7 +15852,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15852
15852
|
icon?: string | {
|
|
15853
15853
|
name: string;
|
|
15854
15854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15855
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15855
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15856
15856
|
} | undefined;
|
|
15857
15857
|
expanded?: boolean | undefined;
|
|
15858
15858
|
public?: boolean | undefined;
|
|
@@ -15877,7 +15877,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15877
15877
|
icon?: string | {
|
|
15878
15878
|
name: string;
|
|
15879
15879
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15880
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15880
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15881
15881
|
} | undefined;
|
|
15882
15882
|
expanded?: boolean | undefined;
|
|
15883
15883
|
public?: boolean | undefined;
|
|
@@ -15903,7 +15903,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15903
15903
|
icon?: string | {
|
|
15904
15904
|
name: string;
|
|
15905
15905
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15906
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15906
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15907
15907
|
} | undefined;
|
|
15908
15908
|
expanded?: boolean | undefined;
|
|
15909
15909
|
public?: boolean | undefined;
|
|
@@ -15931,7 +15931,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15931
15931
|
icon?: string | {
|
|
15932
15932
|
name: string;
|
|
15933
15933
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15934
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15934
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15935
15935
|
} | undefined;
|
|
15936
15936
|
expanded?: boolean | undefined;
|
|
15937
15937
|
public?: boolean | undefined;
|
|
@@ -15954,7 +15954,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15954
15954
|
icon?: string | {
|
|
15955
15955
|
name: string;
|
|
15956
15956
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15957
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15957
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15958
15958
|
} | undefined;
|
|
15959
15959
|
expanded?: boolean | undefined;
|
|
15960
15960
|
public?: boolean | undefined;
|
|
@@ -15979,7 +15979,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
15979
15979
|
icon?: string | {
|
|
15980
15980
|
name: string;
|
|
15981
15981
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15982
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
15982
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
15983
15983
|
} | undefined;
|
|
15984
15984
|
expanded?: boolean | undefined;
|
|
15985
15985
|
public?: boolean | undefined;
|
|
@@ -16005,7 +16005,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16005
16005
|
icon?: string | {
|
|
16006
16006
|
name: string;
|
|
16007
16007
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16008
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16008
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16009
16009
|
} | undefined;
|
|
16010
16010
|
expanded?: boolean | undefined;
|
|
16011
16011
|
public?: boolean | undefined;
|
|
@@ -16195,11 +16195,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16195
16195
|
} | undefined;
|
|
16196
16196
|
}>]>>;
|
|
16197
16197
|
icons: z.ZodOptional<z.ZodObject<{
|
|
16198
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
16198
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
16199
16199
|
}, "strip", z.ZodTypeAny, {
|
|
16200
|
-
library: "fontawesome" | "lucide";
|
|
16200
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
16201
16201
|
}, {
|
|
16202
|
-
library: "fontawesome" | "lucide";
|
|
16202
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
16203
16203
|
}>>;
|
|
16204
16204
|
styling: z.ZodOptional<z.ZodObject<{
|
|
16205
16205
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -16612,21 +16612,21 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16612
16612
|
};
|
|
16613
16613
|
}>>;
|
|
16614
16614
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
16615
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
16615
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
16616
16616
|
title: z.ZodString;
|
|
16617
16617
|
description: z.ZodString;
|
|
16618
16618
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
16619
16619
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
16620
16620
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
16621
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
16621
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
16622
16622
|
}, "strip", z.ZodTypeAny, {
|
|
16623
16623
|
name: string;
|
|
16624
16624
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16625
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16625
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16626
16626
|
}, {
|
|
16627
16627
|
name: string;
|
|
16628
16628
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16629
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16629
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16630
16630
|
}>]>>;
|
|
16631
16631
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
16632
16632
|
base: z.ZodString;
|
|
@@ -16666,7 +16666,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16666
16666
|
icon?: string | {
|
|
16667
16667
|
name: string;
|
|
16668
16668
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16669
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16669
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16670
16670
|
} | undefined;
|
|
16671
16671
|
}, {
|
|
16672
16672
|
href: string | {
|
|
@@ -16681,9 +16681,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16681
16681
|
icon?: string | {
|
|
16682
16682
|
name: string;
|
|
16683
16683
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16684
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16684
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16685
16685
|
} | undefined;
|
|
16686
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
16686
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
16687
16687
|
href: string | {
|
|
16688
16688
|
base: string;
|
|
16689
16689
|
query?: {
|
|
@@ -16696,9 +16696,9 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16696
16696
|
icon?: string | {
|
|
16697
16697
|
name: string;
|
|
16698
16698
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16699
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16699
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16700
16700
|
} | undefined;
|
|
16701
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
16701
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
16702
16702
|
href: string | {
|
|
16703
16703
|
base: string;
|
|
16704
16704
|
query?: {
|
|
@@ -16711,12 +16711,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16711
16711
|
icon?: string | {
|
|
16712
16712
|
name: string;
|
|
16713
16713
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16714
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16714
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16715
16715
|
} | undefined;
|
|
16716
16716
|
})[]>;
|
|
16717
16717
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
16718
16718
|
}, "strip", z.ZodTypeAny, {
|
|
16719
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
16719
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
16720
16720
|
href: string | {
|
|
16721
16721
|
base: string;
|
|
16722
16722
|
query?: {
|
|
@@ -16729,12 +16729,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16729
16729
|
icon?: string | {
|
|
16730
16730
|
name: string;
|
|
16731
16731
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16732
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16732
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16733
16733
|
} | undefined;
|
|
16734
16734
|
})[];
|
|
16735
16735
|
display: "header" | "toc";
|
|
16736
16736
|
}, {
|
|
16737
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
16737
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
16738
16738
|
href: string | {
|
|
16739
16739
|
base: string;
|
|
16740
16740
|
query?: {
|
|
@@ -16747,7 +16747,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16747
16747
|
icon?: string | {
|
|
16748
16748
|
name: string;
|
|
16749
16749
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16750
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16750
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16751
16751
|
} | undefined;
|
|
16752
16752
|
})[];
|
|
16753
16753
|
display?: "header" | "toc" | undefined;
|
|
@@ -16823,7 +16823,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16823
16823
|
icon?: string | {
|
|
16824
16824
|
name: string;
|
|
16825
16825
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16826
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16826
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16827
16827
|
} | undefined;
|
|
16828
16828
|
expanded?: boolean | undefined;
|
|
16829
16829
|
public?: boolean | undefined;
|
|
@@ -16849,7 +16849,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
16849
16849
|
icon?: string | {
|
|
16850
16850
|
name: string;
|
|
16851
16851
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
16852
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
16852
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
16853
16853
|
} | undefined;
|
|
16854
16854
|
expanded?: boolean | undefined;
|
|
16855
16855
|
public?: boolean | undefined;
|
|
@@ -17062,7 +17062,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17062
17062
|
icon?: string | {
|
|
17063
17063
|
name: string;
|
|
17064
17064
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17065
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17065
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17066
17066
|
} | undefined;
|
|
17067
17067
|
} | {
|
|
17068
17068
|
type: "github";
|
|
@@ -17070,7 +17070,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17070
17070
|
icon?: string | {
|
|
17071
17071
|
name: string;
|
|
17072
17072
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17073
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17073
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17074
17074
|
} | undefined;
|
|
17075
17075
|
label?: string | undefined;
|
|
17076
17076
|
} | {
|
|
@@ -17079,13 +17079,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17079
17079
|
icon?: string | {
|
|
17080
17080
|
name: string;
|
|
17081
17081
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17082
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17082
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17083
17083
|
} | undefined;
|
|
17084
17084
|
label?: string | undefined;
|
|
17085
17085
|
})[] | undefined;
|
|
17086
17086
|
} | undefined;
|
|
17087
17087
|
icons?: {
|
|
17088
|
-
library: "fontawesome" | "lucide";
|
|
17088
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
17089
17089
|
} | undefined;
|
|
17090
17090
|
styling?: {
|
|
17091
17091
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -17108,7 +17108,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17108
17108
|
};
|
|
17109
17109
|
} | undefined;
|
|
17110
17110
|
contextual?: {
|
|
17111
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
17111
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
17112
17112
|
href: string | {
|
|
17113
17113
|
base: string;
|
|
17114
17114
|
query?: {
|
|
@@ -17121,7 +17121,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17121
17121
|
icon?: string | {
|
|
17122
17122
|
name: string;
|
|
17123
17123
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17124
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17124
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17125
17125
|
} | undefined;
|
|
17126
17126
|
})[];
|
|
17127
17127
|
display: "header" | "toc";
|
|
@@ -17168,7 +17168,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17168
17168
|
icon?: string | {
|
|
17169
17169
|
name: string;
|
|
17170
17170
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17171
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17171
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17172
17172
|
} | undefined;
|
|
17173
17173
|
expanded?: boolean | undefined;
|
|
17174
17174
|
public?: boolean | undefined;
|
|
@@ -17194,7 +17194,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17194
17194
|
icon?: string | {
|
|
17195
17195
|
name: string;
|
|
17196
17196
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17197
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17197
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17198
17198
|
} | undefined;
|
|
17199
17199
|
expanded?: boolean | undefined;
|
|
17200
17200
|
public?: boolean | undefined;
|
|
@@ -17408,7 +17408,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17408
17408
|
icon?: string | {
|
|
17409
17409
|
name: string;
|
|
17410
17410
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17411
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17411
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17412
17412
|
} | undefined;
|
|
17413
17413
|
} | {
|
|
17414
17414
|
type: "github";
|
|
@@ -17416,7 +17416,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17416
17416
|
icon?: string | {
|
|
17417
17417
|
name: string;
|
|
17418
17418
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17419
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17419
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17420
17420
|
} | undefined;
|
|
17421
17421
|
label?: string | undefined;
|
|
17422
17422
|
} | {
|
|
@@ -17425,13 +17425,13 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17425
17425
|
icon?: string | {
|
|
17426
17426
|
name: string;
|
|
17427
17427
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17428
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17428
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17429
17429
|
} | undefined;
|
|
17430
17430
|
label?: string | undefined;
|
|
17431
17431
|
})[] | undefined;
|
|
17432
17432
|
} | undefined;
|
|
17433
17433
|
icons?: {
|
|
17434
|
-
library: "fontawesome" | "lucide";
|
|
17434
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
17435
17435
|
} | undefined;
|
|
17436
17436
|
styling?: {
|
|
17437
17437
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -17454,7 +17454,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17454
17454
|
};
|
|
17455
17455
|
} | undefined;
|
|
17456
17456
|
contextual?: {
|
|
17457
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
17457
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
17458
17458
|
href: string | {
|
|
17459
17459
|
base: string;
|
|
17460
17460
|
query?: {
|
|
@@ -17467,7 +17467,7 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
17467
17467
|
icon?: string | {
|
|
17468
17468
|
name: string;
|
|
17469
17469
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17470
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17470
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17471
17471
|
} | undefined;
|
|
17472
17472
|
})[];
|
|
17473
17473
|
display?: "header" | "toc" | undefined;
|
|
@@ -17720,15 +17720,15 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17720
17720
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17721
17721
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17722
17722
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17723
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
17723
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17724
17724
|
}, "strip", z.ZodTypeAny, {
|
|
17725
17725
|
name: string;
|
|
17726
17726
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17727
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17727
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17728
17728
|
}, {
|
|
17729
17729
|
name: string;
|
|
17730
17730
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17731
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17731
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17732
17732
|
}>]>>;
|
|
17733
17733
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17734
17734
|
}, {
|
|
@@ -17740,7 +17740,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17740
17740
|
icon?: string | {
|
|
17741
17741
|
name: string;
|
|
17742
17742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17743
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17743
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17744
17744
|
} | undefined;
|
|
17745
17745
|
label?: string | undefined;
|
|
17746
17746
|
}, {
|
|
@@ -17749,22 +17749,22 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17749
17749
|
icon?: string | {
|
|
17750
17750
|
name: string;
|
|
17751
17751
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17752
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17752
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17753
17753
|
} | undefined;
|
|
17754
17754
|
label?: string | undefined;
|
|
17755
17755
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17756
17756
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17757
17757
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17758
17758
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17759
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
17759
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17760
17760
|
}, "strip", z.ZodTypeAny, {
|
|
17761
17761
|
name: string;
|
|
17762
17762
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17763
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17763
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17764
17764
|
}, {
|
|
17765
17765
|
name: string;
|
|
17766
17766
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17767
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17767
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17768
17768
|
}>]>>;
|
|
17769
17769
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17770
17770
|
}, {
|
|
@@ -17776,7 +17776,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17776
17776
|
icon?: string | {
|
|
17777
17777
|
name: string;
|
|
17778
17778
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17779
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17779
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17780
17780
|
} | undefined;
|
|
17781
17781
|
label?: string | undefined;
|
|
17782
17782
|
}, {
|
|
@@ -17785,22 +17785,22 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17785
17785
|
icon?: string | {
|
|
17786
17786
|
name: string;
|
|
17787
17787
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17788
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17788
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17789
17789
|
} | undefined;
|
|
17790
17790
|
label?: string | undefined;
|
|
17791
17791
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17792
17792
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
17793
17793
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
17794
17794
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
17795
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
17795
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
17796
17796
|
}, "strip", z.ZodTypeAny, {
|
|
17797
17797
|
name: string;
|
|
17798
17798
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17799
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17799
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17800
17800
|
}, {
|
|
17801
17801
|
name: string;
|
|
17802
17802
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17803
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17803
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17804
17804
|
}>]>>;
|
|
17805
17805
|
href: z.ZodEffects<z.ZodString, string, string>;
|
|
17806
17806
|
}, {
|
|
@@ -17813,7 +17813,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17813
17813
|
icon?: string | {
|
|
17814
17814
|
name: string;
|
|
17815
17815
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17816
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17816
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17817
17817
|
} | undefined;
|
|
17818
17818
|
}, {
|
|
17819
17819
|
href: string;
|
|
@@ -17822,7 +17822,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17822
17822
|
icon?: string | {
|
|
17823
17823
|
name: string;
|
|
17824
17824
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17825
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17825
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17826
17826
|
} | undefined;
|
|
17827
17827
|
}>]>, "many">>;
|
|
17828
17828
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -17883,7 +17883,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17883
17883
|
icon?: string | {
|
|
17884
17884
|
name: string;
|
|
17885
17885
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17886
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17886
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17887
17887
|
} | undefined;
|
|
17888
17888
|
} | {
|
|
17889
17889
|
type: "github";
|
|
@@ -17891,7 +17891,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17891
17891
|
icon?: string | {
|
|
17892
17892
|
name: string;
|
|
17893
17893
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17894
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17894
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17895
17895
|
} | undefined;
|
|
17896
17896
|
label?: string | undefined;
|
|
17897
17897
|
} | {
|
|
@@ -17900,7 +17900,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17900
17900
|
icon?: string | {
|
|
17901
17901
|
name: string;
|
|
17902
17902
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17903
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17903
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17904
17904
|
} | undefined;
|
|
17905
17905
|
label?: string | undefined;
|
|
17906
17906
|
})[] | undefined;
|
|
@@ -17925,7 +17925,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17925
17925
|
icon?: string | {
|
|
17926
17926
|
name: string;
|
|
17927
17927
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17928
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17928
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17929
17929
|
} | undefined;
|
|
17930
17930
|
} | {
|
|
17931
17931
|
type: "github";
|
|
@@ -17933,7 +17933,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17933
17933
|
icon?: string | {
|
|
17934
17934
|
name: string;
|
|
17935
17935
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17936
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17936
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17937
17937
|
} | undefined;
|
|
17938
17938
|
label?: string | undefined;
|
|
17939
17939
|
} | {
|
|
@@ -17942,7 +17942,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
17942
17942
|
icon?: string | {
|
|
17943
17943
|
name: string;
|
|
17944
17944
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
17945
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
17945
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
17946
17946
|
} | undefined;
|
|
17947
17947
|
label?: string | undefined;
|
|
17948
17948
|
})[] | undefined;
|
|
@@ -18015,7 +18015,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18015
18015
|
icon?: string | {
|
|
18016
18016
|
name: string;
|
|
18017
18017
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18018
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18018
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18019
18019
|
} | undefined;
|
|
18020
18020
|
expanded?: boolean | undefined;
|
|
18021
18021
|
public?: boolean | undefined;
|
|
@@ -18038,7 +18038,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18038
18038
|
icon?: string | {
|
|
18039
18039
|
name: string;
|
|
18040
18040
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18041
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18041
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18042
18042
|
} | undefined;
|
|
18043
18043
|
expanded?: boolean | undefined;
|
|
18044
18044
|
public?: boolean | undefined;
|
|
@@ -18063,7 +18063,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18063
18063
|
icon?: string | {
|
|
18064
18064
|
name: string;
|
|
18065
18065
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18066
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18066
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18067
18067
|
} | undefined;
|
|
18068
18068
|
expanded?: boolean | undefined;
|
|
18069
18069
|
public?: boolean | undefined;
|
|
@@ -18089,7 +18089,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18089
18089
|
icon?: string | {
|
|
18090
18090
|
name: string;
|
|
18091
18091
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18092
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18092
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18093
18093
|
} | undefined;
|
|
18094
18094
|
expanded?: boolean | undefined;
|
|
18095
18095
|
public?: boolean | undefined;
|
|
@@ -18117,7 +18117,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18117
18117
|
icon?: string | {
|
|
18118
18118
|
name: string;
|
|
18119
18119
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18120
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18120
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18121
18121
|
} | undefined;
|
|
18122
18122
|
expanded?: boolean | undefined;
|
|
18123
18123
|
public?: boolean | undefined;
|
|
@@ -18140,7 +18140,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18140
18140
|
icon?: string | {
|
|
18141
18141
|
name: string;
|
|
18142
18142
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18143
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18143
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18144
18144
|
} | undefined;
|
|
18145
18145
|
expanded?: boolean | undefined;
|
|
18146
18146
|
public?: boolean | undefined;
|
|
@@ -18165,7 +18165,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18165
18165
|
icon?: string | {
|
|
18166
18166
|
name: string;
|
|
18167
18167
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18168
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18168
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18169
18169
|
} | undefined;
|
|
18170
18170
|
expanded?: boolean | undefined;
|
|
18171
18171
|
public?: boolean | undefined;
|
|
@@ -18191,7 +18191,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18191
18191
|
icon?: string | {
|
|
18192
18192
|
name: string;
|
|
18193
18193
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18194
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18194
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18195
18195
|
} | undefined;
|
|
18196
18196
|
expanded?: boolean | undefined;
|
|
18197
18197
|
public?: boolean | undefined;
|
|
@@ -18381,11 +18381,11 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18381
18381
|
} | undefined;
|
|
18382
18382
|
}>]>>;
|
|
18383
18383
|
icons: z.ZodOptional<z.ZodObject<{
|
|
18384
|
-
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
18384
|
+
library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
|
|
18385
18385
|
}, "strip", z.ZodTypeAny, {
|
|
18386
|
-
library: "fontawesome" | "lucide";
|
|
18386
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
18387
18387
|
}, {
|
|
18388
|
-
library: "fontawesome" | "lucide";
|
|
18388
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
18389
18389
|
}>>;
|
|
18390
18390
|
styling: z.ZodOptional<z.ZodObject<{
|
|
18391
18391
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -18798,21 +18798,21 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18798
18798
|
};
|
|
18799
18799
|
}>>;
|
|
18800
18800
|
contextual: z.ZodOptional<z.ZodObject<{
|
|
18801
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
18801
|
+
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
|
|
18802
18802
|
title: z.ZodString;
|
|
18803
18803
|
description: z.ZodString;
|
|
18804
18804
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
18805
18805
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
18806
18806
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
18807
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
18807
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
18808
18808
|
}, "strip", z.ZodTypeAny, {
|
|
18809
18809
|
name: string;
|
|
18810
18810
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18811
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18811
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18812
18812
|
}, {
|
|
18813
18813
|
name: string;
|
|
18814
18814
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18815
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18815
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18816
18816
|
}>]>>;
|
|
18817
18817
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
18818
18818
|
base: z.ZodString;
|
|
@@ -18852,7 +18852,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18852
18852
|
icon?: string | {
|
|
18853
18853
|
name: string;
|
|
18854
18854
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18855
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18855
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18856
18856
|
} | undefined;
|
|
18857
18857
|
}, {
|
|
18858
18858
|
href: string | {
|
|
@@ -18867,9 +18867,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18867
18867
|
icon?: string | {
|
|
18868
18868
|
name: string;
|
|
18869
18869
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18870
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18870
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18871
18871
|
} | undefined;
|
|
18872
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
18872
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18873
18873
|
href: string | {
|
|
18874
18874
|
base: string;
|
|
18875
18875
|
query?: {
|
|
@@ -18882,9 +18882,9 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18882
18882
|
icon?: string | {
|
|
18883
18883
|
name: string;
|
|
18884
18884
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18885
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18885
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18886
18886
|
} | undefined;
|
|
18887
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
18887
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18888
18888
|
href: string | {
|
|
18889
18889
|
base: string;
|
|
18890
18890
|
query?: {
|
|
@@ -18897,12 +18897,12 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18897
18897
|
icon?: string | {
|
|
18898
18898
|
name: string;
|
|
18899
18899
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18900
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18900
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18901
18901
|
} | undefined;
|
|
18902
18902
|
})[]>;
|
|
18903
18903
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
18904
18904
|
}, "strip", z.ZodTypeAny, {
|
|
18905
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
18905
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18906
18906
|
href: string | {
|
|
18907
18907
|
base: string;
|
|
18908
18908
|
query?: {
|
|
@@ -18915,12 +18915,12 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18915
18915
|
icon?: string | {
|
|
18916
18916
|
name: string;
|
|
18917
18917
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18918
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18918
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18919
18919
|
} | undefined;
|
|
18920
18920
|
})[];
|
|
18921
18921
|
display: "header" | "toc";
|
|
18922
18922
|
}, {
|
|
18923
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
18923
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
18924
18924
|
href: string | {
|
|
18925
18925
|
base: string;
|
|
18926
18926
|
query?: {
|
|
@@ -18933,7 +18933,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
18933
18933
|
icon?: string | {
|
|
18934
18934
|
name: string;
|
|
18935
18935
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
18936
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
18936
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
18937
18937
|
} | undefined;
|
|
18938
18938
|
})[];
|
|
18939
18939
|
display?: "header" | "toc" | undefined;
|
|
@@ -19009,7 +19009,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19009
19009
|
icon?: string | {
|
|
19010
19010
|
name: string;
|
|
19011
19011
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19012
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19012
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19013
19013
|
} | undefined;
|
|
19014
19014
|
expanded?: boolean | undefined;
|
|
19015
19015
|
public?: boolean | undefined;
|
|
@@ -19035,7 +19035,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19035
19035
|
icon?: string | {
|
|
19036
19036
|
name: string;
|
|
19037
19037
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19038
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19038
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19039
19039
|
} | undefined;
|
|
19040
19040
|
expanded?: boolean | undefined;
|
|
19041
19041
|
public?: boolean | undefined;
|
|
@@ -19248,7 +19248,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19248
19248
|
icon?: string | {
|
|
19249
19249
|
name: string;
|
|
19250
19250
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19251
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19251
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19252
19252
|
} | undefined;
|
|
19253
19253
|
} | {
|
|
19254
19254
|
type: "github";
|
|
@@ -19256,7 +19256,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19256
19256
|
icon?: string | {
|
|
19257
19257
|
name: string;
|
|
19258
19258
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19259
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19259
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19260
19260
|
} | undefined;
|
|
19261
19261
|
label?: string | undefined;
|
|
19262
19262
|
} | {
|
|
@@ -19265,13 +19265,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19265
19265
|
icon?: string | {
|
|
19266
19266
|
name: string;
|
|
19267
19267
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19268
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19268
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19269
19269
|
} | undefined;
|
|
19270
19270
|
label?: string | undefined;
|
|
19271
19271
|
})[] | undefined;
|
|
19272
19272
|
} | undefined;
|
|
19273
19273
|
icons?: {
|
|
19274
|
-
library: "fontawesome" | "lucide";
|
|
19274
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
19275
19275
|
} | undefined;
|
|
19276
19276
|
styling?: {
|
|
19277
19277
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -19294,7 +19294,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19294
19294
|
};
|
|
19295
19295
|
} | undefined;
|
|
19296
19296
|
contextual?: {
|
|
19297
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
19297
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
19298
19298
|
href: string | {
|
|
19299
19299
|
base: string;
|
|
19300
19300
|
query?: {
|
|
@@ -19307,7 +19307,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19307
19307
|
icon?: string | {
|
|
19308
19308
|
name: string;
|
|
19309
19309
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19310
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19310
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19311
19311
|
} | undefined;
|
|
19312
19312
|
})[];
|
|
19313
19313
|
display: "header" | "toc";
|
|
@@ -19354,7 +19354,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19354
19354
|
icon?: string | {
|
|
19355
19355
|
name: string;
|
|
19356
19356
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19357
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19357
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19358
19358
|
} | undefined;
|
|
19359
19359
|
expanded?: boolean | undefined;
|
|
19360
19360
|
public?: boolean | undefined;
|
|
@@ -19380,7 +19380,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19380
19380
|
icon?: string | {
|
|
19381
19381
|
name: string;
|
|
19382
19382
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19383
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19383
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19384
19384
|
} | undefined;
|
|
19385
19385
|
expanded?: boolean | undefined;
|
|
19386
19386
|
public?: boolean | undefined;
|
|
@@ -19594,7 +19594,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19594
19594
|
icon?: string | {
|
|
19595
19595
|
name: string;
|
|
19596
19596
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19597
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19597
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19598
19598
|
} | undefined;
|
|
19599
19599
|
} | {
|
|
19600
19600
|
type: "github";
|
|
@@ -19602,7 +19602,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19602
19602
|
icon?: string | {
|
|
19603
19603
|
name: string;
|
|
19604
19604
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19605
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19605
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19606
19606
|
} | undefined;
|
|
19607
19607
|
label?: string | undefined;
|
|
19608
19608
|
} | {
|
|
@@ -19611,13 +19611,13 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19611
19611
|
icon?: string | {
|
|
19612
19612
|
name: string;
|
|
19613
19613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19614
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19614
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19615
19615
|
} | undefined;
|
|
19616
19616
|
label?: string | undefined;
|
|
19617
19617
|
})[] | undefined;
|
|
19618
19618
|
} | undefined;
|
|
19619
19619
|
icons?: {
|
|
19620
|
-
library: "fontawesome" | "lucide";
|
|
19620
|
+
library: "fontawesome" | "lucide" | "tabler";
|
|
19621
19621
|
} | undefined;
|
|
19622
19622
|
styling?: {
|
|
19623
19623
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -19640,7 +19640,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19640
19640
|
};
|
|
19641
19641
|
} | undefined;
|
|
19642
19642
|
contextual?: {
|
|
19643
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
19643
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
19644
19644
|
href: string | {
|
|
19645
19645
|
base: string;
|
|
19646
19646
|
query?: {
|
|
@@ -19653,7 +19653,7 @@ export declare const docsConfigUnifiedSchema: z.ZodObject<{
|
|
|
19653
19653
|
icon?: string | {
|
|
19654
19654
|
name: string;
|
|
19655
19655
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
19656
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
19656
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
19657
19657
|
} | undefined;
|
|
19658
19658
|
})[];
|
|
19659
19659
|
display?: "header" | "toc" | undefined;
|