@mintlify/validation 0.1.376 → 0.1.378
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 +490 -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/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 +70 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +70 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +48 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +70 -0
- package/dist/mint-config/validateConfig.d.ts +154 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -223,13 +223,36 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -342,6 +375,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
342
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
343
376
|
}>]>>;
|
|
344
377
|
group: z.ZodString;
|
|
378
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
345
379
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
346
380
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
347
381
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -368,6 +402,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
368
402
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
369
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
370
404
|
} | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
371
406
|
hidden?: boolean | undefined;
|
|
372
407
|
root?: string | undefined;
|
|
373
408
|
}, {
|
|
@@ -384,6 +419,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
384
419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
385
420
|
library?: "fontawesome" | "lucide" | undefined;
|
|
386
421
|
} | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
387
423
|
hidden?: boolean | undefined;
|
|
388
424
|
root?: string | undefined;
|
|
389
425
|
}>, z.ZodObject<{
|
|
@@ -401,6 +437,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
401
437
|
library?: "fontawesome" | "lucide" | undefined;
|
|
402
438
|
}>]>>;
|
|
403
439
|
group: z.ZodString;
|
|
440
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
404
441
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
405
442
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
406
443
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -427,6 +464,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
427
464
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
428
465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
429
466
|
} | undefined;
|
|
467
|
+
tag?: string | undefined;
|
|
430
468
|
hidden?: boolean | undefined;
|
|
431
469
|
root?: string | undefined;
|
|
432
470
|
}, {
|
|
@@ -443,6 +481,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
443
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
444
482
|
library?: "fontawesome" | "lucide" | undefined;
|
|
445
483
|
} | undefined;
|
|
484
|
+
tag?: string | undefined;
|
|
446
485
|
hidden?: boolean | undefined;
|
|
447
486
|
root?: string | undefined;
|
|
448
487
|
}>, z.ZodObject<{
|
|
@@ -460,6 +499,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
460
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
461
500
|
}>]>>;
|
|
462
501
|
group: z.ZodString;
|
|
502
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
463
503
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
464
504
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
465
505
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -471,6 +511,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
471
511
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
472
512
|
library?: "fontawesome" | "lucide" | undefined;
|
|
473
513
|
} | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
474
515
|
hidden?: boolean | undefined;
|
|
475
516
|
root?: string | undefined;
|
|
476
517
|
}, {
|
|
@@ -481,6 +522,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
481
522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
524
|
} | undefined;
|
|
525
|
+
tag?: string | undefined;
|
|
484
526
|
hidden?: boolean | undefined;
|
|
485
527
|
root?: string | undefined;
|
|
486
528
|
}>]>, "many">;
|
|
@@ -499,6 +541,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
499
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
500
542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
501
543
|
} | undefined;
|
|
544
|
+
tag?: string | undefined;
|
|
502
545
|
hidden?: boolean | undefined;
|
|
503
546
|
root?: string | undefined;
|
|
504
547
|
} | {
|
|
@@ -515,6 +558,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
515
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
516
559
|
library?: "fontawesome" | "lucide" | undefined;
|
|
517
560
|
} | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
518
562
|
hidden?: boolean | undefined;
|
|
519
563
|
root?: string | undefined;
|
|
520
564
|
} | {
|
|
@@ -525,6 +569,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
525
569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
527
571
|
} | undefined;
|
|
572
|
+
tag?: string | undefined;
|
|
528
573
|
hidden?: boolean | undefined;
|
|
529
574
|
root?: string | undefined;
|
|
530
575
|
})[];
|
|
@@ -544,6 +589,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
544
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
545
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
546
591
|
} | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
547
593
|
hidden?: boolean | undefined;
|
|
548
594
|
root?: string | undefined;
|
|
549
595
|
} | {
|
|
@@ -560,6 +606,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
560
606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
561
607
|
library?: "fontawesome" | "lucide" | undefined;
|
|
562
608
|
} | undefined;
|
|
609
|
+
tag?: string | undefined;
|
|
563
610
|
hidden?: boolean | undefined;
|
|
564
611
|
root?: string | undefined;
|
|
565
612
|
} | {
|
|
@@ -570,6 +617,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
570
617
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
571
618
|
library?: "fontawesome" | "lucide" | undefined;
|
|
572
619
|
} | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
573
621
|
hidden?: boolean | undefined;
|
|
574
622
|
root?: string | undefined;
|
|
575
623
|
})[];
|
|
@@ -1135,6 +1183,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1135
1183
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1136
1184
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1137
1185
|
} | undefined;
|
|
1186
|
+
tag?: string | undefined;
|
|
1138
1187
|
hidden?: boolean | undefined;
|
|
1139
1188
|
root?: string | undefined;
|
|
1140
1189
|
} | {
|
|
@@ -1151,6 +1200,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1151
1200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1152
1201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1153
1202
|
} | undefined;
|
|
1203
|
+
tag?: string | undefined;
|
|
1154
1204
|
hidden?: boolean | undefined;
|
|
1155
1205
|
root?: string | undefined;
|
|
1156
1206
|
} | {
|
|
@@ -1161,6 +1211,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1161
1211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1162
1212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1163
1213
|
} | undefined;
|
|
1214
|
+
tag?: string | undefined;
|
|
1164
1215
|
hidden?: boolean | undefined;
|
|
1165
1216
|
root?: string | undefined;
|
|
1166
1217
|
})[];
|
|
@@ -1198,6 +1249,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1198
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1199
1250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1200
1251
|
} | undefined;
|
|
1252
|
+
tag?: string | undefined;
|
|
1201
1253
|
hidden?: boolean | undefined;
|
|
1202
1254
|
root?: string | undefined;
|
|
1203
1255
|
} | {
|
|
@@ -1214,6 +1266,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1214
1266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1215
1267
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1216
1268
|
} | undefined;
|
|
1269
|
+
tag?: string | undefined;
|
|
1217
1270
|
hidden?: boolean | undefined;
|
|
1218
1271
|
root?: string | undefined;
|
|
1219
1272
|
} | {
|
|
@@ -1224,6 +1277,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1224
1277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1225
1278
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1226
1279
|
} | undefined;
|
|
1280
|
+
tag?: string | undefined;
|
|
1227
1281
|
hidden?: boolean | undefined;
|
|
1228
1282
|
root?: string | undefined;
|
|
1229
1283
|
})[];
|
|
@@ -1289,6 +1343,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1289
1343
|
links?: {
|
|
1290
1344
|
href: string;
|
|
1291
1345
|
label: string;
|
|
1346
|
+
icon?: string | {
|
|
1347
|
+
name: string;
|
|
1348
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1349
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1350
|
+
} | undefined;
|
|
1292
1351
|
}[] | undefined;
|
|
1293
1352
|
primary?: {
|
|
1294
1353
|
type: "button";
|
|
@@ -1460,6 +1519,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1460
1519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1461
1520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1462
1521
|
} | undefined;
|
|
1522
|
+
tag?: string | undefined;
|
|
1463
1523
|
hidden?: boolean | undefined;
|
|
1464
1524
|
root?: string | undefined;
|
|
1465
1525
|
} | {
|
|
@@ -1476,6 +1536,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1476
1536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1477
1537
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1478
1538
|
} | undefined;
|
|
1539
|
+
tag?: string | undefined;
|
|
1479
1540
|
hidden?: boolean | undefined;
|
|
1480
1541
|
root?: string | undefined;
|
|
1481
1542
|
} | {
|
|
@@ -1486,6 +1547,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1486
1547
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1487
1548
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1488
1549
|
} | undefined;
|
|
1550
|
+
tag?: string | undefined;
|
|
1489
1551
|
hidden?: boolean | undefined;
|
|
1490
1552
|
root?: string | undefined;
|
|
1491
1553
|
})[];
|
|
@@ -1523,6 +1585,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1523
1585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1524
1586
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1525
1587
|
} | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1526
1589
|
hidden?: boolean | undefined;
|
|
1527
1590
|
root?: string | undefined;
|
|
1528
1591
|
} | {
|
|
@@ -1539,6 +1602,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1539
1602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1540
1603
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1541
1604
|
} | undefined;
|
|
1605
|
+
tag?: string | undefined;
|
|
1542
1606
|
hidden?: boolean | undefined;
|
|
1543
1607
|
root?: string | undefined;
|
|
1544
1608
|
} | {
|
|
@@ -1549,6 +1613,7 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1549
1613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1550
1614
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1551
1615
|
} | undefined;
|
|
1616
|
+
tag?: string | undefined;
|
|
1552
1617
|
hidden?: boolean | undefined;
|
|
1553
1618
|
root?: string | undefined;
|
|
1554
1619
|
})[];
|
|
@@ -1615,6 +1680,11 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1615
1680
|
links?: {
|
|
1616
1681
|
href: string;
|
|
1617
1682
|
label: string;
|
|
1683
|
+
icon?: string | {
|
|
1684
|
+
name: string;
|
|
1685
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1686
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1687
|
+
} | undefined;
|
|
1618
1688
|
}[] | undefined;
|
|
1619
1689
|
primary?: {
|
|
1620
1690
|
type: "button";
|
|
@@ -223,13 +223,36 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
223
223
|
navbar: z.ZodOptional<z.ZodObject<{
|
|
224
224
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
225
|
label: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
227
|
+
style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
228
|
+
name: z.ZodEffects<z.ZodString, string, string>;
|
|
229
|
+
library: z.ZodOptional<z.ZodEnum<["fontawesome", "lucide"]>>;
|
|
230
|
+
}, "strip", z.ZodTypeAny, {
|
|
231
|
+
name: string;
|
|
232
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
233
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
name: string;
|
|
236
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
237
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
238
|
+
}>]>>;
|
|
226
239
|
href: z.ZodString;
|
|
227
240
|
}, "strip", z.ZodTypeAny, {
|
|
228
241
|
href: string;
|
|
229
242
|
label: string;
|
|
243
|
+
icon?: string | {
|
|
244
|
+
name: string;
|
|
245
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
246
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
247
|
+
} | undefined;
|
|
230
248
|
}, {
|
|
231
249
|
href: string;
|
|
232
250
|
label: string;
|
|
251
|
+
icon?: string | {
|
|
252
|
+
name: string;
|
|
253
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
254
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
255
|
+
} | undefined;
|
|
233
256
|
}>, "many">>;
|
|
234
257
|
primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
235
258
|
type: z.ZodLiteral<"button">;
|
|
@@ -257,6 +280,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
257
280
|
links?: {
|
|
258
281
|
href: string;
|
|
259
282
|
label: string;
|
|
283
|
+
icon?: string | {
|
|
284
|
+
name: string;
|
|
285
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
287
|
+
} | undefined;
|
|
260
288
|
}[] | undefined;
|
|
261
289
|
primary?: {
|
|
262
290
|
type: "button";
|
|
@@ -270,6 +298,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
270
298
|
links?: {
|
|
271
299
|
href: string;
|
|
272
300
|
label: string;
|
|
301
|
+
icon?: string | {
|
|
302
|
+
name: string;
|
|
303
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
304
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
305
|
+
} | undefined;
|
|
273
306
|
}[] | undefined;
|
|
274
307
|
primary?: {
|
|
275
308
|
type: "button";
|
|
@@ -342,6 +375,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
342
375
|
library?: "fontawesome" | "lucide" | undefined;
|
|
343
376
|
}>]>>;
|
|
344
377
|
group: z.ZodString;
|
|
378
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
345
379
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
346
380
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
347
381
|
openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -368,6 +402,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
368
402
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
369
403
|
library?: "fontawesome" | "lucide" | undefined;
|
|
370
404
|
} | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
371
406
|
hidden?: boolean | undefined;
|
|
372
407
|
root?: string | undefined;
|
|
373
408
|
}, {
|
|
@@ -384,6 +419,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
384
419
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
385
420
|
library?: "fontawesome" | "lucide" | undefined;
|
|
386
421
|
} | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
387
423
|
hidden?: boolean | undefined;
|
|
388
424
|
root?: string | undefined;
|
|
389
425
|
}>, z.ZodObject<{
|
|
@@ -401,6 +437,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
401
437
|
library?: "fontawesome" | "lucide" | undefined;
|
|
402
438
|
}>]>>;
|
|
403
439
|
group: z.ZodString;
|
|
440
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
404
441
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
405
442
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
406
443
|
asyncapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
|
|
@@ -427,6 +464,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
427
464
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
428
465
|
library?: "fontawesome" | "lucide" | undefined;
|
|
429
466
|
} | undefined;
|
|
467
|
+
tag?: string | undefined;
|
|
430
468
|
hidden?: boolean | undefined;
|
|
431
469
|
root?: string | undefined;
|
|
432
470
|
}, {
|
|
@@ -443,6 +481,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
443
481
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
444
482
|
library?: "fontawesome" | "lucide" | undefined;
|
|
445
483
|
} | undefined;
|
|
484
|
+
tag?: string | undefined;
|
|
446
485
|
hidden?: boolean | undefined;
|
|
447
486
|
root?: string | undefined;
|
|
448
487
|
}>, z.ZodObject<{
|
|
@@ -460,6 +499,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
460
499
|
library?: "fontawesome" | "lucide" | undefined;
|
|
461
500
|
}>]>>;
|
|
462
501
|
group: z.ZodString;
|
|
502
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
463
503
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
464
504
|
root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
465
505
|
pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
|
|
@@ -471,6 +511,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
471
511
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
472
512
|
library?: "fontawesome" | "lucide" | undefined;
|
|
473
513
|
} | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
474
515
|
hidden?: boolean | undefined;
|
|
475
516
|
root?: string | undefined;
|
|
476
517
|
}, {
|
|
@@ -481,6 +522,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
481
522
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
482
523
|
library?: "fontawesome" | "lucide" | undefined;
|
|
483
524
|
} | undefined;
|
|
525
|
+
tag?: string | undefined;
|
|
484
526
|
hidden?: boolean | undefined;
|
|
485
527
|
root?: string | undefined;
|
|
486
528
|
}>]>, "many">;
|
|
@@ -499,6 +541,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
499
541
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
500
542
|
library?: "fontawesome" | "lucide" | undefined;
|
|
501
543
|
} | undefined;
|
|
544
|
+
tag?: string | undefined;
|
|
502
545
|
hidden?: boolean | undefined;
|
|
503
546
|
root?: string | undefined;
|
|
504
547
|
} | {
|
|
@@ -515,6 +558,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
515
558
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
516
559
|
library?: "fontawesome" | "lucide" | undefined;
|
|
517
560
|
} | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
518
562
|
hidden?: boolean | undefined;
|
|
519
563
|
root?: string | undefined;
|
|
520
564
|
} | {
|
|
@@ -525,6 +569,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
525
569
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
526
570
|
library?: "fontawesome" | "lucide" | undefined;
|
|
527
571
|
} | undefined;
|
|
572
|
+
tag?: string | undefined;
|
|
528
573
|
hidden?: boolean | undefined;
|
|
529
574
|
root?: string | undefined;
|
|
530
575
|
})[];
|
|
@@ -544,6 +589,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
544
589
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
545
590
|
library?: "fontawesome" | "lucide" | undefined;
|
|
546
591
|
} | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
547
593
|
hidden?: boolean | undefined;
|
|
548
594
|
root?: string | undefined;
|
|
549
595
|
} | {
|
|
@@ -560,6 +606,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
560
606
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
561
607
|
library?: "fontawesome" | "lucide" | undefined;
|
|
562
608
|
} | undefined;
|
|
609
|
+
tag?: string | undefined;
|
|
563
610
|
hidden?: boolean | undefined;
|
|
564
611
|
root?: string | undefined;
|
|
565
612
|
} | {
|
|
@@ -570,6 +617,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
570
617
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
571
618
|
library?: "fontawesome" | "lucide" | undefined;
|
|
572
619
|
} | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
573
621
|
hidden?: boolean | undefined;
|
|
574
622
|
root?: string | undefined;
|
|
575
623
|
})[];
|
|
@@ -1135,6 +1183,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1135
1183
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1136
1184
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1137
1185
|
} | undefined;
|
|
1186
|
+
tag?: string | undefined;
|
|
1138
1187
|
hidden?: boolean | undefined;
|
|
1139
1188
|
root?: string | undefined;
|
|
1140
1189
|
} | {
|
|
@@ -1151,6 +1200,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1151
1200
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1152
1201
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1153
1202
|
} | undefined;
|
|
1203
|
+
tag?: string | undefined;
|
|
1154
1204
|
hidden?: boolean | undefined;
|
|
1155
1205
|
root?: string | undefined;
|
|
1156
1206
|
} | {
|
|
@@ -1161,6 +1211,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1161
1211
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1162
1212
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1163
1213
|
} | undefined;
|
|
1214
|
+
tag?: string | undefined;
|
|
1164
1215
|
hidden?: boolean | undefined;
|
|
1165
1216
|
root?: string | undefined;
|
|
1166
1217
|
})[];
|
|
@@ -1198,6 +1249,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1198
1249
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1199
1250
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1200
1251
|
} | undefined;
|
|
1252
|
+
tag?: string | undefined;
|
|
1201
1253
|
hidden?: boolean | undefined;
|
|
1202
1254
|
root?: string | undefined;
|
|
1203
1255
|
} | {
|
|
@@ -1214,6 +1266,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1214
1266
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1215
1267
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1216
1268
|
} | undefined;
|
|
1269
|
+
tag?: string | undefined;
|
|
1217
1270
|
hidden?: boolean | undefined;
|
|
1218
1271
|
root?: string | undefined;
|
|
1219
1272
|
} | {
|
|
@@ -1224,6 +1277,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1224
1277
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1225
1278
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1226
1279
|
} | undefined;
|
|
1280
|
+
tag?: string | undefined;
|
|
1227
1281
|
hidden?: boolean | undefined;
|
|
1228
1282
|
root?: string | undefined;
|
|
1229
1283
|
})[];
|
|
@@ -1289,6 +1343,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1289
1343
|
links?: {
|
|
1290
1344
|
href: string;
|
|
1291
1345
|
label: string;
|
|
1346
|
+
icon?: string | {
|
|
1347
|
+
name: string;
|
|
1348
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1349
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1350
|
+
} | undefined;
|
|
1292
1351
|
}[] | undefined;
|
|
1293
1352
|
primary?: {
|
|
1294
1353
|
type: "button";
|
|
@@ -1460,6 +1519,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1460
1519
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1461
1520
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1462
1521
|
} | undefined;
|
|
1522
|
+
tag?: string | undefined;
|
|
1463
1523
|
hidden?: boolean | undefined;
|
|
1464
1524
|
root?: string | undefined;
|
|
1465
1525
|
} | {
|
|
@@ -1476,6 +1536,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1476
1536
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1477
1537
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1478
1538
|
} | undefined;
|
|
1539
|
+
tag?: string | undefined;
|
|
1479
1540
|
hidden?: boolean | undefined;
|
|
1480
1541
|
root?: string | undefined;
|
|
1481
1542
|
} | {
|
|
@@ -1486,6 +1547,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1486
1547
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1487
1548
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1488
1549
|
} | undefined;
|
|
1550
|
+
tag?: string | undefined;
|
|
1489
1551
|
hidden?: boolean | undefined;
|
|
1490
1552
|
root?: string | undefined;
|
|
1491
1553
|
})[];
|
|
@@ -1523,6 +1585,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1523
1585
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1524
1586
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1525
1587
|
} | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1526
1589
|
hidden?: boolean | undefined;
|
|
1527
1590
|
root?: string | undefined;
|
|
1528
1591
|
} | {
|
|
@@ -1539,6 +1602,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1539
1602
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1540
1603
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1541
1604
|
} | undefined;
|
|
1605
|
+
tag?: string | undefined;
|
|
1542
1606
|
hidden?: boolean | undefined;
|
|
1543
1607
|
root?: string | undefined;
|
|
1544
1608
|
} | {
|
|
@@ -1549,6 +1613,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1549
1613
|
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1550
1614
|
library?: "fontawesome" | "lucide" | undefined;
|
|
1551
1615
|
} | undefined;
|
|
1616
|
+
tag?: string | undefined;
|
|
1552
1617
|
hidden?: boolean | undefined;
|
|
1553
1618
|
root?: string | undefined;
|
|
1554
1619
|
})[];
|
|
@@ -1615,6 +1680,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1615
1680
|
links?: {
|
|
1616
1681
|
href: string;
|
|
1617
1682
|
label: string;
|
|
1683
|
+
icon?: string | {
|
|
1684
|
+
name: string;
|
|
1685
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
1686
|
+
library?: "fontawesome" | "lucide" | undefined;
|
|
1687
|
+
} | undefined;
|
|
1618
1688
|
}[] | undefined;
|
|
1619
1689
|
primary?: {
|
|
1620
1690
|
type: "button";
|