@mintlify/validation 0.1.586 → 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.
Files changed (36) hide show
  1. package/dist/index.js +2 -1
  2. package/dist/mint-config/schemas/v1/anchors.js +1 -1
  3. package/dist/mint-config/schemas/v2/index.d.ts +2724 -499
  4. package/dist/mint-config/schemas/v2/index.js +2 -0
  5. package/dist/mint-config/schemas/v2/properties/contextual.d.ts +26 -20
  6. package/dist/mint-config/schemas/v2/properties/contextual.js +8 -0
  7. package/dist/mint-config/schemas/v2/properties/icons.d.ts +3 -3
  8. package/dist/mint-config/schemas/v2/properties/navbar.d.ts +21 -21
  9. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -10
  10. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +10 -10
  11. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +9 -9
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +30 -29
  13. package/dist/mint-config/schemas/v2/properties/navigation/index.js +1 -1
  14. package/dist/mint-config/schemas/v2/properties/navigation/menu.d.ts +10 -10
  15. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +10 -10
  16. package/dist/mint-config/schemas/v2/properties/navigation/products.d.ts +10 -10
  17. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +18 -10
  18. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +2 -0
  19. package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +3 -3
  20. package/dist/mint-config/schemas/v2/properties/reusable/icon.js +1 -1
  21. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +9 -9
  22. package/dist/mint-config/schemas/v2/themes/almond.d.ts +67 -62
  23. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +67 -62
  24. package/dist/mint-config/schemas/v2/themes/linden.d.ts +67 -62
  25. package/dist/mint-config/schemas/v2/themes/maple.d.ts +67 -62
  26. package/dist/mint-config/schemas/v2/themes/mint.d.ts +67 -62
  27. package/dist/mint-config/schemas/v2/themes/palm.d.ts +67 -62
  28. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +49 -46
  29. package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +2187 -0
  30. package/dist/mint-config/schemas/v2/themes/sequoia.js +4 -0
  31. package/dist/mint-config/schemas/v2/themes/themes.d.ts +2 -2
  32. package/dist/mint-config/schemas/v2/themes/themes.js +10 -1
  33. package/dist/mint-config/schemas/v2/themes/willow.d.ts +67 -62
  34. package/dist/mint-config/validateConfig.d.ts +951 -245
  35. package/dist/tsconfig.build.tsbuildinfo +1 -1
  36. package/package.json +3 -3
@@ -0,0 +1,4 @@
1
+ import { z } from 'zod';
2
+ import { standardConfigSchema } from './reusable/index.js';
3
+ import { themeSchema } from './themes.js';
4
+ export const sequoiaConfigSchema = z.object(Object.assign({ theme: z.literal(themeSchema.enum.sequoia) }, standardConfigSchema));
@@ -1,4 +1,4 @@
1
1
  import { z } from 'zod';
2
- export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden", "almond", "aspen"];
3
- export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen"]>;
2
+ export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden", "almond", "aspen", "sequoia"];
3
+ export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen", "sequoia"]>;
4
4
  export type ThemeType = z.infer<typeof themeSchema>;
@@ -1,3 +1,12 @@
1
1
  import { z } from 'zod';
2
- export const themes = ['mint', 'maple', 'palm', 'willow', 'linden', 'almond', 'aspen'];
2
+ export const themes = [
3
+ 'mint',
4
+ 'maple',
5
+ 'palm',
6
+ 'willow',
7
+ 'linden',
8
+ 'almond',
9
+ 'aspen',
10
+ 'sequoia',
11
+ ];
3
12
  export const themeSchema = z.enum(themes);
@@ -236,15 +236,15 @@ export declare const willowConfigSchema: z.ZodObject<{
236
236
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
237
237
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
238
238
  name: z.ZodEffects<z.ZodString, string, string>;
239
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
239
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
240
240
  }, "strip", z.ZodTypeAny, {
241
241
  name: string;
242
242
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
243
- library?: "fontawesome" | "lucide" | undefined;
243
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
244
244
  }, {
245
245
  name: string;
246
246
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
247
- library?: "fontawesome" | "lucide" | undefined;
247
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
248
248
  }>]>>;
249
249
  href: z.ZodEffects<z.ZodString, string, string>;
