@mintlify/validation 0.1.376 → 0.1.377
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/v2/index.d.ts +301 -0
- package/dist/mint-config/schemas/v2/properties/navbar.d.ts +33 -0
- package/dist/mint-config/schemas/v2/properties/navbar.js +2 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +43 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +33 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +43 -0
- package/dist/mint-config/validateConfig.d.ts +70 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -225,13 +225,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
225
225
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
226
226
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
227
227
|
label: z.ZodString;
|
|
228
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
229
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
230
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
231
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
232
|
+
}, "strip", z.ZodTypeAny, {
|
|
233
|
+
name: string;
|
|
234
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
235
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
236
|
+
}, {
|
|
237
|
+
name: string;
|
|
238
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
239
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
240
|
+
}>]>>;
|
|
228
241
|
href: z.ZodString;
|
|
229
242
|
}, "strip", z.ZodTypeAny, {
|
|
230
243
|
href: string;
|
|
231
244
|
label: string;
|
|
245
|
+
icon?: string | {
|
|
246
|
+
name: string;
|
|
247
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
248
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
249
|
+
} | undefined;
|
|
232
250
|
}, {
|
|
233
251
|
href: string;
|
|
234
252
|
label: string;
|
|
253
|
+
icon?: string | {
|
|
254
|
+
name: string;
|
|
255
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
256
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
257
|
+
} | undefined;
|
|
235
258
|
}>, "many">>;
|
|
236
259
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
237
260
|
type: z.ZodLiteral<"button">;
|
|
@@ -259,6 +282,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
259
282
|
links?: {
|
|
260
283
|
href: string;
|
|
261
284
|
label: string;
|
|
285
|
+
icon?: string | {
|
|
286
|
+
name: string;
|
|
287
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
288
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
289
|
+
} | undefined;
|
|
262
290
|
}[] | undefined;
|
|
263
291
|
primary?: {
|
|
264
292
|
type: "button";
|
|
@@ -272,6 +300,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
272
300
|
links?: {
|
|
273
301
|
href: string;
|
|
274
302
|
label: string;
|
|
303
|
+
icon?: string | {
|
|
304
|
+
name: string;
|
|
305
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
306
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
307
|
+
} | undefined;
|
|
275
308
|
}[] | undefined;
|
|
276
309
|
primary?: {
|
|
277
310
|
type: "button";
|
|
@@ -1291,6 +1324,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1291
1324
|
links?: {
|
|
1292
1325
|
href: string;
|
|
1293
1326
|
label: string;
|
|
1327
|
+
icon?: string | {
|
|
1328
|
+
name: string;
|
|
1329
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1330
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1331
|
+
} | undefined;
|
|
1294
1332
|
}[] | undefined;
|
|
1295
1333
|
primary?: {
|
|
1296
1334
|
type: "button";
|
|
@@ -1617,6 +1655,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1617
1655
|
links?: {
|
|
1618
1656
|
href: string;
|
|
1619
1657
|
label: string;
|
|
1658
|
+
icon?: string | {
|
|
1659
|
+
name: string;
|
|
1660
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1661
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1662
|
+
} | undefined;
|
|
1620
1663
|
}[] | undefined;
|
|
1621
1664
|
primary?: {
|
|
1622
1665
|
type: "button";
|
|
@@ -1974,13 +2017,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
1974
2017
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
1975
2018
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1976
2019
|
label: z.ZodString;
|
|
2020
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
2021
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
2022
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
2023
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
2024
|
+
}, "strip", z.ZodTypeAny, {
|
|
2025
|
+
name: string;
|
|
2026
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2027
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2028
|
+
}, {
|
|
2029
|
+
name: string;
|
|
2030
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2031
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2032
|
+
}>]>>;
|
|
1977
2033
|
href: z.ZodString;
|
|
1978
2034
|
}, "strip", z.ZodTypeAny, {
|
|
1979
2035
|
href: string;
|
|
1980
2036
|
label: string;
|
|
2037
|
+
icon?: string | {
|
|
2038
|
+
name: string;
|
|
2039
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2040
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2041
|
+
} | undefined;
|
|
1981
2042
|
}, {
|
|
1982
2043
|
href: string;
|
|
1983
2044
|
label: string;
|
|
2045
|
+
icon?: string | {
|
|
2046
|
+
name: string;
|
|
2047
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2048
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2049
|
+
} | undefined;
|
|
1984
2050
|
}>, "many">>;
|
|
1985
2051
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1986
2052
|
type: z.ZodLiteral<"button">;
|
|
@@ -2008,6 +2074,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2008
2074
|
links?: {
|
|
2009
2075
|
href: string;
|
|
2010
2076
|
label: string;
|
|
2077
|
+
icon?: string | {
|
|
2078
|
+
name: string;
|
|
2079
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2080
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2081
|
+
} | undefined;
|
|
2011
2082
|
}[] | undefined;
|
|
2012
2083
|
primary?: {
|
|
2013
2084
|
type: "button";
|
|
@@ -2021,6 +2092,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
2021
2092
|
links?: {
|
|
2022
2093
|
href: string;
|
|
2023
2094
|
label: string;
|
|
2095
|
+
icon?: string | {
|
|
2096
|
+
name: string;
|
|
2097
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
2098
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
2099
|
+
} | undefined;
|
|
2024
2100
|
}[] | undefined;
|
|
2025
2101
|
primary?: {
|
|
2026
2102
|
type: "button";
|
|
@@ -3040,6 +3116,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3040
3116
|
links?: {
|
|
3041
3117
|
href: string;
|
|
3042
3118
|
label: string;
|
|
3119
|
+
icon?: string | {
|
|
3120
|
+
name: string;
|
|
3121
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3122
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3123
|
+
} | undefined;
|
|
3043
3124
|
}[] | undefined;
|
|
3044
3125
|
primary?: {
|
|
3045
3126
|
type: "button";
|
|
@@ -3366,6 +3447,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3366
3447
|
links?: {
|
|
3367
3448
|
href: string;
|
|
3368
3449
|
label: string;
|
|
3450
|
+
icon?: string | {
|
|
3451
|
+
name: string;
|
|
3452
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3453
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3454
|
+
} | undefined;
|
|
3369
3455
|
}[] | undefined;
|
|
3370
3456
|
primary?: {
|
|
3371
3457
|
type: "button";
|
|
@@ -3723,13 +3809,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3723
3809
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
3724
3810
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3725
3811
|
label: z.ZodString;
|
|
3812
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
3813
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
3814
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
3815
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
3816
|
+
}, "strip", z.ZodTypeAny, {
|
|
3817
|
+
name: string;
|
|
3818
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3819
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3820
|
+
}, {
|
|
3821
|
+
name: string;
|
|
3822
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3823
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3824
|
+
}>]>>;
|
|
3726
3825
|
href: z.ZodString;
|
|
3727
3826
|
}, "strip", z.ZodTypeAny, {
|
|
3728
3827
|
href: string;
|
|
3729
3828
|
label: string;
|
|
3829
|
+
icon?: string | {
|
|
3830
|
+
name: string;
|
|
3831
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3832
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3833
|
+
} | undefined;
|
|
3730
3834
|
}, {
|
|
3731
3835
|
href: string;
|
|
3732
3836
|
label: string;
|
|
3837
|
+
icon?: string | {
|
|
3838
|
+
name: string;
|
|
3839
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3840
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3841
|
+
} | undefined;
|
|
3733
3842
|
}>, "many">>;
|
|
3734
3843
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3735
3844
|
type: z.ZodLiteral<"button">;
|
|
@@ -3757,6 +3866,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3757
3866
|
links?: {
|
|
3758
3867
|
href: string;
|
|
3759
3868
|
label: string;
|
|
3869
|
+
icon?: string | {
|
|
3870
|
+
name: string;
|
|
3871
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3872
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3873
|
+
} | undefined;
|
|
3760
3874
|
}[] | undefined;
|
|
3761
3875
|
primary?: {
|
|
3762
3876
|
type: "button";
|
|
@@ -3770,6 +3884,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
3770
3884
|
links?: {
|
|
3771
3885
|
href: string;
|
|
3772
3886
|
label: string;
|
|
3887
|
+
icon?: string | {
|
|
3888
|
+
name: string;
|
|
3889
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
3890
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
3891
|
+
} | undefined;
|
|
3773
3892
|
}[] | undefined;
|
|
3774
3893
|
primary?: {
|
|
3775
3894
|
type: "button";
|
|
@@ -4789,6 +4908,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
4789
4908
|
links?: {
|
|
4790
4909
|
href: string;
|
|
4791
4910
|
label: string;
|
|
4911
|
+
icon?: string | {
|
|
4912
|
+
name: string;
|
|
4913
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
4914
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
4915
|
+
} | undefined;
|
|
4792
4916
|
}[] | undefined;
|
|
4793
4917
|
primary?: {
|
|
4794
4918
|
type: "button";
|
|
@@ -5115,6 +5239,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5115
5239
|
links?: {
|
|
5116
5240
|
href: string;
|
|
5117
5241
|
label: string;
|
|
5242
|
+
icon?: string | {
|
|
5243
|
+
name: string;
|
|
5244
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5245
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5246
|
+
} | undefined;
|
|
5118
5247
|
}[] | undefined;
|
|
5119
5248
|
primary?: {
|
|
5120
5249
|
type: "button";
|
|
@@ -5472,13 +5601,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5472
5601
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
5473
5602
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5474
5603
|
label: z.ZodString;
|
|
5604
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
5605
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
5606
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
5607
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
5608
|
+
}, "strip", z.ZodTypeAny, {
|
|
5609
|
+
name: string;
|
|
5610
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5611
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5612
|
+
}, {
|
|
5613
|
+
name: string;
|
|
5614
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5615
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5616
|
+
}>]>>;
|
|
5475
5617
|
href: z.ZodString;
|
|
5476
5618
|
}, "strip", z.ZodTypeAny, {
|
|
5477
5619
|
href: string;
|
|
5478
5620
|
label: string;
|
|
5621
|
+
icon?: string | {
|
|
5622
|
+
name: string;
|
|
5623
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5624
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5625
|
+
} | undefined;
|
|
5479
5626
|
}, {
|
|
5480
5627
|
href: string;
|
|
5481
5628
|
label: string;
|
|
5629
|
+
icon?: string | {
|
|
5630
|
+
name: string;
|
|
5631
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5632
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5633
|
+
} | undefined;
|
|
5482
5634
|
}>, "many">>;
|
|
5483
5635
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5484
5636
|
type: z.ZodLiteral<"button">;
|
|
@@ -5506,6 +5658,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5506
5658
|
links?: {
|
|
5507
5659
|
href: string;
|
|
5508
5660
|
label: string;
|
|
5661
|
+
icon?: string | {
|
|
5662
|
+
name: string;
|
|
5663
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5664
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5665
|
+
} | undefined;
|
|
5509
5666
|
}[] | undefined;
|
|
5510
5667
|
primary?: {
|
|
5511
5668
|
type: "button";
|
|
@@ -5519,6 +5676,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
5519
5676
|
links?: {
|
|
5520
5677
|
href: string;
|
|
5521
5678
|
label: string;
|
|
5679
|
+
icon?: string | {
|
|
5680
|
+
name: string;
|
|
5681
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
5682
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
5683
|
+
} | undefined;
|
|
5522
5684
|
}[] | undefined;
|
|
5523
5685
|
primary?: {
|
|
5524
5686
|
type: "button";
|
|
@@ -6538,6 +6700,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6538
6700
|
links?: {
|
|
6539
6701
|
href: string;
|
|
6540
6702
|
label: string;
|
|
6703
|
+
icon?: string | {
|
|
6704
|
+
name: string;
|
|
6705
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
6706
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
6707
|
+
} | undefined;
|
|
6541
6708
|
}[] | undefined;
|
|
6542
6709
|
primary?: {
|
|
6543
6710
|
type: "button";
|
|
@@ -6864,6 +7031,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
6864
7031
|
links?: {
|
|
6865
7032
|
href: string;
|
|
6866
7033
|
label: string;
|
|
7034
|
+
icon?: string | {
|
|
7035
|
+
name: string;
|
|
7036
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7037
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7038
|
+
} | undefined;
|
|
6867
7039
|
}[] | undefined;
|
|
6868
7040
|
primary?: {
|
|
6869
7041
|
type: "button";
|
|
@@ -7221,13 +7393,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7221
7393
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
7222
7394
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7223
7395
|
label: z.ZodString;
|
|
7396
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
7397
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
7398
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
7399
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
7400
|
+
}, "strip", z.ZodTypeAny, {
|
|
7401
|
+
name: string;
|
|
7402
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7403
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7404
|
+
}, {
|
|
7405
|
+
name: string;
|
|
7406
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7407
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7408
|
+
}>]>>;
|
|
7224
7409
|
href: z.ZodString;
|
|
7225
7410
|
}, "strip", z.ZodTypeAny, {
|
|
7226
7411
|
href: string;
|
|
7227
7412
|
label: string;
|
|
7413
|
+
icon?: string | {
|
|
7414
|
+
name: string;
|
|
7415
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7416
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7417
|
+
} | undefined;
|
|
7228
7418
|
}, {
|
|
7229
7419
|
href: string;
|
|
7230
7420
|
label: string;
|
|
7421
|
+
icon?: string | {
|
|
7422
|
+
name: string;
|
|
7423
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7424
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7425
|
+
} | undefined;
|
|
7231
7426
|
}>, "many">>;
|
|
7232
7427
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7233
7428
|
type: z.ZodLiteral<"button">;
|
|
@@ -7255,6 +7450,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7255
7450
|
links?: {
|
|
7256
7451
|
href: string;
|
|
7257
7452
|
label: string;
|
|
7453
|
+
icon?: string | {
|
|
7454
|
+
name: string;
|
|
7455
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7456
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7457
|
+
} | undefined;
|
|
7258
7458
|
}[] | undefined;
|
|
7259
7459
|
primary?: {
|
|
7260
7460
|
type: "button";
|
|
@@ -7268,6 +7468,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
7268
7468
|
links?: {
|
|
7269
7469
|
href: string;
|
|
7270
7470
|
label: string;
|
|
7471
|
+
icon?: string | {
|
|
7472
|
+
name: string;
|
|
7473
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
7474
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
7475
|
+
} | undefined;
|
|
7271
7476
|
}[] | undefined;
|
|
7272
7477
|
primary?: {
|
|
7273
7478
|
type: "button";
|
|
@@ -8287,6 +8492,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8287
8492
|
links?: {
|
|
8288
8493
|
href: string;
|
|
8289
8494
|
label: string;
|
|
8495
|
+
icon?: string | {
|
|
8496
|
+
name: string;
|
|
8497
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8498
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8499
|
+
} | undefined;
|
|
8290
8500
|
}[] | undefined;
|
|
8291
8501
|
primary?: {
|
|
8292
8502
|
type: "button";
|
|
@@ -8613,6 +8823,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8613
8823
|
links?: {
|
|
8614
8824
|
href: string;
|
|
8615
8825
|
label: string;
|
|
8826
|
+
icon?: string | {
|
|
8827
|
+
name: string;
|
|
8828
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
8829
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
8830
|
+
} | undefined;
|
|
8616
8831
|
}[] | undefined;
|
|
8617
8832
|
primary?: {
|
|
8618
8833
|
type: "button";
|
|
@@ -8970,13 +9185,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
8970
9185
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
8971
9186
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8972
9187
|
label: z.ZodString;
|
|
9188
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
9189
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
9190
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
9191
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
9192
|
+
}, "strip", z.ZodTypeAny, {
|
|
9193
|
+
name: string;
|
|
9194
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9195
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9196
|
+
}, {
|
|
9197
|
+
name: string;
|
|
9198
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9199
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9200
|
+
}>]>>;
|
|
8973
9201
|
href: z.ZodString;
|
|
8974
9202
|
}, "strip", z.ZodTypeAny, {
|
|
8975
9203
|
href: string;
|
|
8976
9204
|
label: string;
|
|
9205
|
+
icon?: string | {
|
|
9206
|
+
name: string;
|
|
9207
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9208
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9209
|
+
} | undefined;
|
|
8977
9210
|
}, {
|
|
8978
9211
|
href: string;
|
|
8979
9212
|
label: string;
|
|
9213
|
+
icon?: string | {
|
|
9214
|
+
name: string;
|
|
9215
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9216
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9217
|
+
} | undefined;
|
|
8980
9218
|
}>, "many">>;
|
|
8981
9219
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8982
9220
|
type: z.ZodLiteral<"button">;
|
|
@@ -9004,6 +9242,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9004
9242
|
links?: {
|
|
9005
9243
|
href: string;
|
|
9006
9244
|
label: string;
|
|
9245
|
+
icon?: string | {
|
|
9246
|
+
name: string;
|
|
9247
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9248
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9249
|
+
} | undefined;
|
|
9007
9250
|
}[] | undefined;
|
|
9008
9251
|
primary?: {
|
|
9009
9252
|
type: "button";
|
|
@@ -9017,6 +9260,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
9017
9260
|
links?: {
|
|
9018
9261
|
href: string;
|
|
9019
9262
|
label: string;
|
|
9263
|
+
icon?: string | {
|
|
9264
|
+
name: string;
|
|
9265
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
9266
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
9267
|
+
} | undefined;
|
|
9020
9268
|
}[] | undefined;
|
|
9021
9269
|
primary?: {
|
|
9022
9270
|
type: "button";
|
|
@@ -10036,6 +10284,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10036
10284
|
links?: {
|
|
10037
10285
|
href: string;
|
|
10038
10286
|
label: string;
|
|
10287
|
+
icon?: string | {
|
|
10288
|
+
name: string;
|
|
10289
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10290
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10291
|
+
} | undefined;
|
|
10039
10292
|
}[] | undefined;
|
|
10040
10293
|
primary?: {
|
|
10041
10294
|
type: "button";
|
|
@@ -10362,6 +10615,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10362
10615
|
links?: {
|
|
10363
10616
|
href: string;
|
|
10364
10617
|
label: string;
|
|
10618
|
+
icon?: string | {
|
|
10619
|
+
name: string;
|
|
10620
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10621
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10622
|
+
} | undefined;
|
|
10365
10623
|
}[] | undefined;
|
|
10366
10624
|
primary?: {
|
|
10367
10625
|
type: "button";
|
|
@@ -10719,13 +10977,36 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10719
10977
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
10720
10978
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10721
10979
|
label: z.ZodString;
|
|
10980
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
10981
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
10982
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
10983
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
10984
|
+
}, "strip", z.ZodTypeAny, {
|
|
10985
|
+
name: string;
|
|
10986
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10987
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10988
|
+
}, {
|
|
10989
|
+
name: string;
|
|
10990
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
10991
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
10992
|
+
}>]>>;
|
|
10722
10993
|
href: z.ZodString;
|
|
10723
10994
|
}, "strip", z.ZodTypeAny, {
|
|
10724
10995
|
href: string;
|
|
10725
10996
|
label: string;
|
|
10997
|
+
icon?: string | {
|
|
10998
|
+
name: string;
|
|
10999
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11000
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11001
|
+
} | undefined;
|
|
10726
11002
|
}, {
|
|
10727
11003
|
href: string;
|
|
10728
11004
|
label: string;
|
|
11005
|
+
icon?: string | {
|
|
11006
|
+
name: string;
|
|
11007
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11008
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11009
|
+
} | undefined;
|
|
10729
11010
|
}>, "many">>;
|
|
10730
11011
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10731
11012
|
type: z.ZodLiteral<"button">;
|
|
@@ -10753,6 +11034,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10753
11034
|
links?: {
|
|
10754
11035
|
href: string;
|
|
10755
11036
|
label: string;
|
|
11037
|
+
icon?: string | {
|
|
11038
|
+
name: string;
|
|
11039
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11040
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11041
|
+
} | undefined;
|
|
10756
11042
|
}[] | undefined;
|
|
10757
11043
|
primary?: {
|
|
10758
11044
|
type: "button";
|
|
@@ -10766,6 +11052,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
10766
11052
|
links?: {
|
|
10767
11053
|
href: string;
|
|
10768
11054
|
label: string;
|
|
11055
|
+
icon?: string | {
|
|
11056
|
+
name: string;
|
|
11057
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
11058
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
11059
|
+
} | undefined;
|
|
10769
11060
|
}[] | undefined;
|
|
10770
11061
|
primary?: {
|
|
10771
11062
|
type: "button";
|
|
@@ -11785,6 +12076,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
11785
12076
|
links?: {
|
|
11786
12077
|
href: string;
|
|
11787
12078
|
label: string;
|
|
12079
|
+
icon?: string | {
|
|
12080
|
+
name: string;
|
|
12081
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12082
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
12083
|
+
} | undefined;
|
|
11788
12084
|
}[] | undefined;
|
|
11789
12085
|
primary?: {
|
|
11790
12086
|
type: "button";
|
|
@@ -12111,6 +12407,11 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
|
|
|
12111
12407
|
links?: {
|
|
12112
12408
|
href: string;
|
|
12113
12409
|
label: string;
|
|
12410
|
+
icon?: string | {
|
|
12411
|
+
name: string;
|
|
12412
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
12413
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
12414
|
+
} | undefined;
|
|
12114
12415
|
}[] | undefined;
|
|
12115
12416
|
primary?: {
|
|
12116
12417
|
type: "button";
|
|
@@ -24,13 +24,36 @@ export declare const primarySchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
24
24
|
export declare const navbarSchema: z.ZodObject<{
|
|
25
25
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
26
26
|
label: z.ZodString;
|
|
27
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
28
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
29
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
30
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
name: string;
|
|
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;
|
|
35
|
+
}, {
|
|
36
|
+
name: string;
|
|
37
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
38
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
39
|
+
}>]>>;
|
|
27
40
|
href: z.ZodString;
|
|
28
41
|
}, "strip", z.ZodTypeAny, {
|
|
29
42
|
href: string;
|
|
30
43
|
label: string;
|
|
44
|
+
icon?: string | {
|
|
45
|
+
name: string;
|
|
46
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
47
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
48
|
+
} | undefined;
|
|
31
49
|
}, {
|
|
32
50
|
href: string;
|
|
33
51
|
label: string;
|
|
52
|
+
icon?: string | {
|
|
53
|
+
name: string;
|
|
54
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
55
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
56
|
+
} | undefined;
|
|
34
57
|
}>, "many">>;
|
|
35
58
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
36
59
|
type: z.ZodLiteral<"button">;
|
|
@@ -58,6 +81,11 @@ export declare const navbarSchema: z.ZodObject<{
|
|
|
58
81
|
links?: {
|
|
59
82
|
href: string;
|
|
60
83
|
label: string;
|
|
84
|
+
icon?: string | {
|
|
85
|
+
name: string;
|
|
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;
|
|
88
|
+
} | undefined;
|
|
61
89
|
}[] | undefined;
|
|
62
90
|
primary?: {
|
|
63
91
|
type: "button";
|
|
@@ -71,6 +99,11 @@ export declare const navbarSchema: z.ZodObject<{
|
|
|
71
99
|
links?: {
|
|
72
100
|
href: string;
|
|
73
101
|
label: string;
|
|
102
|
+
icon?: string | {
|
|
103
|
+
name: string;
|
|
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;
|
|
106
|
+
} | undefined;
|
|
74
107
|
}[] | undefined;
|
|
75
108
|
primary?: {
|
|
76
109
|
type: "button";
|