@mintlify/validation 0.1.319 → 0.1.321
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/openapi/OpenApiToEndpointConverter.js +3 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -5,12 +5,15 @@ export declare const baseTabSchema: 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
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
16
19
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18,6 +21,7 @@ export declare const baseTabSchema: 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
|
}, {
|
|
@@ -25,6 +29,7 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
25
29
|
icon?: string | {
|
|
26
30
|
name: string;
|
|
27
31
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
32
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
28
33
|
} | undefined;
|
|
29
34
|
hidden?: boolean | undefined;
|
|
30
35
|
}>;
|
|
@@ -33,12 +38,15 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
33
38
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
34
39
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
35
40
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
41
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
36
42
|
}, "strip", z.ZodTypeAny, {
|
|
37
43
|
name: string;
|
|
38
44
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
45
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
39
46
|
}, {
|
|
40
47
|
name: string;
|
|
41
48
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
49
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
42
50
|
}>]>>;
|
|
43
51
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
44
52
|
tab: z.ZodString;
|
|
@@ -49,6 +57,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
49
57
|
icon?: string | {
|
|
50
58
|
name: string;
|
|
51
59
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
60
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
52
61
|
} | undefined;
|
|
53
62
|
hidden?: boolean | undefined;
|
|
54
63
|
}, {
|
|
@@ -57,6 +66,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
57
66
|
icon?: string | {
|
|
58
67
|
name: string;
|
|
59
68
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
69
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
60
70
|
} | undefined;
|
|
61
71
|
hidden?: boolean | undefined;
|
|
62
72
|
}>;
|
|
@@ -2,11 +2,14 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const iconSchema: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3
3
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
4
4
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5
6
|
}, "strip", z.ZodTypeAny, {
|
|
6
7
|
name: string;
|
|
7
8
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8
10
|
}, {
|
|
9
11
|
name: string;
|
|
10
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;
|
|
11
14
|
}>]>;
|
|
12
15
|
export type IconConfig = z.infer<typeof iconSchema>;
|
|
@@ -1,22 +1,17 @@
|
|
|
1
|
+
import { iconTypes, iconLibraries } from '@mintlify/models';
|
|
1
2
|
import { z } from 'zod';
|
|
2
|
-
const iconTypes = [
|
|
3
|
-
'brands',
|
|
4
|
-
'duotone',
|
|
5
|
-
'light',
|
|
6
|
-
'regular',
|
|
7
|
-
'sharp-duotone-solid',
|
|
8
|
-
'sharp-light',
|
|
9
|
-
'sharp-regular',
|
|
10
|
-
'sharp-solid',
|
|
11
|
-
'sharp-thin',
|
|
12
|
-
'solid',
|
|
13
|
-
'thin',
|
|
14
|
-
];
|
|
15
3
|
const iconNameSchema = z
|
|
16
4
|
.string({
|
|
17
|
-
invalid_type_error: 'Anchor icon must be the name of a Font Awesome icon.
|
|
5
|
+
invalid_type_error: 'Anchor icon must be the name of a Font Awesome or Lucide icon. Browse their libraries to see all the available icons: https://fontawesome.com/icons, https://lucide.dev/icons',
|
|
18
6
|
})
|
|
19
7
|
.refine((icon) => !icon.startsWith('fa-'), "Icon does not need to start with 'fa-'. Please delete 'fa-' and keep the rest of the icon name");
|
|
20
8
|
export const iconSchema = z
|
|
21
|
-
.union([
|
|
9
|
+
.union([
|
|
10
|
+
iconNameSchema,
|
|
11
|
+
z.object({
|
|
12
|
+
style: z.enum(iconTypes).optional(),
|
|
13
|
+
name: iconNameSchema,
|
|
14
|
+
library: z.enum(iconLibraries).optional(),
|
|
15
|
+
}),
|
|
16
|
+
])
|
|
22
17
|
.describe('The icon to be displayed in the section');
|
|
@@ -20,12 +20,15 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
20
20
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
21
21
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
22
22
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
23
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
23
24
|
}, "strip", z.ZodTypeAny, {
|
|
24
25
|
name: string;
|
|
25
26
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
27
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
26
28
|
}, {
|
|
27
29
|
name: string;
|
|
28
30
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
31
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
29
32
|
}>]>>;
|
|
30
33
|
tag: z.ZodOptional<z.ZodString>;
|
|
31
34
|
url: z.ZodOptional<z.ZodString>;
|
|
@@ -53,6 +56,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
53
56
|
icon?: string | {
|
|
54
57
|
name: string;
|
|
55
58
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
59
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
56
60
|
} | undefined;
|
|
57
61
|
tag?: string | undefined;
|
|
58
62
|
url?: string | undefined;
|
|
@@ -80,6 +84,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
80
84
|
icon?: string | {
|
|
81
85
|
name: string;
|
|
82
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;
|
|
83
88
|
} | undefined;
|
|
84
89
|
tag?: string | undefined;
|
|
85
90
|
url?: string | undefined;
|
|
@@ -313,12 +313,15 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
313
313
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
314
314
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
315
315
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
316
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
316
317
|
}, "strip", z.ZodTypeAny, {
|
|
317
318
|
name: string;
|
|
318
319
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
320
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
319
321
|
}, {
|
|
320
322
|
name: string;
|
|
321
323
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
324
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
322
325
|
}>]>>;
|
|
323
326
|
group: z.ZodString;
|
|
324
327
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -345,6 +348,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
345
348
|
icon?: string | {
|
|
346
349
|
name: string;
|
|
347
350
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
351
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
348
352
|
} | undefined;
|
|
349
353
|
hidden?: boolean | undefined;
|
|
350
354
|
root?: string | undefined;
|
|
@@ -360,6 +364,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
360
364
|
icon?: string | {
|
|
361
365
|
name: string;
|
|
362
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;
|
|
363
368
|
} | undefined;
|
|
364
369
|
hidden?: boolean | undefined;
|
|
365
370
|
root?: string | undefined;
|
|
@@ -367,12 +372,15 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
367
372
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
368
373
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
369
374
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
375
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
370
376
|
}, "strip", z.ZodTypeAny, {
|
|
371
377
|
name: string;
|
|
372
378
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
379
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
373
380
|
}, {
|
|
374
381
|
name: string;
|
|
375
382
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
383
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
376
384
|
}>]>>;
|
|
377
385
|
group: z.ZodString;
|
|
378
386
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -399,6 +407,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
399
407
|
icon?: string | {
|
|
400
408
|
name: string;
|
|
401
409
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
410
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
402
411
|
} | undefined;
|
|
403
412
|
hidden?: boolean | undefined;
|
|
404
413
|
root?: string | undefined;
|
|
@@ -414,6 +423,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
414
423
|
icon?: string | {
|
|
415
424
|
name: string;
|
|
416
425
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
426
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
417
427
|
} | undefined;
|
|
418
428
|
hidden?: boolean | undefined;
|
|
419
429
|
root?: string | undefined;
|
|
@@ -421,12 +431,15 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
421
431
|
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
422
432
|
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
423
433
|
name: z.ZodEffects<z.ZodString, string, string>;
|
|
434
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
424
435
|
}, "strip", z.ZodTypeAny, {
|
|
425
436
|
name: string;
|
|
426
437
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
438
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
427
439
|
}, {
|
|
428
440
|
name: string;
|
|
429
441
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
442
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
430
443
|
}>]>>;
|
|
431
444
|
group: z.ZodString;
|
|
432
445
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -438,6 +451,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
438
451
|
icon?: string | {
|
|
439
452
|
name: string;
|
|
440
453
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
454
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
441
455
|
} | undefined;
|
|
442
456
|
hidden?: boolean | undefined;
|
|
443
457
|
root?: string | undefined;
|
|
@@ -447,6 +461,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
447
461
|
icon?: string | {
|
|
448
462
|
name: string;
|
|
449
463
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
464
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
450
465
|
} | undefined;
|
|
451
466
|
hidden?: boolean | undefined;
|
|
452
467
|
root?: string | undefined;
|
|
@@ -464,6 +479,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
464
479
|
icon?: string | {
|
|
465
480
|
name: string;
|
|
466
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
467
483
|
} | undefined;
|
|
468
484
|
hidden?: boolean | undefined;
|
|
469
485
|
root?: string | undefined;
|
|
@@ -479,6 +495,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
479
495
|
icon?: string | {
|
|
480
496
|
name: string;
|
|
481
497
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
498
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
482
499
|
} | undefined;
|
|
483
500
|
hidden?: boolean | undefined;
|
|
484
501
|
root?: string | undefined;
|
|
@@ -488,6 +505,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
488
505
|
icon?: string | {
|
|
489
506
|
name: string;
|
|
490
507
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
508
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
491
509
|
} | undefined;
|
|
492
510
|
hidden?: boolean | undefined;
|
|
493
511
|
root?: string | undefined;
|
|
@@ -506,6 +524,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
506
524
|
icon?: string | {
|
|
507
525
|
name: string;
|
|
508
526
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
527
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
509
528
|
} | undefined;
|
|
510
529
|
hidden?: boolean | undefined;
|
|
511
530
|
root?: string | undefined;
|
|
@@ -521,6 +540,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
521
540
|
icon?: string | {
|
|
522
541
|
name: string;
|
|
523
542
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
543
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
524
544
|
} | undefined;
|
|
525
545
|
hidden?: boolean | undefined;
|
|
526
546
|
root?: string | undefined;
|
|
@@ -530,6 +550,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
530
550
|
icon?: string | {
|
|
531
551
|
name: string;
|
|
532
552
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
553
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
533
554
|
} | undefined;
|
|
534
555
|
hidden?: boolean | undefined;
|
|
535
556
|
root?: string | undefined;
|
|
@@ -714,11 +735,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
714
735
|
} | undefined;
|
|
715
736
|
}>]>>;
|
|
716
737
|
icons: z.ZodOptional<z.ZodObject<{
|
|
717
|
-
library: z.ZodEnum<["fontawesome"]>;
|
|
738
|
+
library: z.ZodEnum<["fontawesome", "lucide"]>;
|
|
718
739
|
}, "strip", z.ZodTypeAny, {
|
|
719
|
-
library: "fontawesome";
|
|
740
|
+
library: "fontawesome" | "lucide";
|
|
720
741
|
}, {
|
|
721
|
-
library: "fontawesome";
|
|
742
|
+
library: "fontawesome" | "lucide";
|
|
722
743
|
}>>;
|
|
723
744
|
styling: z.ZodOptional<z.ZodObject<{
|
|
724
745
|
eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
|
|
@@ -1070,6 +1091,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1070
1091
|
icon?: string | {
|
|
1071
1092
|
name: string;
|
|
1072
1093
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1094
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1073
1095
|
} | undefined;
|
|
1074
1096
|
hidden?: boolean | undefined;
|
|
1075
1097
|
root?: string | undefined;
|
|
@@ -1085,6 +1107,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1085
1107
|
icon?: string | {
|
|
1086
1108
|
name: string;
|
|
1087
1109
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1110
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1088
1111
|
} | undefined;
|
|
1089
1112
|
hidden?: boolean | undefined;
|
|
1090
1113
|
root?: string | undefined;
|
|
@@ -1094,6 +1117,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1094
1117
|
icon?: string | {
|
|
1095
1118
|
name: string;
|
|
1096
1119
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1120
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1097
1121
|
} | undefined;
|
|
1098
1122
|
hidden?: boolean | undefined;
|
|
1099
1123
|
root?: string | undefined;
|
|
@@ -1130,6 +1154,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1130
1154
|
icon?: string | {
|
|
1131
1155
|
name: string;
|
|
1132
1156
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1157
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1133
1158
|
} | undefined;
|
|
1134
1159
|
hidden?: boolean | undefined;
|
|
1135
1160
|
root?: string | undefined;
|
|
@@ -1145,6 +1170,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1145
1170
|
icon?: string | {
|
|
1146
1171
|
name: string;
|
|
1147
1172
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1173
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1148
1174
|
} | undefined;
|
|
1149
1175
|
hidden?: boolean | undefined;
|
|
1150
1176
|
root?: string | undefined;
|
|
@@ -1154,6 +1180,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1154
1180
|
icon?: string | {
|
|
1155
1181
|
name: string;
|
|
1156
1182
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1183
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1157
1184
|
} | undefined;
|
|
1158
1185
|
hidden?: boolean | undefined;
|
|
1159
1186
|
root?: string | undefined;
|
|
@@ -1263,7 +1290,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1263
1290
|
} | undefined;
|
|
1264
1291
|
} | undefined;
|
|
1265
1292
|
icons?: {
|
|
1266
|
-
library: "fontawesome";
|
|
1293
|
+
library: "fontawesome" | "lucide";
|
|
1267
1294
|
} | undefined;
|
|
1268
1295
|
styling?: {
|
|
1269
1296
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|
|
@@ -1377,6 +1404,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1377
1404
|
icon?: string | {
|
|
1378
1405
|
name: string;
|
|
1379
1406
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1407
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1380
1408
|
} | undefined;
|
|
1381
1409
|
hidden?: boolean | undefined;
|
|
1382
1410
|
root?: string | undefined;
|
|
@@ -1392,6 +1420,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1392
1420
|
icon?: string | {
|
|
1393
1421
|
name: string;
|
|
1394
1422
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1423
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1395
1424
|
} | undefined;
|
|
1396
1425
|
hidden?: boolean | undefined;
|
|
1397
1426
|
root?: string | undefined;
|
|
@@ -1401,6 +1430,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1401
1430
|
icon?: string | {
|
|
1402
1431
|
name: string;
|
|
1403
1432
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1433
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1404
1434
|
} | undefined;
|
|
1405
1435
|
hidden?: boolean | undefined;
|
|
1406
1436
|
root?: string | undefined;
|
|
@@ -1437,6 +1467,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1437
1467
|
icon?: string | {
|
|
1438
1468
|
name: string;
|
|
1439
1469
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1470
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1440
1471
|
} | undefined;
|
|
1441
1472
|
hidden?: boolean | undefined;
|
|
1442
1473
|
root?: string | undefined;
|
|
@@ -1452,6 +1483,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1452
1483
|
icon?: string | {
|
|
1453
1484
|
name: string;
|
|
1454
1485
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1486
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1455
1487
|
} | undefined;
|
|
1456
1488
|
hidden?: boolean | undefined;
|
|
1457
1489
|
root?: string | undefined;
|
|
@@ -1461,6 +1493,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1461
1493
|
icon?: string | {
|
|
1462
1494
|
name: string;
|
|
1463
1495
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1496
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1464
1497
|
} | undefined;
|
|
1465
1498
|
hidden?: boolean | undefined;
|
|
1466
1499
|
root?: string | undefined;
|
|
@@ -1571,7 +1604,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
|
|
|
1571
1604
|
} | undefined;
|
|
1572
1605
|
} | undefined;
|
|
1573
1606
|
icons?: {
|
|
1574
|
-
library: "fontawesome";
|
|
1607
|
+
library: "fontawesome" | "lucide";
|
|
1575
1608
|
} | undefined;
|
|
1576
1609
|
styling?: {
|
|
1577
1610
|
eyebrows?: "section" | "breadcrumbs" | undefined;
|