250
250
  }, {
@@ -256,7 +256,7 @@ export declare const willowConfigSchema: z.ZodObject<{
256
256
  icon?: string | {
257
257
  name: string;
258
258
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
259
- library?: "fontawesome" | "lucide" | undefined;
259
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
260
260
  } | undefined;
261
261
  label?: string | undefined;
262
262
  }, {
@@ -265,22 +265,22 @@ export declare const willowConfigSchema: z.ZodObject<{
265
265
  icon?: string | {
266
266
  name: string;
267
267
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
268
- library?: "fontawesome" | "lucide" | undefined;
268
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
269
269
  } | undefined;
270
270
  label?: string | undefined;
271
271
  }>, z.ZodObject<z.objectUtil.extendShape<{
272
272
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
273
273
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
274
274
  name: z.ZodEffects<z.ZodString, string, string>;
275
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
275
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
276
276
  }, "strip", z.ZodTypeAny, {
277
277
  name: string;
278
278
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
279
- library?: "fontawesome" | "lucide" | undefined;
279
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
280
280
  }, {
281
281
  name: string;
282
282
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
283
- library?: "fontawesome" | "lucide" | undefined;
283
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
284
284
  }>]>>;
285
285
  href: z.ZodEffects<z.ZodString, string, string>;
286
286
  }, {
@@ -292,7 +292,7 @@ export declare const willowConfigSchema: z.ZodObject<{
292
292
  icon?: string | {
293
293
  name: string;
294
294
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
295
- library?: "fontawesome" | "lucide" | undefined;
295
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
296
296
  } | undefined;
297
297
  label?: string | undefined;
298
298
  }, {
@@ -301,22 +301,22 @@ export declare const willowConfigSchema: z.ZodObject<{
301
301
  icon?: string | {
302
302
  name: string;
303
303
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
304
- library?: "fontawesome" | "lucide" | undefined;
304
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
305
305
  } | undefined;
306
306
  label?: string | undefined;
307
307
  }>, z.ZodObject<z.objectUtil.extendShape<{
308
308
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
309
309
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
310
310
  name: z.ZodEffects<z.ZodString, string, string>;
311
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
311
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
312
312
  }, "strip", z.ZodTypeAny, {
313
313
  name: string;
314
314
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
315
- library?: "fontawesome" | "lucide" | undefined;
315
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
316
316
  }, {
317
317
  name: string;
318
318
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
319
- library?: "fontawesome" | "lucide" | undefined;
319
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
320
320
  }>]>>;
321
321
  href: z.ZodEffects<z.ZodString, string, string>;
322
322
  }, {
@@ -329,7 +329,7 @@ export declare const willowConfigSchema: z.ZodObject<{
329
329
  icon?: string | {
330
330
  name: string;
331
331
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
332
- library?: "fontawesome" | "lucide" | undefined;
332
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
333
333
  } | undefined;
334
334
  }, {
335
335
  href: string;
@@ -338,7 +338,7 @@ export declare const willowConfigSchema: z.ZodObject<{
338
338
  icon?: string | {
339
339
  name: string;
340
340
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
341
- library?: "fontawesome" | "lucide" | undefined;
341
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
342
342
  } | undefined;
343
343
  }>]>, "many">>;
344
344
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -399,7 +399,7 @@ export declare const willowConfigSchema: z.ZodObject<{
399
399
  icon?: string | {
400
400
  name: string;
401
401
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
402
- library?: "fontawesome" | "lucide" | undefined;
402
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
403
403
  } | undefined;
404
404
  } | {
405
405
  type: "github";
@@ -407,7 +407,7 @@ export declare const willowConfigSchema: z.ZodObject<{
407
407
  icon?: string | {
408
408
  name: string;
409
409
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
410
- library?: "fontawesome" | "lucide" | undefined;
410
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
411
411
  } | undefined;
412
412
  label?: string | undefined;
413
413
  } | {
@@ -416,7 +416,7 @@ export declare const willowConfigSchema: z.ZodObject<{
416
416
  icon?: string | {
417
417
  name: string;
418
418
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
419
- library?: "fontawesome" | "lucide" | undefined;
419
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
420
420
  } | undefined;
421
421
  label?: string | undefined;
422
422
  })[] | undefined;
@@ -441,7 +441,7 @@ export declare const willowConfigSchema: z.ZodObject<{
441
441
  icon?: string | {
442
442
  name: string;
443
443
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
444
- library?: "fontawesome" | "lucide" | undefined;
444
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
445
445
  } | undefined;
446
446
  } | {
447
447
  type: "github";
@@ -449,7 +449,7 @@ export declare const willowConfigSchema: z.ZodObject<{
449
449
  icon?: string | {
450
450
  name: string;
451
451
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
452
- library?: "fontawesome" | "lucide" | undefined;
452
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
453
453
  } | undefined;
454
454
  label?: string | undefined;
455
455
  } | {
@@ -458,7 +458,7 @@ export declare const willowConfigSchema: z.ZodObject<{
458
458
  icon?: string | {
459
459
  name: string;
460
460
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
461
- library?: "fontawesome" | "lucide" | undefined;
461
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
462
462
  } | undefined;
463
463
  label?: string | undefined;
464
464
  })[] | undefined;
@@ -531,7 +531,7 @@ export declare const willowConfigSchema: z.ZodObject<{
531
531
  icon?: string | {
532
532
  name: string;
533
533
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
534
- library?: "fontawesome" | "lucide" | undefined;
534
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
535
535
  } | undefined;
536
536
  expanded?: boolean | undefined;
537
537
  public?: boolean | undefined;
@@ -554,7 +554,7 @@ export declare const willowConfigSchema: z.ZodObject<{
554
554
  icon?: string | {
555
555
  name: string;
556
556
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
557
- library?: "fontawesome" | "lucide" | undefined;
557
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
558
558
  } | undefined;
559
559
  expanded?: boolean | undefined;
560
560
  public?: boolean | undefined;
@@ -579,7 +579,7 @@ export declare const willowConfigSchema: z.ZodObject<{
579
579
  icon?: string | {
580
580
  name: string;
581
581
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
582
- library?: "fontawesome" | "lucide" | undefined;
582
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
583
583
  } | undefined;
584
584
  expanded?: boolean | undefined;
585
585
  public?: boolean | undefined;
@@ -605,7 +605,7 @@ export declare const willowConfigSchema: z.ZodObject<{
605
605
  icon?: string | {
606
606
  name: string;
607
607
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
608
- library?: "fontawesome" | "lucide" | undefined;
608
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
609
609
  } | undefined;
610
610
  expanded?: boolean | undefined;
611
611
  public?: boolean | undefined;
@@ -633,7 +633,7 @@ export declare const willowConfigSchema: z.ZodObject<{
633
633
  icon?: string | {
634
634
  name: string;
635
635
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
636
- library?: "fontawesome" | "lucide" | undefined;
636
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
637
637
  } | undefined;
638
638
  expanded?: boolean | undefined;
639
639
  public?: boolean | undefined;
@@ -656,7 +656,7 @@ export declare const willowConfigSchema: z.ZodObject<{
656
656
  icon?: string | {
657
657
  name: string;
658
658
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
659
- library?: "fontawesome" | "lucide" | undefined;
659
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
660
660
  } | undefined;
661
661
  expanded?: boolean | undefined;
662
662
  public?: boolean | undefined;
@@ -681,7 +681,7 @@ export declare const willowConfigSchema: z.ZodObject<{
681
681
  icon?: string | {
682
682
  name: string;
683
683
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
684
- library?: "fontawesome" | "lucide" | undefined;
684
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
685
685
  } | undefined;
686
686
  expanded?: boolean | undefined;
687
687
  public?: boolean | undefined;
@@ -707,7 +707,7 @@ export declare const willowConfigSchema: z.ZodObject<{
707
707
  icon?: string | {
708
708
  name: string;
709
709
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
710
- library?: "fontawesome" | "lucide" | undefined;
710
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
711
711
  } | undefined;
712
712
  expanded?: boolean | undefined;
713
713
  public?: boolean | undefined;
@@ -897,11 +897,11 @@ export declare const willowConfigSchema: z.ZodObject<{
897
897
  } | undefined;
898
898
  }>]>>;
899
899
  icons: z.ZodOptional<z.ZodObject<{
900
- library: z.ZodEnum<["fontawesome", "lucide"]>;
900
+ library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
901
901
  }, "strip", z.ZodTypeAny, {
902
- library: "fontawesome" | "lucide";
902
+ library: "fontawesome" | "lucide" | "tabler";
903
903
  }, {
904
- library: "fontawesome" | "lucide";
904
+ library: "fontawesome" | "lucide" | "tabler";
905
905
  }>>;
906
906
  styling: z.ZodOptional<z.ZodObject<{
907
907
  eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
@@ -1314,21 +1314,21 @@ export declare const willowConfigSchema: z.ZodObject<{
1314
1314
  };
1315
1315
  }>>;
1316
1316
  contextual: z.ZodOptional<z.ZodObject<{
1317
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
1317
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
1318
1318
  title: z.ZodString;
1319
1319
  description: z.ZodString;
1320
1320
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1321
1321
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1322
1322
  name: z.ZodEffects<z.ZodString, string, string>;
1323
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
1323
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
1324
1324
  }, "strip", z.ZodTypeAny, {
1325
1325
  name: string;
1326
1326
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1327
- library?: "fontawesome" | "lucide" | undefined;
1327
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1328
1328
  }, {
1329
1329
  name: string;
1330
1330
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1331
- library?: "fontawesome" | "lucide" | undefined;
1331
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1332
1332
  }>]>>;
1333
1333
  href: z.ZodUnion<[z.ZodString, z.ZodObject<{
1334
1334
  base: z.ZodString;
@@ -1368,7 +1368,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1368
1368
  icon?: string | {
1369
1369
  name: string;
1370
1370
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1371
- library?: "fontawesome" | "lucide" | undefined;
1371
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1372
1372
  } | undefined;
1373
1373
  }, {
1374
1374
  href: string | {
@@ -1383,9 +1383,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1383
1383
  icon?: string | {
1384
1384
  name: string;
1385
1385
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1386
- library?: "fontawesome" | "lucide" | undefined;
1386
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1387
1387
  } | undefined;
1388
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1388
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1389
1389
  href: string | {
1390
1390
  base: string;
1391
1391
  query?: {
@@ -1398,9 +1398,9 @@ export declare const willowConfigSchema: z.ZodObject<{
1398
1398
  icon?: string | {
1399
1399
  name: string;
1400
1400
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1401
- library?: "fontawesome" | "lucide" | undefined;
1401
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1402
1402
  } | undefined;
1403
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1403
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1404
1404
  href: string | {
1405
1405
  base: string;
1406
1406
  query?: {
@@ -1413,11 +1413,12 @@ export declare const willowConfigSchema: z.ZodObject<{
1413
1413
  icon?: string | {
1414
1414
  name: string;
1415
1415
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1416
- library?: "fontawesome" | "lucide" | undefined;
1416
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1417
1417
  } | undefined;
1418
1418
  })[]>;
1419
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
1419
1420
  }, "strip", z.ZodTypeAny, {
1420
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1421
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1421
1422
  href: string | {
1422
1423
  base: string;
1423
1424
  query?: {
@@ -1430,11 +1431,12 @@ export declare const willowConfigSchema: z.ZodObject<{
1430
1431
  icon?: string | {
1431
1432
  name: string;
1432
1433
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1433
- library?: "fontawesome" | "lucide" | undefined;
1434
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1434
1435
  } | undefined;
1435
1436
  })[];
1437
+ display: "header" | "toc";
1436
1438
  }, {
1437
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1439
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1438
1440
  href: string | {
1439
1441
  base: string;
1440
1442
  query?: {
@@ -1447,9 +1449,10 @@ export declare const willowConfigSchema: z.ZodObject<{
1447
1449
  icon?: string | {
1448
1450
  name: string;
1449
1451
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1450
- library?: "fontawesome" | "lucide" | undefined;
1452
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1451
1453
  } | undefined;
1452
1454
  })[];
1455
+ display?: "header" | "toc" | undefined;
1453
1456
  }>>;
1454
1457
  thumbnails: z.ZodOptional<z.ZodObject<{
1455
1458
  appearance: z.ZodOptional<z.ZodEnum<[import("../properties/thumbnails.js").ThumbnailAppearance.Light, import("../properties/thumbnails.js").ThumbnailAppearance.Dark]>>;
@@ -1522,7 +1525,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1522
1525
  icon?: string | {
1523
1526
  name: string;
1524
1527
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1525
- library?: "fontawesome" | "lucide" | undefined;
1528
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1526
1529
  } | undefined;
1527
1530
  expanded?: boolean | undefined;
1528
1531
  public?: boolean | undefined;
@@ -1548,7 +1551,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1548
1551
  icon?: string | {
1549
1552
  name: string;
1550
1553
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1551
- library?: "fontawesome" | "lucide" | undefined;
1554
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1552
1555
  } | undefined;
1553
1556
  expanded?: boolean | undefined;
1554
1557
  public?: boolean | undefined;
@@ -1761,7 +1764,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1761
1764
  icon?: string | {
1762
1765
  name: string;
1763
1766
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1764
- library?: "fontawesome" | "lucide" | undefined;
1767
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1765
1768
  } | undefined;
1766
1769
  } | {
1767
1770
  type: "github";
@@ -1769,7 +1772,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1769
1772
  icon?: string | {
1770
1773
  name: string;
1771
1774
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1772
- library?: "fontawesome" | "lucide" | undefined;
1775
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1773
1776
  } | undefined;
1774
1777
  label?: string | undefined;
1775
1778
  } | {
@@ -1778,13 +1781,13 @@ export declare const willowConfigSchema: z.ZodObject<{
1778
1781
  icon?: string | {
1779
1782
  name: string;
1780
1783
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1781
- library?: "fontawesome" | "lucide" | undefined;
1784
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1782
1785
  } | undefined;
1783
1786
  label?: string | undefined;
1784
1787
  })[] | undefined;
1785
1788
  } | undefined;
1786
1789
  icons?: {
1787
- library: "fontawesome" | "lucide";
1790
+ library: "fontawesome" | "lucide" | "tabler";
1788
1791
  } | undefined;
1789
1792
  styling?: {
1790
1793
  eyebrows?: "section" | "breadcrumbs" | undefined;
@@ -1807,7 +1810,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1807
1810
  };
1808
1811
  } | undefined;
1809
1812
  contextual?: {
1810
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
1813
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
1811
1814
  href: string | {
1812
1815
  base: string;
1813
1816
  query?: {
@@ -1820,9 +1823,10 @@ export declare const willowConfigSchema: z.ZodObject<{
1820
1823
  icon?: string | {
1821
1824
  name: string;
1822
1825
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1823
- library?: "fontawesome" | "lucide" | undefined;
1826
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1824
1827
  } | undefined;
1825
1828
  })[];
1829
+ display: "header" | "toc";
1826
1830
  } | undefined;
1827
1831
  thumbnails?: {
1828
1832
  background?: string | undefined;
@@ -1866,7 +1870,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1866
1870
  icon?: string | {
1867
1871
  name: string;
1868
1872
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1869
- library?: "fontawesome" | "lucide" | undefined;
1873
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1870
1874
  } | undefined;
1871
1875
  expanded?: boolean | undefined;
1872
1876
  public?: boolean | undefined;
@@ -1892,7 +1896,7 @@ export declare const willowConfigSchema: z.ZodObject<{
1892
1896
  icon?: string | {
1893
1897
  name: string;
1894
1898
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1895
- library?: "fontawesome" | "lucide" | undefined;
1899
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
1896
1900
  } | undefined;
1897
1901
  expanded?: boolean | undefined;
1898
1902
  public?: boolean | undefined;
@@ -2106,7 +2110,7 @@ export declare const willowConfigSchema: z.ZodObject<{
2106
2110
  icon?: string | {
2107
2111
  name: string;
2108
2112
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2109
- library?: "fontawesome" | "lucide" | undefined;
2113
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2110
2114
  } | undefined;
2111
2115
  } | {
2112
2116
  type: "github";
@@ -2114,7 +2118,7 @@ export declare const willowConfigSchema: z.ZodObject<{
2114
2118
  icon?: string | {
2115
2119
  name: string;
2116
2120
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2117
- library?: "fontawesome" | "lucide" | undefined;
2121
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2118
2122
  } | undefined;
2119
2123
  label?: string | undefined;
2120
2124
  } | {
@@ -2123,13 +2127,13 @@ export declare const willowConfigSchema: z.ZodObject<{
2123
2127
  icon?: string | {
2124
2128
  name: string;
2125
2129
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2126
- library?: "fontawesome" | "lucide" | undefined;
2130
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2127
2131
  } | undefined;
2128
2132
  label?: string | undefined;
2129
2133
  })[] | undefined;
2130
2134
  } | undefined;
2131
2135
  icons?: {
2132
- library: "fontawesome" | "lucide";
2136
+ library: "fontawesome" | "lucide" | "tabler";
2133
2137
  } | undefined;
2134
2138
  styling?: {
2135
2139
  eyebrows?: "section" | "breadcrumbs" | undefined;
@@ -2152,7 +2156,7 @@ export declare const willowConfigSchema: z.ZodObject<{
2152
2156
  };
2153
2157
  } | undefined;
2154
2158
  contextual?: {
2155
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
2159
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
2156
2160
  href: string | {
2157
2161
  base: string;
2158
2162
  query?: {
@@ -2165,9 +2169,10 @@ export declare const willowConfigSchema: z.ZodObject<{
2165
2169
  icon?: string | {
2166
2170
  name: string;
2167
2171
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2168
- library?: "fontawesome" | "lucide" | undefined;
2172
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
2169
2173
  } | undefined;
2170
2174
  })[];
2175
+ display?: "header" | "toc" | undefined;
2171
2176
  } | undefined;
2172
2177
  thumbnails?: {
2173
2178
  background?: string | undefined;