@mintlify/validation 0.1.320 → 0.1.322
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mint-config/schemas/v1/anchors.js +1 -1
- package/dist/mint-config/schemas/v2/index.d.ts +190 -25
- package/dist/mint-config/schemas/v2/properties/icons.d.ts +3 -3
- package/dist/mint-config/schemas/v2/properties/icons.js +2 -1
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +45 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +28 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +10 -0
- package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/icon.js +10 -15
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +5 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +38 -5
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +24 -3
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +38 -5
- package/dist/mint-config/validateConfig.d.ts +70 -10
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/deployment/trieve.d.ts +1 -0
- package/dist/types/deployment/trieve.js +1 -0
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const iconsSchema: z.ZodObject<{
|
|
3
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
3
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
4
4
|
}, "strip", z.ZodTypeAny, {
|
|
5
|
-
library: "fontawesome";
|
|
5
|
+
library: "fontawesome" | "lucide";
|
|
6
6
|
}, {
|
|
7
|
-
library: "fontawesome";
|
|
7
|
+
library: "fontawesome" | "lucide";
|
|
8
8
|
}>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { iconLibraries } from '@mintlify/models';
|
|
1
2
|
import { z } from 'zod';
|
|
2
3
|
export const iconsSchema = z
|
|
3
4
|
.object({
|
|
4
5
|
library: z
|
|
5
|
-
.enum(
|
|
6
|
+
.enum(iconLibraries)
|
|
6
7
|
.describe('The icon library to be used. Defaults to `fontawesome`.'),
|
|
7
8
|
})
|
|
8
9
|
.describe('Icon library settings');
|
|
@@ -5,12 +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
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
name: string;
|
|
10
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;
|
|
11
13
|
}, {
|
|
12
14
|
name: string;
|
|
13
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;
|
|
14
17
|
}>]>>;
|
|
15
18
|
color: z.ZodOptional<z.ZodObject<{
|
|
16
19
|
light: z.ZodOptional<z.ZodString>;
|
|
@@ -28,6 +31,7 @@ export declare const baseAnchorSchema: z.ZodObject<{
|
|
|
28
31
|
icon?: string | {
|
|
29
32
|
name: string;
|
|
30
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;
|
|
31
35
|
} | undefined;
|
|
32
36
|
color?: {
|
|
33
37
|
light?: string | undefined;
|
|
@@ -39,6 +43,7 @@ export declare const baseAnchorSchema: z.ZodObject<{
|
|
|
39
43
|
icon?: string | {
|
|
40
44
|
name: string;
|
|
41
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;
|
|
42
47
|
} | undefined;
|
|
43
48
|
color?: {
|
|
44
49
|
light?: string | undefined;
|
|
@@ -51,12 +56,15 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<{
|
|
|
51
56
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
52
57
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
53
58
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
59
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
54
60
|
}, "strip", z.ZodTypeAny, {
|
|
55
61
|
name: string;
|
|
56
62
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
63
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
57
64
|
}, {
|
|
58
65
|
name: string;
|
|
59
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;
|
|
60
68
|
}>]>>;
|
|
61
69
|
color: z.ZodOptional<z.ZodObject<{
|
|
62
70
|
light: z.ZodOptional<z.ZodString>;
|
|
@@ -77,6 +85,7 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<{
|
|
|
77
85
|
icon?: string | {
|
|
78
86
|
name: string;
|
|
79
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;
|
|
80
89
|
} | undefined;
|
|
81
90
|
color?: {
|
|
82
91
|
light?: string | undefined;
|
|
@@ -89,6 +98,7 @@ export declare const nonRecursiveAnchorSchema: z.ZodObject<{
|
|
|
89
98
|
icon?: string | {
|
|
90
99
|
name: string;
|
|
91
100
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
101
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
92
102
|
} | undefined;
|
|
93
103
|
color?: {
|
|
94
104
|
light?: string | undefined;
|
|
@@ -5,12 +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
9
|
}, "strip", z.ZodTypeAny, {
|
|
9
10
|
name: string;
|
|
10
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;
|
|
11
13
|
}, {
|
|
12
14
|
name: string;
|
|
13
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;
|
|
14
17
|
}>]>>;
|
|
15
18
|
color: z.ZodOptional<z.ZodObject<{
|
|
16
19
|
light: z.ZodOptional<z.ZodString>;
|
|
@@ -29,6 +32,7 @@ export declare const baseDropdownSchema: z.ZodObject<{
|
|
|
29
32
|
icon?: string | {
|
|
30
33
|
name: string;
|
|
31
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;
|
|
32
36
|
} | undefined;
|
|
33
37
|
color?: {
|
|
34
38
|
light?: string | undefined;
|
|
@@ -41,6 +45,7 @@ export declare const baseDropdownSchema: z.ZodObject<{
|
|
|
41
45
|
icon?: string | {
|
|
42
46
|
name: string;
|
|
43
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;
|
|
44
49
|
} | undefined;
|
|
45
50
|
color?: {
|
|
46
51
|
light?: string | undefined;
|
|
@@ -54,12 +59,15 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<{
|
|
|
54
59
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
55
60
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
56
61
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
62
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
57
63
|
}, "strip", z.ZodTypeAny, {
|
|
58
64
|
name: string;
|
|
59
65
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
66
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
60
67
|
}, {
|
|
61
68
|
name: string;
|
|
62
69
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
70
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
63
71
|
}>]>>;
|
|
64
72
|
color: z.ZodOptional<z.ZodObject<{
|
|
65
73
|
light: z.ZodOptional<z.ZodString>;
|
|
@@ -81,6 +89,7 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<{
|
|
|
81
89
|
icon?: string | {
|
|
82
90
|
name: string;
|
|
83
91
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
92
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
84
93
|
} | undefined;
|
|
85
94
|
color?: {
|
|
86
95
|
light?: string | undefined;
|
|
@@ -94,6 +103,7 @@ export declare const nonRecursiveDropdownSchema: z.ZodObject<{
|
|
|
94
103
|
icon?: string | {
|
|
95
104
|
name: string;
|
|
96
105
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
106
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
97
107
|
} | undefined;
|
|
98
108
|
color?: {
|
|
99
109
|
light?: string | undefined;
|
|
@@ -4,12 +4,15 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
4
4
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5
5
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6
6
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
name: string;
|
|
9
10
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10
12
|
}, {
|
|
11
13
|
name: string;
|
|
12
14
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
15
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
13
16
|
}>]>>;
|
|
14
17
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
15
18
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -18,6 +21,7 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
18
21
|
icon?: string | {
|
|
19
22
|
name: string;
|
|
20
23
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
24
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
21
25
|
} | undefined;
|
|
22
26
|
hidden?: boolean | undefined;
|
|
23
27
|
root?: string | undefined;
|
|
@@ -26,6 +30,7 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
26
30
|
icon?: string | {
|
|
27
31
|
name: string;
|
|
28
32
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
33
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
29
34
|
} | undefined;
|
|
30
35
|
hidden?: boolean | undefined;
|
|
31
36
|
root?: string | undefined;
|
|
@@ -34,12 +39,15 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
34
39
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
35
40
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
36
41
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
42
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
37
43
|
}, "strip", z.ZodTypeAny, {
|
|
38
44
|
name: string;
|
|
39
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;
|
|
40
47
|
}, {
|
|
41
48
|
name: string;
|
|
42
49
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
50
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
43
51
|
}>]>>;
|
|
44
52
|
group: z.ZodString;
|
|
45
53
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -66,6 +74,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
66
74
|
icon?: string | {
|
|
67
75
|
name: string;
|
|
68
76
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
77
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
69
78
|
} | undefined;
|
|
70
79
|
hidden?: boolean | undefined;
|
|
71
80
|
root?: string | undefined;
|
|
@@ -81,6 +90,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
81
90
|
icon?: string | {
|
|
82
91
|
name: string;
|
|
83
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;
|
|
84
94
|
} | undefined;
|
|
85
95
|
hidden?: boolean | undefined;
|
|
86
96
|
root?: string | undefined;
|
|
@@ -88,12 +98,15 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
88
98
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
89
99
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
90
100
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
101
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
91
102
|
}, "strip", z.ZodTypeAny, {
|
|
92
103
|
name: string;
|
|
93
104
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
105
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
94
106
|
}, {
|
|
95
107
|
name: string;
|
|
96
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;
|
|
97
110
|
}>]>>;
|
|
98
111
|
group: z.ZodString;
|
|
99
112
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -120,6 +133,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
120
133
|
icon?: string | {
|
|
121
134
|
name: string;
|
|
122
135
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
136
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
123
137
|
} | undefined;
|
|
124
138
|
hidden?: boolean | undefined;
|
|
125
139
|
root?: string | undefined;
|
|
@@ -135,6 +149,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
135
149
|
icon?: string | {
|
|
136
150
|
name: string;
|
|
137
151
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
152
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
138
153
|
} | undefined;
|
|
139
154
|
hidden?: boolean | undefined;
|
|
140
155
|
root?: string | undefined;
|
|
@@ -142,12 +157,15 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
142
157
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
143
158
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
144
159
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
160
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
145
161
|
}, "strip", z.ZodTypeAny, {
|
|
146
162
|
name: string;
|
|
147
163
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
164
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
148
165
|
}, {
|
|
149
166
|
name: string;
|
|
150
167
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
168
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
151
169
|
}>]>>;
|
|
152
170
|
group: z.ZodString;
|
|
153
171
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -159,6 +177,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
159
177
|
icon?: string | {
|
|
160
178
|
name: string;
|
|
161
179
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
180
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
162
181
|
} | undefined;
|
|
163
182
|
hidden?: boolean | undefined;
|
|
164
183
|
root?: string | undefined;
|
|
@@ -168,6 +187,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
168
187
|
icon?: string | {
|
|
169
188
|
name: string;
|
|
170
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;
|
|
171
191
|
} | undefined;
|
|
172
192
|
hidden?: boolean | undefined;
|
|
173
193
|
root?: string | undefined;
|
|
@@ -177,12 +197,15 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
177
197
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
178
198
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
179
199
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
200
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
180
201
|
}, "strip", z.ZodTypeAny, {
|
|
181
202
|
name: string;
|
|
182
203
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
204
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
183
205
|
}, {
|
|
184
206
|
name: string;
|
|
185
207
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
208
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
186
209
|
}>]>>;
|
|
187
210
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
188
211
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -193,6 +216,7 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
193
216
|
icon?: string | {
|
|
194
217
|
name: string;
|
|
195
218
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
219
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
196
220
|
} | undefined;
|
|
197
221
|
hidden?: boolean | undefined;
|
|
198
222
|
root?: string | undefined;
|
|
@@ -202,6 +226,7 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
202
226
|
icon?: string | {
|
|
203
227
|
name: string;
|
|
204
228
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
229
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
205
230
|
} | undefined;
|
|
206
231
|
hidden?: boolean | undefined;
|
|
207
232
|
root?: string | undefined;
|
|
@@ -210,12 +235,15 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
210
235
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
211
236
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
212
237
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
238
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
213
239
|
}, "strip", z.ZodTypeAny, {
|
|
214
240
|
name: string;
|
|
215
241
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
242
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
216
243
|
}, {
|
|
217
244
|
name: string;
|
|
218
245
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
219
247
|
}>]>>;
|
|
220
248
|
group: z.ZodString;
|
|
221
249
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -242,6 +270,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
242
270
|
icon?: string | {
|
|
243
271
|
name: string;
|
|
244
272
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
273
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
245
274
|
} | undefined;
|
|
246
275
|
hidden?: boolean | undefined;
|
|
247
276
|
root?: string | undefined;
|
|
@@ -257,6 +286,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
257
286
|
icon?: string | {
|
|
258
287
|
name: string;
|
|
259
288
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
289
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
260
290
|
} | undefined;
|
|
261
291
|
hidden?: boolean | undefined;
|
|
262
292
|
root?: string | undefined;
|
|
@@ -264,12 +294,15 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
264
294
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
265
295
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
266
296
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
297
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
267
298
|
}, "strip", z.ZodTypeAny, {
|
|
268
299
|
name: string;
|
|
269
300
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
301
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
270
302
|
}, {
|
|
271
303
|
name: string;
|
|
272
304
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
305
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
273
306
|
}>]>>;
|
|
274
307
|
group: z.ZodString;
|
|
275
308
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -296,6 +329,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
296
329
|
icon?: string | {
|
|
297
330
|
name: string;
|
|
298
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;
|
|
299
333
|
} | undefined;
|
|
300
334
|
hidden?: boolean | undefined;
|
|
301
335
|
root?: string | undefined;
|
|
@@ -311,6 +345,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
311
345
|
icon?: string | {
|
|
312
346
|
name: string;
|
|
313
347
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
348
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
314
349
|
} | undefined;
|
|
315
350
|
hidden?: boolean | undefined;
|
|
316
351
|
root?: string | undefined;
|
|
@@ -318,12 +353,15 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
318
353
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
319
354
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
320
355
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
356
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
321
357
|
}, "strip", z.ZodTypeAny, {
|
|
322
358
|
name: string;
|
|
323
359
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
360
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
324
361
|
}, {
|
|
325
362
|
name: string;
|
|
326
363
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
364
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
327
365
|
}>]>>;
|
|
328
366
|
group: z.ZodString;
|
|
329
367
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -335,6 +373,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
335
373
|
icon?: string | {
|
|
336
374
|
name: string;
|
|
337
375
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
376
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
338
377
|
} | undefined;
|
|
339
378
|
hidden?: boolean | undefined;
|
|
340
379
|
root?: string | undefined;
|
|
@@ -344,6 +383,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
344
383
|
icon?: string | {
|
|
345
384
|
name: string;
|
|
346
385
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
386
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
347
387
|
} | undefined;
|
|
348
388
|
hidden?: boolean | undefined;
|
|
349
389
|
root?: string | undefined;
|
|
@@ -353,12 +393,15 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
353
393
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
354
394
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
355
395
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
396
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
356
397
|
}, "strip", z.ZodTypeAny, {
|
|
357
398
|
name: string;
|
|
358
399
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
400
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
359
401
|
}, {
|
|
360
402
|
name: string;
|
|
361
403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
404
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
362
405
|
}>]>>;
|
|
363
406
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
364
407
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -369,6 +412,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
369
412
|
icon?: string | {
|
|
370
413
|
name: string;
|
|
371
414
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
415
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
372
416
|
} | undefined;
|
|
373
417
|
hidden?: boolean | undefined;
|
|
374
418
|
root?: string | undefined;
|
|
@@ -378,6 +422,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
378
422
|
icon?: string | {
|
|
379
423
|
name: string;
|
|
380
424
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
425
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
381
426
|
} | undefined;
|
|
382
427
|
hidden?: boolean | undefined;
|
|
383
428
|
root?: string | undefined;
|
|
@@ -56,12 +56,15 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
56
56
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
57
57
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
58
58
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
59
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
59
60
|
}, "strip", z.ZodTypeAny, {
|
|
60
61
|
name: string;
|
|
61
62
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
63
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
62
64
|
}, {
|
|
63
65
|
name: string;
|
|
64
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;
|
|
65
68
|
}>]>>;
|
|
66
69
|
group: z.ZodString;
|
|
67
70
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -88,6 +91,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
88
91
|
icon?: string | {
|
|
89
92
|
name: string;
|
|
90
93
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
94
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
91
95
|
} | undefined;
|
|
92
96
|
hidden?: boolean | undefined;
|
|
93
97
|
root?: string | undefined;
|
|
@@ -103,6 +107,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
103
107
|
icon?: string | {
|
|
104
108
|
name: string;
|
|
105
109
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
110
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
106
111
|
} | undefined;
|
|
107
112
|
hidden?: boolean | undefined;
|
|
108
113
|
root?: string | undefined;
|
|
@@ -110,12 +115,15 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
110
115
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
111
116
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
112
117
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
118
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
113
119
|
}, "strip", z.ZodTypeAny, {
|
|
114
120
|
name: string;
|
|
115
121
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
122
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
116
123
|
}, {
|
|
117
124
|
name: string;
|
|
118
125
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
126
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
119
127
|
}>]>>;
|
|
120
128
|
group: z.ZodString;
|
|
121
129
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -142,6 +150,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
142
150
|
icon?: string | {
|
|
143
151
|
name: string;
|
|
144
152
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
153
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
145
154
|
} | undefined;
|
|
146
155
|
hidden?: boolean | undefined;
|
|
147
156
|
root?: string | undefined;
|
|
@@ -157,6 +166,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
157
166
|
icon?: string | {
|
|
158
167
|
name: string;
|
|
159
168
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
169
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
160
170
|
} | undefined;
|
|
161
171
|
hidden?: boolean | undefined;
|
|
162
172
|
root?: string | undefined;
|
|
@@ -164,12 +174,15 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
164
174
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
165
175
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
166
176
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
177
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
167
178
|
}, "strip", z.ZodTypeAny, {
|
|
168
179
|
name: string;
|
|
169
180
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
181
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
170
182
|
}, {
|
|
171
183
|
name: string;
|
|
172
184
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
185
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
173
186
|
}>]>>;
|
|
174
187
|
group: z.ZodString;
|
|
175
188
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -181,6 +194,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
181
194
|
icon?: string | {
|
|
182
195
|
name: string;
|
|
183
196
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
197
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
184
198
|
} | undefined;
|
|
185
199
|
hidden?: boolean | undefined;
|
|
186
200
|
root?: string | undefined;
|
|
@@ -190,6 +204,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
190
204
|
icon?: string | {
|
|
191
205
|
name: string;
|
|
192
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;
|
|
193
208
|
} | undefined;
|
|
194
209
|
hidden?: boolean | undefined;
|
|
195
210
|
root?: string | undefined;
|
|
@@ -207,6 +222,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
207
222
|
icon?: string | {
|
|
208
223
|
name: string;
|
|
209
224
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
225
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
210
226
|
} | undefined;
|
|
211
227
|
hidden?: boolean | undefined;
|
|
212
228
|
root?: string | undefined;
|
|
@@ -222,6 +238,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
222
238
|
icon?: string | {
|
|
223
239
|
name: string;
|
|
224
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;
|
|
225
242
|
} | undefined;
|
|
226
243
|
hidden?: boolean | undefined;
|
|
227
244
|
root?: string | undefined;
|
|
@@ -231,6 +248,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
231
248
|
icon?: string | {
|
|
232
249
|
name: string;
|
|
233
250
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
251
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
252
|
} | undefined;
|
|
235
253
|
hidden?: boolean | undefined;
|
|
236
254
|
root?: string | undefined;
|
|
@@ -249,6 +267,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
249
267
|
icon?: string | {
|
|
250
268
|
name: string;
|
|
251
269
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
270
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
252
271
|
} | undefined;
|
|
253
272
|
hidden?: boolean | undefined;
|
|
254
273
|
root?: string | undefined;
|
|
@@ -264,6 +283,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
264
283
|
icon?: string | {
|
|
265
284
|
name: string;
|
|
266
285
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
267
287
|
} | undefined;
|
|
268
288
|
hidden?: boolean | undefined;
|
|
269
289
|
root?: string | undefined;
|
|
@@ -273,6 +293,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
273
293
|
icon?: string | {
|
|
274
294
|
name: string;
|
|
275
295
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
296
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
276
297
|
} | undefined;
|
|
277
298
|
hidden?: boolean | undefined;
|
|
278
299
|
root?: string | undefined;
|
|
@@ -324,12 +345,15 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
324
345
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
325
346
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
326
347
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
348
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
327
349
|
}, "strip", z.ZodTypeAny, {
|
|
328
350
|
name: string;
|
|
329
351
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
352
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
330
353
|
}, {
|
|
331
354
|
name: string;
|
|
332
355
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
356
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
333
357
|
}>]>>;
|
|
334
358
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
335
359
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -340,6 +364,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
340
364
|
icon?: string | {
|
|
341
365
|
name: string;
|
|
342
366
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
367
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
343
368
|
} | undefined;
|
|
344
369
|
hidden?: boolean | undefined;
|
|
345
370
|
root?: string | undefined;
|
|
@@ -349,6 +374,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
349
374
|
icon?: string | {
|
|
350
375
|
name: string;
|
|
351
376
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
377
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
352
378
|
} | undefined;
|
|
353
379
|
hidden?: boolean | undefined;
|
|
354
380
|
root?: string | undefined;
|
|
@@ -360,6 +386,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
360
386
|
icon?: string | {
|
|
361
387
|
name: string;
|
|
362
388
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
389
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
363
390
|
} | undefined;
|
|
364
391
|
hidden?: boolean | undefined;
|
|
365
392
|
root?: string | undefined;
|
|
@@ -371,6 +398,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
371
398
|
icon?: string | {
|
|
372
399
|
name: string;
|
|
373
400
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
401
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
374
402
|
} | undefined;
|
|
375
403
|
hidden?: boolean | undefined;
|
|
376
404
|
root?: string | undefined;
|