@mintlify/validation 0.1.429 → 0.1.431
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/navigation.d.ts +3 -0
- package/dist/mint-config/schemas/v1/navigation.js +2 -1
- package/dist/mint-config/schemas/v2/index.d.ts +189 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +27 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +2 -0
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +27 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +15 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +27 -0
- package/dist/mint-config/validateConfig.d.ts +84 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const baseGroupSchema: z.ZodObject<{
|
|
3
3
|
group: z.ZodString;
|
|
4
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
4
5
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5
6
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
6
7
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -19,6 +20,7 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
19
20
|
tag: z.ZodOptional<z.ZodString>;
|
|
20
21
|
}, "strip", z.ZodTypeAny, {
|
|
21
22
|
group: string;
|
|
23
|
+
public?: boolean | undefined;
|
|
22
24
|
icon?: string | {
|
|
23
25
|
name: string;
|
|
24
26
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -29,6 +31,7 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
29
31
|
tag?: string | undefined;
|
|
30
32
|
}, {
|
|
31
33
|
group: string;
|
|
34
|
+
public?: boolean | undefined;
|
|
32
35
|
icon?: string | {
|
|
33
36
|
name: string;
|
|
34
37
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -53,6 +56,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
53
56
|
library?: "fontawesome" | "lucide" | undefined;
|
|
54
57
|
}>]>>;
|
|
55
58
|
group: z.ZodString;
|
|
59
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
56
60
|
tag: z.ZodOptional<z.ZodString>;
|
|
57
61
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
58
62
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -80,6 +84,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
80
84
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
81
85
|
library?: "fontawesome" | "lucide" | undefined;
|
|
82
86
|
} | undefined;
|
|
87
|
+
public?: boolean | undefined;
|
|
83
88
|
tag?: string | undefined;
|
|
84
89
|
hidden?: boolean | undefined;
|
|
85
90
|
root?: string | undefined;
|
|
@@ -97,6 +102,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
97
102
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
98
103
|
library?: "fontawesome" | "lucide" | undefined;
|
|
99
104
|
} | undefined;
|
|
105
|
+
public?: boolean | undefined;
|
|
100
106
|
tag?: string | undefined;
|
|
101
107
|
hidden?: boolean | undefined;
|
|
102
108
|
root?: string | undefined;
|
|
@@ -115,6 +121,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
115
121
|
library?: "fontawesome" | "lucide" | undefined;
|
|
116
122
|
}>]>>;
|
|
117
123
|
group: z.ZodString;
|
|
124
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
118
125
|
tag: z.ZodOptional<z.ZodString>;
|
|
119
126
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
120
127
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -142,6 +149,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
142
149
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
143
150
|
library?: "fontawesome" | "lucide" | undefined;
|
|
144
151
|
} | undefined;
|
|
152
|
+
public?: boolean | undefined;
|
|
145
153
|
tag?: string | undefined;
|
|
146
154
|
hidden?: boolean | undefined;
|
|
147
155
|
root?: string | undefined;
|
|
@@ -159,6 +167,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
159
167
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
160
168
|
library?: "fontawesome" | "lucide" | undefined;
|
|
161
169
|
} | undefined;
|
|
170
|
+
public?: boolean | undefined;
|
|
162
171
|
tag?: string | undefined;
|
|
163
172
|
hidden?: boolean | undefined;
|
|
164
173
|
root?: string | undefined;
|
|
@@ -177,6 +186,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
177
186
|
library?: "fontawesome" | "lucide" | undefined;
|
|
178
187
|
}>]>>;
|
|
179
188
|
group: z.ZodString;
|
|
189
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
180
190
|
tag: z.ZodOptional<z.ZodString>;
|
|
181
191
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
182
192
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -189,6 +199,7 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
189
199
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
190
200
|
library?: "fontawesome" | "lucide" | undefined;
|
|
191
201
|
} | undefined;
|
|
202
|
+
public?: boolean | undefined;
|
|
192
203
|
tag?: string | undefined;
|
|
193
204
|
hidden?: boolean | undefined;
|
|
194
205
|
root?: string | undefined;
|
|
@@ -200,12 +211,14 @@ export declare const groupSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
200
211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
201
212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
202
213
|
} | undefined;
|
|
214
|
+
public?: boolean | undefined;
|
|
203
215
|
tag?: string | undefined;
|
|
204
216
|
hidden?: boolean | undefined;
|
|
205
217
|
root?: string | undefined;
|
|
206
218
|
}>]>;
|
|
207
219
|
export declare const decoratedGroupSchema: z.ZodObject<{
|
|
208
220
|
group: z.ZodString;
|
|
221
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
209
222
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
210
223
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
211
224
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -324,6 +337,7 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
324
337
|
}, "strip", z.ZodTypeAny, {
|
|
325
338
|
group: string;
|
|
326
339
|
pages: any[];
|
|
340
|
+
public?: boolean | undefined;
|
|
327
341
|
icon?: string | {
|
|
328
342
|
name: string;
|
|
329
343
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -365,6 +379,7 @@ export declare const decoratedGroupSchema: z.ZodObject<{
|
|
|
365
379
|
}, {
|
|
366
380
|
group: string;
|
|
367
381
|
pages: any[];
|
|
382
|
+
public?: boolean | undefined;
|
|
368
383
|
icon?: string | {
|
|
369
384
|
name: string;
|
|
370
385
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -419,6 +434,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
419
434
|
library?: "fontawesome" | "lucide" | undefined;
|
|
420
435
|
}>]>>;
|
|
421
436
|
group: z.ZodString;
|
|
437
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
422
438
|
tag: z.ZodOptional<z.ZodString>;
|
|
423
439
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
424
440
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -446,6 +462,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
446
462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
447
463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
448
464
|
} | undefined;
|
|
465
|
+
public?: boolean | undefined;
|
|
449
466
|
tag?: string | undefined;
|
|
450
467
|
hidden?: boolean | undefined;
|
|
451
468
|
root?: string | undefined;
|
|
@@ -463,6 +480,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
463
480
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
464
481
|
library?: "fontawesome" | "lucide" | undefined;
|
|
465
482
|
} | undefined;
|
|
483
|
+
public?: boolean | undefined;
|
|
466
484
|
tag?: string | undefined;
|
|
467
485
|
hidden?: boolean | undefined;
|
|
468
486
|
root?: string | undefined;
|
|
@@ -481,6 +499,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
481
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
482
500
|
}>]>>;
|
|
483
501
|
group: z.ZodString;
|
|
502
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
484
503
|
tag: z.ZodOptional<z.ZodString>;
|
|
485
504
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
486
505
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -508,6 +527,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
508
527
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
509
528
|
library?: "fontawesome" | "lucide" | undefined;
|
|
510
529
|
} | undefined;
|
|
530
|
+
public?: boolean | undefined;
|
|
511
531
|
tag?: string | undefined;
|
|
512
532
|
hidden?: boolean | undefined;
|
|
513
533
|
root?: string | undefined;
|
|
@@ -525,6 +545,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
525
545
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
546
|
library?: "fontawesome" | "lucide" | undefined;
|
|
527
547
|
} | undefined;
|
|
548
|
+
public?: boolean | undefined;
|
|
528
549
|
tag?: string | undefined;
|
|
529
550
|
hidden?: boolean | undefined;
|
|
530
551
|
root?: string | undefined;
|
|
@@ -543,6 +564,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
543
564
|
library?: "fontawesome" | "lucide" | undefined;
|
|
544
565
|
}>]>>;
|
|
545
566
|
group: z.ZodString;
|
|
567
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
546
568
|
tag: z.ZodOptional<z.ZodString>;
|
|
547
569
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
548
570
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -555,6 +577,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
555
577
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
556
578
|
library?: "fontawesome" | "lucide" | undefined;
|
|
557
579
|
} | undefined;
|
|
580
|
+
public?: boolean | undefined;
|
|
558
581
|
tag?: string | undefined;
|
|
559
582
|
hidden?: boolean | undefined;
|
|
560
583
|
root?: string | undefined;
|
|
@@ -566,12 +589,14 @@ export declare const groupsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
|
566
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
567
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
568
591
|
} | undefined;
|
|
592
|
+
public?: boolean | undefined;
|
|
569
593
|
tag?: string | undefined;
|
|
570
594
|
hidden?: boolean | undefined;
|
|
571
595
|
root?: string | undefined;
|
|
572
596
|
}>]>, "many">;
|
|
573
597
|
export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
574
598
|
group: z.ZodString;
|
|
599
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
575
600
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
576
601
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
577
602
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -690,6 +715,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
690
715
|
}, "strip", z.ZodTypeAny, {
|
|
691
716
|
group: string;
|
|
692
717
|
pages: any[];
|
|
718
|
+
public?: boolean | undefined;
|
|
693
719
|
icon?: string | {
|
|
694
720
|
name: string;
|
|
695
721
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -731,6 +757,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodObject<{
|
|
|
731
757
|
}, {
|
|
732
758
|
group: string;
|
|
733
759
|
pages: any[];
|
|
760
|
+
public?: boolean | undefined;
|
|
734
761
|
icon?: string | {
|
|
735
762
|
name: string;
|
|
736
763
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -7,6 +7,7 @@ import { decoratedPageSchema, pageSchema } from '../reusable/page.js';
|
|
|
7
7
|
import { decoratedPagesSchema, pagesSchema } from './pages.js';
|
|
8
8
|
export const baseGroupSchema = z.object({
|
|
9
9
|
group: z.string().nonempty().describe('The name of the group'),
|
|
10
|
+
public: z.boolean().optional().describe('Whether the group is public'),
|
|
10
11
|
icon: iconSchema.optional(),
|
|
11
12
|
hidden: hiddenSchema.optional(),
|
|
12
13
|
root: pageSchema.optional(),
|
|
@@ -22,6 +23,7 @@ export const groupSchema = z
|
|
|
22
23
|
export const decoratedGroupSchema = z
|
|
23
24
|
.object({
|
|
24
25
|
group: z.string().nonempty().describe('The name of the group'),
|
|
26
|
+
public: z.boolean().optional().describe('Whether the group is public'),
|
|
25
27
|
icon: iconSchema.optional(),
|
|
26
28
|
hidden: hiddenSchema.optional(),
|
|
27
29
|
root: decoratedPageSchema.optional(),
|
|
@@ -68,6 +68,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
68
68
|
library?: "fontawesome" | "lucide" | undefined;
|
|
69
69
|
}>]>>;
|
|
70
70
|
group: z.ZodString;
|
|
71
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
71
72
|
tag: z.ZodOptional<z.ZodString>;
|
|
72
73
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
73
74
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -95,6 +96,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
95
96
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
96
97
|
library?: "fontawesome" | "lucide" | undefined;
|
|
97
98
|
} | undefined;
|
|
99
|
+
public?: boolean | undefined;
|
|
98
100
|
tag?: string | undefined;
|
|
99
101
|
hidden?: boolean | undefined;
|
|
100
102
|
root?: string | undefined;
|
|
@@ -112,6 +114,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
112
114
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
113
115
|
library?: "fontawesome" | "lucide" | undefined;
|
|
114
116
|
} | undefined;
|
|
117
|
+
public?: boolean | undefined;
|
|
115
118
|
tag?: string | undefined;
|
|
116
119
|
hidden?: boolean | undefined;
|
|
117
120
|
root?: string | undefined;
|
|
@@ -130,6 +133,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
130
133
|
library?: "fontawesome" | "lucide" | undefined;
|
|
131
134
|
}>]>>;
|
|
132
135
|
group: z.ZodString;
|
|
136
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
133
137
|
tag: z.ZodOptional<z.ZodString>;
|
|
134
138
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
135
139
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -157,6 +161,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
157
161
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
158
162
|
library?: "fontawesome" | "lucide" | undefined;
|
|
159
163
|
} | undefined;
|
|
164
|
+
public?: boolean | undefined;
|
|
160
165
|
tag?: string | undefined;
|
|
161
166
|
hidden?: boolean | undefined;
|
|
162
167
|
root?: string | undefined;
|
|
@@ -174,6 +179,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
174
179
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
175
180
|
library?: "fontawesome" | "lucide" | undefined;
|
|
176
181
|
} | undefined;
|
|
182
|
+
public?: boolean | undefined;
|
|
177
183
|
tag?: string | undefined;
|
|
178
184
|
hidden?: boolean | undefined;
|
|
179
185
|
root?: string | undefined;
|
|
@@ -192,6 +198,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
192
198
|
library?: "fontawesome" | "lucide" | undefined;
|
|
193
199
|
}>]>>;
|
|
194
200
|
group: z.ZodString;
|
|
201
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
195
202
|
tag: z.ZodOptional<z.ZodString>;
|
|
196
203
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
197
204
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -204,6 +211,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
204
211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
205
212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
206
213
|
} | undefined;
|
|
214
|
+
public?: boolean | undefined;
|
|
207
215
|
tag?: string | undefined;
|
|
208
216
|
hidden?: boolean | undefined;
|
|
209
217
|
root?: string | undefined;
|
|
@@ -215,6 +223,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
215
223
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
216
224
|
library?: "fontawesome" | "lucide" | undefined;
|
|
217
225
|
} | undefined;
|
|
226
|
+
public?: boolean | undefined;
|
|
218
227
|
tag?: string | undefined;
|
|
219
228
|
hidden?: boolean | undefined;
|
|
220
229
|
root?: string | undefined;
|
|
@@ -234,6 +243,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
234
243
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
235
244
|
library?: "fontawesome" | "lucide" | undefined;
|
|
236
245
|
} | undefined;
|
|
246
|
+
public?: boolean | undefined;
|
|
237
247
|
tag?: string | undefined;
|
|
238
248
|
hidden?: boolean | undefined;
|
|
239
249
|
root?: string | undefined;
|
|
@@ -251,6 +261,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
251
261
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
252
262
|
library?: "fontawesome" | "lucide" | undefined;
|
|
253
263
|
} | undefined;
|
|
264
|
+
public?: boolean | undefined;
|
|
254
265
|
tag?: string | undefined;
|
|
255
266
|
hidden?: boolean | undefined;
|
|
256
267
|
root?: string | undefined;
|
|
@@ -262,6 +273,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
262
273
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
263
274
|
library?: "fontawesome" | "lucide" | undefined;
|
|
264
275
|
} | undefined;
|
|
276
|
+
public?: boolean | undefined;
|
|
265
277
|
tag?: string | undefined;
|
|
266
278
|
hidden?: boolean | undefined;
|
|
267
279
|
root?: string | undefined;
|
|
@@ -282,6 +294,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
282
294
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
283
295
|
library?: "fontawesome" | "lucide" | undefined;
|
|
284
296
|
} | undefined;
|
|
297
|
+
public?: boolean | undefined;
|
|
285
298
|
tag?: string | undefined;
|
|
286
299
|
hidden?: boolean | undefined;
|
|
287
300
|
root?: string | undefined;
|
|
@@ -299,6 +312,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
299
312
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
300
313
|
library?: "fontawesome" | "lucide" | undefined;
|
|
301
314
|
} | undefined;
|
|
315
|
+
public?: boolean | undefined;
|
|
302
316
|
tag?: string | undefined;
|
|
303
317
|
hidden?: boolean | undefined;
|
|
304
318
|
root?: string | undefined;
|
|
@@ -310,6 +324,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
310
324
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
311
325
|
library?: "fontawesome" | "lucide" | undefined;
|
|
312
326
|
} | undefined;
|
|
327
|
+
public?: boolean | undefined;
|
|
313
328
|
tag?: string | undefined;
|
|
314
329
|
hidden?: boolean | undefined;
|
|
315
330
|
root?: string | undefined;
|
|
@@ -358,6 +373,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
358
373
|
}>, z.ZodObject<{
|
|
359
374
|
groups: z.ZodArray<z.ZodObject<{
|
|
360
375
|
group: z.ZodString;
|
|
376
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
361
377
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
362
378
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
363
379
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -476,6 +492,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
476
492
|
}, "strip", z.ZodTypeAny, {
|
|
477
493
|
group: string;
|
|
478
494
|
pages: any[];
|
|
495
|
+
public?: boolean | undefined;
|
|
479
496
|
icon?: string | {
|
|
480
497
|
name: string;
|
|
481
498
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -517,6 +534,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
517
534
|
}, {
|
|
518
535
|
group: string;
|
|
519
536
|
pages: any[];
|
|
537
|
+
public?: boolean | undefined;
|
|
520
538
|
icon?: string | {
|
|
521
539
|
name: string;
|
|
522
540
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -560,6 +578,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
560
578
|
groups: {
|
|
561
579
|
group: string;
|
|
562
580
|
pages: any[];
|
|
581
|
+
public?: boolean | undefined;
|
|
563
582
|
icon?: string | {
|
|
564
583
|
name: string;
|
|
565
584
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -603,6 +622,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
603
622
|
groups: {
|
|
604
623
|
group: string;
|
|
605
624
|
pages: any[];
|
|
625
|
+
public?: boolean | undefined;
|
|
606
626
|
icon?: string | {
|
|
607
627
|
name: string;
|
|
608
628
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
@@ -375,6 +375,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
375
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
376
376
|
}>]>>;
|
|
377
377
|
group: z.ZodString;
|
|
378
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
378
379
|
tag: z.ZodOptional<z.ZodString>;
|
|
379
380
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
380
381
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -402,6 +403,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
402
403
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
403
404
|
library?: "fontawesome" | "lucide" | undefined;
|
|
404
405
|
} | undefined;
|
|
406
|
+
public?: boolean | undefined;
|
|
405
407
|
tag?: string | undefined;
|
|
406
408
|
hidden?: boolean | undefined;
|
|
407
409
|
root?: string | undefined;
|
|
@@ -419,6 +421,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
419
421
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
420
422
|
library?: "fontawesome" | "lucide" | undefined;
|
|
421
423
|
} | undefined;
|
|
424
|
+
public?: boolean | undefined;
|
|
422
425
|
tag?: string | undefined;
|
|
423
426
|
hidden?: boolean | undefined;
|
|
424
427
|
root?: string | undefined;
|
|
@@ -437,6 +440,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
437
440
|
library?: "fontawesome" | "lucide" | undefined;
|
|
438
441
|
}>]>>;
|
|
439
442
|
group: z.ZodString;
|
|
443
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
440
444
|
tag: z.ZodOptional<z.ZodString>;
|
|
441
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
442
446
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -464,6 +468,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
464
468
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
465
469
|
library?: "fontawesome" | "lucide" | undefined;
|
|
466
470
|
} | undefined;
|
|
471
|
+
public?: boolean | undefined;
|
|
467
472
|
tag?: string | undefined;
|
|
468
473
|
hidden?: boolean | undefined;
|
|
469
474
|
root?: string | undefined;
|
|
@@ -481,6 +486,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
481
486
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
487
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
488
|
} | undefined;
|
|
489
|
+
public?: boolean | undefined;
|
|
484
490
|
tag?: string | undefined;
|
|
485
491
|
hidden?: boolean | undefined;
|
|
486
492
|
root?: string | undefined;
|
|
@@ -499,6 +505,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
499
505
|
library?: "fontawesome" | "lucide" | undefined;
|
|
500
506
|
}>]>>;
|
|
501
507
|
group: z.ZodString;
|
|
508
|
+
public: z.ZodOptional<z.ZodBoolean>;
|
|
502
509
|
tag: z.ZodOptional<z.ZodString>;
|
|
503
510
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
504
511
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -511,6 +518,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
511
518
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
512
519
|
library?: "fontawesome" | "lucide" | undefined;
|
|
513
520
|
} | undefined;
|
|
521
|
+
public?: boolean | undefined;
|
|
514
522
|
tag?: string | undefined;
|
|
515
523
|
hidden?: boolean | undefined;
|
|
516
524
|
root?: string | undefined;
|
|
@@ -522,6 +530,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
522
530
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
523
531
|
library?: "fontawesome" | "lucide" | undefined;
|
|
524
532
|
} | undefined;
|
|
533
|
+
public?: boolean | undefined;
|
|
525
534
|
tag?: string | undefined;
|
|
526
535
|
hidden?: boolean | undefined;
|
|
527
536
|
root?: string | undefined;
|
|
@@ -541,6 +550,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
541
550
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
542
551
|
library?: "fontawesome" | "lucide" | undefined;
|
|
543
552
|
} | undefined;
|
|
553
|
+
public?: boolean | undefined;
|
|
544
554
|
tag?: string | undefined;
|
|
545
555
|
hidden?: boolean | undefined;
|
|
546
556
|
root?: string | undefined;
|
|
@@ -558,6 +568,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
558
568
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
559
569
|
library?: "fontawesome" | "lucide" | undefined;
|
|
560
570
|
} | undefined;
|
|
571
|
+
public?: boolean | undefined;
|
|
561
572
|
tag?: string | undefined;
|
|
562
573
|
hidden?: boolean | undefined;
|
|
563
574
|
root?: string | undefined;
|
|
@@ -569,6 +580,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
569
580
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
570
581
|
library?: "fontawesome" | "lucide" | undefined;
|
|
571
582
|
} | undefined;
|
|
583
|
+
public?: boolean | undefined;
|
|
572
584
|
tag?: string | undefined;
|
|
573
585
|
hidden?: boolean | undefined;
|
|
574
586
|
root?: string | undefined;
|
|
@@ -589,6 +601,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
589
601
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
590
602
|
library?: "fontawesome" | "lucide" | undefined;
|
|
591
603
|
} | undefined;
|
|
604
|
+
public?: boolean | undefined;
|
|
592
605
|
tag?: string | undefined;
|
|
593
606
|
hidden?: boolean | undefined;
|
|
594
607
|
root?: string | undefined;
|
|
@@ -606,6 +619,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
606
619
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
607
620
|
library?: "fontawesome" | "lucide" | undefined;
|
|
608
621
|
} | undefined;
|
|
622
|
+
public?: boolean | undefined;
|
|
609
623
|
tag?: string | undefined;
|
|
610
624
|
hidden?: boolean | undefined;
|
|
611
625
|
root?: string | undefined;
|
|
@@ -617,6 +631,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
617
631
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
618
632
|
library?: "fontawesome" | "lucide" | undefined;
|
|
619
633
|
} | undefined;
|
|
634
|
+
public?: boolean | undefined;
|
|
620
635
|
tag?: string | undefined;
|
|
621
636
|
hidden?: boolean | undefined;
|
|
622
637
|
root?: string | undefined;
|
|
@@ -1360,6 +1375,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1360
1375
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1361
1376
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1362
1377
|
} | undefined;
|
|
1378
|
+
public?: boolean | undefined;
|
|
1363
1379
|
tag?: string | undefined;
|
|
1364
1380
|
hidden?: boolean | undefined;
|
|
1365
1381
|
root?: string | undefined;
|
|
@@ -1377,6 +1393,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1377
1393
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1378
1394
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1379
1395
|
} | undefined;
|
|
1396
|
+
public?: boolean | undefined;
|
|
1380
1397
|
tag?: string | undefined;
|
|
1381
1398
|
hidden?: boolean | undefined;
|
|
1382
1399
|
root?: string | undefined;
|
|
@@ -1388,6 +1405,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1388
1405
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1389
1406
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1390
1407
|
} | undefined;
|
|
1408
|
+
public?: boolean | undefined;
|
|
1391
1409
|
tag?: string | undefined;
|
|
1392
1410
|
hidden?: boolean | undefined;
|
|
1393
1411
|
root?: string | undefined;
|
|
@@ -1426,6 +1444,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1426
1444
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1427
1445
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1428
1446
|
} | undefined;
|
|
1447
|
+
public?: boolean | undefined;
|
|
1429
1448
|
tag?: string | undefined;
|
|
1430
1449
|
hidden?: boolean | undefined;
|
|
1431
1450
|
root?: string | undefined;
|
|
@@ -1443,6 +1462,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1443
1462
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1444
1463
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1445
1464
|
} | undefined;
|
|
1465
|
+
public?: boolean | undefined;
|
|
1446
1466
|
tag?: string | undefined;
|
|
1447
1467
|
hidden?: boolean | undefined;
|
|
1448
1468
|
root?: string | undefined;
|
|
@@ -1454,6 +1474,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1454
1474
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1455
1475
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1456
1476
|
} | undefined;
|
|
1477
|
+
public?: boolean | undefined;
|
|
1457
1478
|
tag?: string | undefined;
|
|
1458
1479
|
hidden?: boolean | undefined;
|
|
1459
1480
|
root?: string | undefined;
|
|
@@ -1721,6 +1742,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1721
1742
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1722
1743
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1723
1744
|
} | undefined;
|
|
1745
|
+
public?: boolean | undefined;
|
|
1724
1746
|
tag?: string | undefined;
|
|
1725
1747
|
hidden?: boolean | undefined;
|
|
1726
1748
|
root?: string | undefined;
|
|
@@ -1738,6 +1760,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1738
1760
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1739
1761
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1740
1762
|
} | undefined;
|
|
1763
|
+
public?: boolean | undefined;
|
|
1741
1764
|
tag?: string | undefined;
|
|
1742
1765
|
hidden?: boolean | undefined;
|
|
1743
1766
|
root?: string | undefined;
|
|
@@ -1749,6 +1772,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1749
1772
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1750
1773
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1751
1774
|
} | undefined;
|
|
1775
|
+
public?: boolean | undefined;
|
|
1752
1776
|
tag?: string | undefined;
|
|
1753
1777
|
hidden?: boolean | undefined;
|
|
1754
1778
|
root?: string | undefined;
|
|
@@ -1787,6 +1811,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1787
1811
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1788
1812
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1789
1813
|
} | undefined;
|
|
1814
|
+
public?: boolean | undefined;
|
|
1790
1815
|
tag?: string | undefined;
|
|
1791
1816
|
hidden?: boolean | undefined;
|
|
1792
1817
|
root?: string | undefined;
|
|
@@ -1804,6 +1829,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1804
1829
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1805
1830
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1806
1831
|
} | undefined;
|
|
1832
|
+
public?: boolean | undefined;
|
|
1807
1833
|
tag?: string | undefined;
|
|
1808
1834
|
hidden?: boolean | undefined;
|
|
1809
1835
|
root?: string | undefined;
|
|
@@ -1815,6 +1841,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1815
1841
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1816
1842
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1817
1843
|
} | undefined;
|
|
1844
|
+
public?: boolean | undefined;
|
|
1818
1845
|
tag?: string | undefined;
|
|
1819
1846
|
hidden?: boolean | undefined;
|
|
1820
1847
|
root?: string | undefined;
|