@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const contextualOptions: readonly ["assistant", "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
4
|
export declare const contextualDisplayOptions: readonly ["header", "toc"];
|
|
5
5
|
export type ContextualDisplayOption = (typeof contextualDisplayOptions)[number];
|
|
@@ -36,15 +36,15 @@ export declare const customContextualOption: z.ZodObject<{
|
|
|
36
36
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
37
37
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
38
38
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
39
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
39
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
40
40
|
}, "strip", z.ZodTypeAny, {
|
|
41
41
|
name: string;
|
|
42
42
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
43
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
43
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
44
44
|
}, {
|
|
45
45
|
name: string;
|
|
46
46
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
47
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
47
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
48
48
|
}>]>>;
|
|
49
49
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
50
50
|
base: z.ZodString;
|
|
@@ -84,7 +84,7 @@ export declare const customContextualOption: z.ZodObject<{
|
|
|
84
84
|
icon?: string | {
|
|
85
85
|
name: string;
|
|
86
86
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
87
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
87
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
88
88
|
} | undefined;
|
|
89
89
|
}, {
|
|
90
90
|
href: string | {
|
|
@@ -99,25 +99,25 @@ export declare const customContextualOption: z.ZodObject<{
|
|
|
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
|
}>;
|
|
105
105
|
export declare const contextualSchema: z.ZodObject<{
|
|
106
|
-
options: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["assistant", "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<{
|
|
107
107
|
title: z.ZodString;
|
|
108
108
|
description: z.ZodString;
|
|
109
109
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
110
110
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
111
111
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
112
|
-
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
112
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide", "tabler"]>>;
|
|
113
113
|
}, "strip", z.ZodTypeAny, {
|
|
114
114
|
name: string;
|
|
115
115
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
116
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
116
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
117
117
|
}, {
|
|
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
|
href: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
123
123
|
base: z.ZodString;
|
|
@@ -157,7 +157,7 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
157
157
|
icon?: string | {
|
|
158
158
|
name: string;
|
|
159
159
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
160
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
160
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
161
161
|
} | undefined;
|
|
162
162
|
}, {
|
|
163
163
|
href: string | {
|
|
@@ -172,9 +172,9 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
172
172
|
icon?: string | {
|
|
173
173
|
name: string;
|
|
174
174
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
175
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
175
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
176
176
|
} | undefined;
|
|
177
|
-
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
177
|
+
}>]>, "many">, ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
178
178
|
href: string | {
|
|
179
179
|
base: string;
|
|
180
180
|
query?: {
|
|
@@ -187,9 +187,9 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
187
187
|
icon?: string | {
|
|
188
188
|
name: string;
|
|
189
189
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
190
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
190
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
191
191
|
} | undefined;
|
|
192
|
-
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
192
|
+
})[], ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
193
193
|
href: string | {
|
|
194
194
|
base: string;
|
|
195
195
|
query?: {
|
|
@@ -202,12 +202,12 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
202
202
|
icon?: string | {
|
|
203
203
|
name: string;
|
|
204
204
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
205
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
205
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
206
206
|
} | undefined;
|
|
207
207
|
})[]>;
|
|
208
208
|
display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["header", "toc"]>>>;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
210
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
211
211
|
href: string | {
|
|
212
212
|
base: string;
|
|
213
213
|
query?: {
|
|
@@ -220,12 +220,12 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
220
220
|
icon?: string | {
|
|
221
221
|
name: string;
|
|
222
222
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
223
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
223
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
224
224
|
} | undefined;
|
|
225
225
|
})[];
|
|
226
226
|
display: "header" | "toc";
|
|
227
227
|
}, {
|
|
228
|
-
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "cursor" | "vscode" | {
|
|
228
|
+
options: ("assistant" | "copy" | "view" | "chatgpt" | "claude" | "perplexity" | "grok" | "mcp" | "add-mcp" | "cursor" | "vscode" | {
|
|
229
229
|
href: string | {
|
|
230
230
|
base: string;
|
|
231
231
|
query?: {
|
|
@@ -238,7 +238,7 @@ export declare const contextualSchema: z.ZodObject<{
|
|
|
238
238
|
icon?: string | {
|
|
239
239
|
name: string;
|
|
240
240
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
241
|
-
library?: "fontawesome" | "lucide" | undefined;
|
|
241
|
+
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
242
242
|
} | undefined;
|
|
243
243
|
})[];
|
|
244
244
|
display?: "header" | "toc" | undefined;
|
|
@@ -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;
|