@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
@@ -6,6 +6,7 @@ import { mapleConfigSchema } from './themes/maple.js';
6
6
  import { mintConfigSchema } from './themes/mint.js';
7
7
  import { palmConfigSchema } from './themes/palm.js';
8
8
  import { standardConfigSchema } from './themes/reusable/index.js';
9
+ import { sequoiaConfigSchema } from './themes/sequoia.js';
9
10
  import { themeSchema } from './themes/themes.js';
10
11
  import { willowConfigSchema } from './themes/willow.js';
11
12
  export const docsConfigSchema = z.discriminatedUnion('theme', [
@@ -16,5 +17,6 @@ export const docsConfigSchema = z.discriminatedUnion('theme', [
16
17
  lindenConfigSchema,
17
18
  almondConfigSchema,
18
19
  aspenConfigSchema,
20
+ sequoiaConfigSchema,
19
21
  ]);
20
22
  export const docsConfigUnifiedSchema = z.object(Object.assign({ theme: themeSchema }, standardConfigSchema));
@@ -1,6 +1,8 @@
1
1
  import { z } from 'zod';
2
- export declare const contextualOptions: readonly ["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"];
2
+ export declare const contextualOptions: readonly ["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"];
3
3
  export type ContextualOption = (typeof contextualOptions)[number];
4
+ export declare const contextualDisplayOptions: readonly ["header", "toc"];
5
+ export type ContextualDisplayOption = (typeof contextualDisplayOptions)[number];
4
6
  export declare const contextualHrefPresetValues: readonly ["$page", "$path", "$mcp"];
5
7
  export type ContextualHrefPresetValue = (typeof contextualHrefPresetValues)[number];
6
8
  export declare const DetailedContextualHrefSchema: z.ZodObject<{
@@ -34,15 +36,15 @@ export declare const customContextualOption: z.ZodObject<{
34
36
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
35
37
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
36
38
  name: z.ZodEffects<z.ZodString, string, string>;
37
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
39
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
38
40
  }, "strip", z.ZodTypeAny, {
39
41
  name: string;
40
42
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
41
- library?: "fontawesome" | "lucide" | undefined;
43
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
42
44
  }, {
43
45
  name: string;
44
46
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
45
- library?: "fontawesome" | "lucide" | undefined;
47
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
46
48
  }>]>>;
47
49
  href: z.ZodUnion<[z.ZodString, z.ZodObject<{
48
50
  base: z.ZodString;
@@ -82,7 +84,7 @@ export declare const customContextualOption: z.ZodObject<{
82
84
  icon?: string | {
83
85
  name: string;
84
86
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
85
- library?: "fontawesome" | "lucide" | undefined;
87
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
86
88
  } | undefined;
87
89
  }, {
88
90
  href: string | {
@@ -97,25 +99,25 @@ export declare const customContextualOption: z.ZodObject<{
97
99
  icon?: string | {
98
100
  name: string;
99
101
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
100
- library?: "fontawesome" | "lucide" | undefined;
102
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
101
103
  } | undefined;
102
104
  }>;
103
105
  export declare const contextualSchema: z.ZodObject<{
104
- options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "cursor", "vscode"]>, z.ZodObject<{
106
+ options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "copy", "view", "chatgpt", "claude", "perplexity", "grok", "mcp", "add-mcp", "cursor", "vscode"]>, z.ZodObject<{
105
107
  title: z.ZodString;
106
108
  description: z.ZodString;
107
109
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
108
110
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
109
111
  name: z.ZodEffects<z.ZodString, string, string>;
110
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
112
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
111
113
  }, "strip", z.ZodTypeAny, {
112
114
  name: string;
113
115
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
114
- library?: "fontawesome" | "lucide" | undefined;
116
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
115
117
  }, {
116
118
  name: string;
117
119
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
118
- library?: "fontawesome" | "lucide" | undefined;
120
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
119
121
  }>]>>;
120
122
  href: z.ZodUnion<[z.ZodString, z.ZodObject<{
121
123
  base: z.ZodString;
@@ -155,7 +157,7 @@ export declare const contextualSchema: z.ZodObject<{
155
157
  icon?: string | {
156
158
  name: string;
157
159
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
158
- library?: "fontawesome" | "lucide" | undefined;
160
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
159
161
  } | undefined;
160
162
  }, {
161
163
  href: string | {
@@ -170,9 +172,9 @@ export declare const contextualSchema: z.ZodObject<{
170
172
  icon?: string | {
171
173
  name: string;
172
174
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
173
- library?: "fontawesome" | "lucide" | undefined;
175
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
174
176
  } | undefined;
175
- }>]>, "many">, ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
177
+ }>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
176
178
  href: string | {
177
179
  base: string;
178
180
  query?: {
@@ -185,9 +187,9 @@ export declare const contextualSchema: z.ZodObject<{
185
187
  icon?: string | {
186
188
  name: string;
187
189
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
188
- library?: "fontawesome" | "lucide" | undefined;
190
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
189
191
  } | undefined;
190
- })[], ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
192
+ })[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
191
193
  href: string | {
192
194
  base: string;
193
195
  query?: {
@@ -200,11 +202,12 @@ export declare const contextualSchema: z.ZodObject<{
200
202
  icon?: string | {
201
203
  name: string;
202
204
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
203
- library?: "fontawesome" | "lucide" | undefined;
205
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
204
206
  } | undefined;
205
207
  })[]>;
208
+ display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
206
209
  }, "strip", z.ZodTypeAny, {
207
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
210
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
208
211
  href: string | {
209
212
  base: string;
210
213
  query?: {
@@ -217,11 +220,12 @@ export declare const contextualSchema: z.ZodObject<{
217
220
  icon?: string | {
218
221
  name: string;
219
222
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
220
- library?: "fontawesome" | "lucide" | undefined;
223
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
221
224
  } | undefined;
222
225
  })[];
226
+ display: "header" | "toc";
223
227
  }, {
224
- options: ("copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
228
+ options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
225
229
  href: string | {
226
230
  base: string;
227
231
  query?: {
@@ -234,10 +238,12 @@ export declare const contextualSchema: z.ZodObject<{
234
238
  icon?: string | {
235
239
  name: string;
236
240
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
237
- library?: "fontawesome" | "lucide" | undefined;
241
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
238
242
  } | undefined;
239
243
  })[];
244
+ display?: "header" | "toc" | undefined;
240
245
  }>;
241
246
  export type CustomContextualOption = z.infer<typeof customContextualOption>;
242
247
  export type ContextualConfig = z.infer<typeof contextualSchema>;
248
+ export type ContextualDisplay = z.infer<typeof contextualSchema>['display'];
243
249
  export type DetailedContextualHref = z.infer<typeof DetailedContextualHrefSchema>;
@@ -1,6 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { iconSchema } from './reusable/icon.js';
3
3
  export const contextualOptions = [
4
+ 'assistant',
4
5
  'copy',
5
6
  'view',
6
7
  'chatgpt',
@@ -8,9 +9,11 @@ export const contextualOptions = [
8
9
  'perplexity',
9
10
  'grok',
10
11
  'mcp',
12
+ 'add-mcp',
11
13
  'cursor',
12
14
  'vscode',
13
15
  ];
16
+ export const contextualDisplayOptions = ['header', 'toc'];
14
17
  export const contextualHrefPresetValues = ['$page', '$path', '$mcp'];
15
18
  export const DetailedContextualHrefSchema = z.object({
16
19
  base: z.string(),
@@ -40,5 +43,10 @@ export const contextualSchema = z
40
43
  }, {
41
44
  message: 'Each contextual option can only appear once',
42
45
  }),
46
+ display: z
47
+ .enum(contextualDisplayOptions)
48
+ .optional()
49
+ .default('header')
50
+ .describe('Where to display the contextual options: "header" (default) shows them in the top-of-page context menu, "toc" shows them in the table of contents sidebar'),
43
51
  })
44
52
  .describe('Contextual options');
@@ -1,8 +1,8 @@
1
1
  import { z } from 'zod';
2
2
  export declare const iconsSchema: z.ZodObject<{
3
- library: z.ZodEnum<["fontawesome", "lucide"]>;
3
+ library: z.ZodEnum<["fontawesome", "lucide", "tabler"]>;
4
4
  }, "strip", z.ZodTypeAny, {
5
- library: "fontawesome" | "lucide";
5
+ library: "fontawesome" | "lucide" | "tabler";
6
6
  }, {
7
- library: "fontawesome" | "lucide";
7
+ library: "fontawesome" | "lucide" | "tabler";
8
8
  }>;
@@ -41,15 +41,15 @@ export declare const navbarSchema: z.ZodObject<{
41
41
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
42
42
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
43
43
  name: z.ZodEffects<z.ZodString, string, string>;
44
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
44
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
45
45
  }, "strip", z.ZodTypeAny, {
46
46
  name: string;
47
47
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
48
- library?: "fontawesome" | "lucide" | undefined;
48
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
49
49
  }, {
50
50
  name: string;
51
51
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
52
- library?: "fontawesome" | "lucide" | undefined;
52
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
53
53
  }>]>>;
54
54
  href: z.ZodEffects<z.ZodString, string, string>;
55
55
  }, {
@@ -61,7 +61,7 @@ export declare const navbarSchema: z.ZodObject<{
61
61
  icon?: string | {
62
62
  name: string;
63
63
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
64
- library?: "fontawesome" | "lucide" | undefined;
64
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
65
65
  } | undefined;
66
66
  label?: string | undefined;
67
67
  }, {
@@ -70,22 +70,22 @@ export declare const navbarSchema: z.ZodObject<{
70
70
  icon?: string | {
71
71
  name: string;
72
72
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
73
- library?: "fontawesome" | "lucide" | undefined;
73
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
74
74
  } | undefined;
75
75
  label?: string | undefined;
76
76
  }>, z.ZodObject<z.objectUtil.extendShape<{
77
77
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
78
78
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
79
79
  name: z.ZodEffects<z.ZodString, string, string>;
80
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
80
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
81
81
  }, "strip", z.ZodTypeAny, {
82
82
  name: string;
83
83
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
84
- library?: "fontawesome" | "lucide" | undefined;
84
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
85
85
  }, {
86
86
  name: string;
87
87
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
88
- library?: "fontawesome" | "lucide" | undefined;
88
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
89
89
  }>]>>;
90
90
  href: z.ZodEffects<z.ZodString, string, string>;
91
91
  }, {
@@ -97,7 +97,7 @@ export declare const navbarSchema: z.ZodObject<{
97
97
  icon?: string | {
98
98
  name: string;
99
99
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
100
- library?: "fontawesome" | "lucide" | undefined;
100
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
101
101
  } | undefined;
102
102
  label?: string | undefined;
103
103
  }, {
@@ -106,22 +106,22 @@ export declare const navbarSchema: z.ZodObject<{
106
106
  icon?: string | {
107
107
  name: string;
108
108
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
109
- library?: "fontawesome" | "lucide" | undefined;
109
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
110
110
  } | undefined;
111
111
  label?: string | undefined;
112
112
  }>, z.ZodObject<z.objectUtil.extendShape<{
113
113
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
114
114
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
115
115
  name: z.ZodEffects<z.ZodString, string, string>;
116
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
116
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
117
117
  }, "strip", z.ZodTypeAny, {
118
118
  name: string;
119
119
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
120
- library?: "fontawesome" | "lucide" | undefined;
120
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
121
121
  }, {
122
122
  name: string;
123
123
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
124
- library?: "fontawesome" | "lucide" | undefined;
124
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
125
125
  }>]>>;
126
126
  href: z.ZodEffects<z.ZodString, string, string>;
127
127
  }, {
@@ -134,7 +134,7 @@ export declare const navbarSchema: z.ZodObject<{
134
134
  icon?: string | {
135
135
  name: string;
136
136
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
137
- library?: "fontawesome" | "lucide" | undefined;
137
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
138
138
  } | undefined;
139
139
  }, {
140
140
  href: string;
@@ -143,7 +143,7 @@ export declare const navbarSchema: z.ZodObject<{
143
143
  icon?: string | {
144
144
  name: string;
145
145
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
146
- library?: "fontawesome" | "lucide" | undefined;
146
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
147
147
  } | undefined;
148
148
  }>]>, "many">>;
149
149
  primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -204,7 +204,7 @@ export declare const navbarSchema: z.ZodObject<{
204
204
  icon?: string | {
205
205
  name: string;
206
206
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
207
- library?: "fontawesome" | "lucide" | undefined;
207
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
208
208
  } | undefined;
209
209
  } | {
210
210
  type: "github";
@@ -212,7 +212,7 @@ export declare const navbarSchema: z.ZodObject<{
212
212
  icon?: string | {
213
213
  name: string;
214
214
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
215
- library?: "fontawesome" | "lucide" | undefined;
215
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
216
216
  } | undefined;
217
217
  label?: string | undefined;
218
218
  } | {
@@ -221,7 +221,7 @@ export declare const navbarSchema: z.ZodObject<{
221
221
  icon?: string | {
222
222
  name: string;
223
223
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
224
- library?: "fontawesome" | "lucide" | undefined;
224
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
225
225
  } | undefined;
226
226
  label?: string | undefined;
227
227
  })[] | undefined;
@@ -246,7 +246,7 @@ export declare const navbarSchema: z.ZodObject<{
246
246
  icon?: string | {
247
247
  name: string;
248
248
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
249
- library?: "fontawesome" | "lucide" | undefined;
249
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
250
250
  } | undefined;
251
251
  } | {
252
252
  type: "github";
@@ -254,7 +254,7 @@ export declare const navbarSchema: z.ZodObject<{
254
254
  icon?: string | {
255
255
  name: string;
256
256
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
257
- library?: "fontawesome" | "lucide" | undefined;
257
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
258
258
  } | undefined;
259
259
  label?: string | undefined;
260
260
  } | {
@@ -263,7 +263,7 @@ export declare const navbarSchema: z.ZodObject<{
263
263
  icon?: string | {
264
264
  name: string;
265
265
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
266
- library?: "fontawesome" | "lucide" | undefined;
266
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
267
267
  } | undefined;
268
268
  label?: string | undefined;
269
269
  })[] | undefined;
@@ -5,15 +5,15 @@ export declare const baseAnchorSchema: z.ZodObject<{
5
5
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6
6
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7
7
  name: z.ZodEffects<z.ZodString, string, string>;
8
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
8
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
9
9
  }, "strip", z.ZodTypeAny, {
10
10
  name: string;
11
11
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12
- library?: "fontawesome" | "lucide" | undefined;
12
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
13
13
  }, {
14
14
  name: string;
15
15
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16
- library?: "fontawesome" | "lucide" | undefined;
16
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
17
17
  }>]>>;
18
18
  color: z.ZodOptional<z.ZodObject<{
19
19
  light: z.ZodOptional<z.ZodString>;
@@ -31,7 +31,7 @@ export declare const baseAnchorSchema: z.ZodObject<{
31
31
  icon?: string | {
32
32
  name: string;
33
33
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
34
- library?: "fontawesome" | "lucide" | undefined;
34
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
35
35
  } | undefined;
36
36
  color?: {
37
37
  light?: string | undefined;
@@ -43,7 +43,7 @@ export declare const baseAnchorSchema: z.ZodObject<{
43
43
  icon?: string | {
44
44
  name: string;
45
45
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
46
- library?: "fontawesome" | "lucide" | undefined;
46
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
47
47
  } | undefined;
48
48
  color?: {
49
49
  light?: string | undefined;
@@ -57,15 +57,15 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<z.objectUtil.extendSh
57
57
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
58
58
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
59
59
  name: z.ZodEffects<z.ZodString, string, string>;
60
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
60
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
61
61
  }, "strip", z.ZodTypeAny, {
62
62
  name: string;
63
63
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
64
- library?: "fontawesome" | "lucide" | undefined;
64
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
65
65
  }, {
66
66
  name: string;
67
67
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
68
- library?: "fontawesome" | "lucide" | undefined;
68
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
69
69
  }>]>>;
70
70
  color: z.ZodOptional<z.ZodObject<{
71
71
  light: z.ZodOptional<z.ZodString>;
@@ -86,7 +86,7 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<z.objectUtil.extendSh
86
86
  icon?: string | {
87
87
  name: string;
88
88
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
89
- library?: "fontawesome" | "lucide" | undefined;
89
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
90
90
  } | undefined;
91
91
  color?: {
92
92
  light?: string | undefined;
@@ -99,7 +99,7 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<z.objectUtil.extendSh
99
99
  icon?: string | {
100
100
  name: string;
101
101
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
102
- library?: "fontawesome" | "lucide" | undefined;
102
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
103
103
  } | undefined;
104
104
  color?: {
105
105
  light?: string | undefined;
@@ -5,15 +5,15 @@ export declare const baseDropdownSchema: z.ZodObject<{
5
5
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
6
6
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7
7
  name: z.ZodEffects<z.ZodString, string, string>;
8
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
8
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
9
9
  }, "strip", z.ZodTypeAny, {
10
10
  name: string;
11
11
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
12
- library?: "fontawesome" | "lucide" | undefined;
12
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
13
13
  }, {
14
14
  name: string;
15
15
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
16
- library?: "fontawesome" | "lucide" | undefined;
16
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
17
17
  }>]>>;
18
18
  color: z.ZodOptional<z.ZodObject<{
19
19
  light: z.ZodOptional<z.ZodString>;
@@ -32,7 +32,7 @@ export declare const baseDropdownSchema: z.ZodObject<{
32
32
  icon?: string | {
33
33
  name: string;
34
34
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
35
- library?: "fontawesome" | "lucide" | undefined;
35
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
36
36
  } | undefined;
37
37
  color?: {
38
38
  light?: string | undefined;
@@ -45,7 +45,7 @@ export declare const baseDropdownSchema: z.ZodObject<{
45
45
  icon?: string | {
46
46
  name: string;
47
47
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
48
- library?: "fontawesome" | "lucide" | undefined;
48
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
49
49
  } | undefined;
50
50
  color?: {
51
51
  light?: string | undefined;
@@ -60,15 +60,15 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<z.objectUtil.extend
60
60
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
61
61
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
62
62
  name: z.ZodEffects<z.ZodString, string, string>;
63
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
63
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
64
64
  }, "strip", z.ZodTypeAny, {
65
65
  name: string;
66
66
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
67
- library?: "fontawesome" | "lucide" | undefined;
67
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
68
68
  }, {
69
69
  name: string;
70
70
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
71
- library?: "fontawesome" | "lucide" | undefined;
71
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
72
72
  }>]>>;
73
73
  color: z.ZodOptional<z.ZodObject<{
74
74
  light: z.ZodOptional<z.ZodString>;
@@ -90,7 +90,7 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<z.objectUtil.extend
90
90
  icon?: string | {
91
91
  name: string;
92
92
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
93
- library?: "fontawesome" | "lucide" | undefined;
93
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
94
94
  } | undefined;
95
95
  color?: {
96
96
  light?: string | undefined;
@@ -104,7 +104,7 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<z.objectUtil.extend
104
104
  icon?: string | {
105
105
  name: string;
106
106
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
107
- library?: "fontawesome" | "lucide" | undefined;
107
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
108
108
  } | undefined;
109
109
  color?: {
110
110
  light?: string | undefined;
@@ -6,15 +6,15 @@ export declare const baseGroupSchema: z.ZodObject<{
6
6
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7
7
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
8
8
  name: z.ZodEffects<z.ZodString, string, string>;
9
- library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
9
+ library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
10
10
  }, "strip", z.ZodTypeAny, {
11
11
  name: string;
12
12
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
13
- library?: "fontawesome" | "lucide" | undefined;
13
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
14
14
  }, {
15
15
  name: string;
16
16
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
17
- library?: "fontawesome" | "lucide" | undefined;
17
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
18
18
  }>]>>;
19
19
  hidden: z.ZodOptional<z.ZodBoolean>;
20
20
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -25,7 +25,7 @@ export declare const baseGroupSchema: z.ZodObject<{
25
25
  icon?: string | {
26
26
  name: string;
27
27
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
28
- library?: "fontawesome" | "lucide" | undefined;
28
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
29
29
  } | undefined;
30
30
  expanded?: boolean | undefined;
31
31
  public?: boolean | undefined;
@@ -37,7 +37,7 @@ export declare const baseGroupSchema: z.ZodObject<{
37
37
  icon?: string | {
38
38
  name: string;
39
39
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
40
- library?: "fontawesome" | "lucide" | undefined;
40
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
41
41
  } | undefined;
42
42
  expanded?: boolean | undefined;
43
43
  public?: boolean | undefined;
@@ -53,7 +53,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
53
53
  icon?: string | {
54
54
  name: string;
55
55
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
56
- library?: "fontawesome" | "lucide" | undefined;
56
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
57
57
  } | undefined;
58
58
  expanded?: boolean | undefined;
59
59
  public?: boolean | undefined;
@@ -76,7 +76,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
76
76
  icon?: string | {
77
77
  name: string;
78
78
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
79
- library?: "fontawesome" | "lucide" | undefined;
79
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
80
80
  } | undefined;
81
81
  expanded?: boolean | undefined;
82
82
  public?: boolean | undefined;
@@ -100,7 +100,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
100
100
  icon?: string | {
101
101
  name: string;
102
102
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
103
- library?: "fontawesome" | "lucide" | undefined;
103
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
104
104
  } | undefined;
105
105
  expanded?: boolean | undefined;
106
106
  public?: boolean | undefined;
@@ -115,7 +115,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
115
115
  icon?: string | {
116
116
  name: string;
117
117
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
118
- library?: "fontawesome" | "lucide" | undefined;
118
+ library?: "fontawesome" | "lucide" | "tabler" | undefined;
119
119
  } | undefined;
120
120
  expanded?: boolean | undefined;
121
121
  public?: boolean | undefined;