@mulmocast/deck 0.4.0 → 0.5.0
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/README.md +289 -1
- package/lib/blocks.js +46 -9
- package/lib/layouts/comparison.js +18 -2
- package/lib/layouts/grid.js +4 -1
- package/lib/layouts/title.js +12 -1
- package/lib/render.js +15 -2
- package/lib/schema.d.ts +2454 -0
- package/lib/schema.js +47 -0
- package/lib/utils.d.ts +13 -1
- package/lib/utils.js +29 -6
- package/package.json +1 -1
package/lib/schema.d.ts
CHANGED
|
@@ -30,6 +30,11 @@ export declare const slideThemeFontsSchema: z.ZodObject<{
|
|
|
30
30
|
mono: z.ZodString;
|
|
31
31
|
accent: z.ZodOptional<z.ZodString>;
|
|
32
32
|
}, z.core.$strip>;
|
|
33
|
+
/** Card visual style. "glass" = transparent gradient bg + subtle border (matches reveal.js polished decks); "solid" = opaque card (default). */
|
|
34
|
+
export declare const slideCardStyleSchema: z.ZodEnum<{
|
|
35
|
+
glass: "glass";
|
|
36
|
+
solid: "solid";
|
|
37
|
+
}>;
|
|
33
38
|
export declare const slideThemeSchema: z.ZodObject<{
|
|
34
39
|
colors: z.ZodObject<{
|
|
35
40
|
bg: z.ZodString;
|
|
@@ -54,7 +59,23 @@ export declare const slideThemeSchema: z.ZodObject<{
|
|
|
54
59
|
}, z.core.$strip>;
|
|
55
60
|
bgGradient: z.ZodOptional<z.ZodString>;
|
|
56
61
|
titleGradient: z.ZodOptional<z.ZodString>;
|
|
62
|
+
cardStyle: z.ZodOptional<z.ZodEnum<{
|
|
63
|
+
glass: "glass";
|
|
64
|
+
solid: "solid";
|
|
65
|
+
}>>;
|
|
57
66
|
}, z.core.$strip>;
|
|
67
|
+
/**
|
|
68
|
+
* Abstract text-size variant. Maps to a theme-aware (size, weight, color) tuple,
|
|
69
|
+
* so authors don't have to hand-pick pixel sizes per slide.
|
|
70
|
+
* lead = muted intro paragraph (slightly larger, dim)
|
|
71
|
+
* big = emphasized body (larger, full text color)
|
|
72
|
+
* sub = card / footnote body (smaller, dim)
|
|
73
|
+
*/
|
|
74
|
+
export declare const textSizeSchema: z.ZodEnum<{
|
|
75
|
+
lead: "lead";
|
|
76
|
+
big: "big";
|
|
77
|
+
sub: "sub";
|
|
78
|
+
}>;
|
|
58
79
|
export declare const textBlockSchema: z.ZodObject<{
|
|
59
80
|
type: z.ZodLiteral<"text">;
|
|
60
81
|
value: z.ZodString;
|
|
@@ -75,6 +96,11 @@ export declare const textBlockSchema: z.ZodObject<{
|
|
|
75
96
|
info: "info";
|
|
76
97
|
highlight: "highlight";
|
|
77
98
|
}>>;
|
|
99
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
100
|
+
lead: "lead";
|
|
101
|
+
big: "big";
|
|
102
|
+
sub: "sub";
|
|
103
|
+
}>>;
|
|
78
104
|
}, z.core.$strip>;
|
|
79
105
|
/** Status-icon variants for bullets (renders ✓ / ✕ / ⚠ in the accent color of the variant). */
|
|
80
106
|
export declare const bulletIconSchema: z.ZodEnum<{
|
|
@@ -93,6 +119,11 @@ export declare const bulletItemSchema: z.ZodUnion<readonly [z.ZodString, z.ZodOb
|
|
|
93
119
|
no: "no";
|
|
94
120
|
warn: "warn";
|
|
95
121
|
}>>;
|
|
122
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
123
|
+
lead: "lead";
|
|
124
|
+
big: "big";
|
|
125
|
+
sub: "sub";
|
|
126
|
+
}>>;
|
|
96
127
|
}, z.core.$strip>]>;
|
|
97
128
|
export declare const bulletsBlockSchema: z.ZodObject<{
|
|
98
129
|
type: z.ZodLiteral<"bullets">;
|
|
@@ -106,9 +137,19 @@ export declare const bulletsBlockSchema: z.ZodObject<{
|
|
|
106
137
|
no: "no";
|
|
107
138
|
warn: "warn";
|
|
108
139
|
}>>;
|
|
140
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
141
|
+
lead: "lead";
|
|
142
|
+
big: "big";
|
|
143
|
+
sub: "sub";
|
|
144
|
+
}>>;
|
|
109
145
|
}, z.core.$strip>]>>;
|
|
110
146
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
111
147
|
icon: z.ZodOptional<z.ZodString>;
|
|
148
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
149
|
+
lead: "lead";
|
|
150
|
+
big: "big";
|
|
151
|
+
sub: "sub";
|
|
152
|
+
}>>;
|
|
112
153
|
}, z.core.$strip>;
|
|
113
154
|
export declare const codeBlockSchema: z.ZodObject<{
|
|
114
155
|
type: z.ZodLiteral<"code">;
|
|
@@ -133,6 +174,11 @@ export declare const calloutBlockSchema: z.ZodObject<{
|
|
|
133
174
|
info: "info";
|
|
134
175
|
quote: "quote";
|
|
135
176
|
}>>;
|
|
177
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
178
|
+
lead: "lead";
|
|
179
|
+
big: "big";
|
|
180
|
+
sub: "sub";
|
|
181
|
+
}>>;
|
|
136
182
|
}, z.core.$strip>;
|
|
137
183
|
export declare const metricBlockSchema: z.ZodObject<{
|
|
138
184
|
type: z.ZodLiteral<"metric">;
|
|
@@ -161,6 +207,23 @@ export declare const dividerBlockSchema: z.ZodObject<{
|
|
|
161
207
|
highlight: "highlight";
|
|
162
208
|
}>>;
|
|
163
209
|
}, z.core.$strip>;
|
|
210
|
+
/**
|
|
211
|
+
* Small uppercase accent label, intended for use INSIDE cards (matches reveal.js .tag).
|
|
212
|
+
* Distinct from the slide-level `eyebrow`: this is per-block and sits above an h3 / title in a card.
|
|
213
|
+
*/
|
|
214
|
+
export declare const tagBlockSchema: z.ZodObject<{
|
|
215
|
+
type: z.ZodLiteral<"tag">;
|
|
216
|
+
text: z.ZodString;
|
|
217
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
218
|
+
primary: "primary";
|
|
219
|
+
accent: "accent";
|
|
220
|
+
success: "success";
|
|
221
|
+
warning: "warning";
|
|
222
|
+
danger: "danger";
|
|
223
|
+
info: "info";
|
|
224
|
+
highlight: "highlight";
|
|
225
|
+
}>>;
|
|
226
|
+
}, z.core.$strip>;
|
|
164
227
|
export declare const imageBlockSchema: z.ZodObject<{
|
|
165
228
|
type: z.ZodLiteral<"image">;
|
|
166
229
|
src: z.ZodString;
|
|
@@ -256,6 +319,11 @@ export declare const sectionBlockSchema: z.ZodObject<{
|
|
|
256
319
|
info: "info";
|
|
257
320
|
highlight: "highlight";
|
|
258
321
|
}>>;
|
|
322
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
323
|
+
lead: "lead";
|
|
324
|
+
big: "big";
|
|
325
|
+
sub: "sub";
|
|
326
|
+
}>>;
|
|
259
327
|
}, z.core.$strip>, z.ZodObject<{
|
|
260
328
|
type: z.ZodLiteral<"bullets">;
|
|
261
329
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -268,9 +336,19 @@ export declare const sectionBlockSchema: z.ZodObject<{
|
|
|
268
336
|
no: "no";
|
|
269
337
|
warn: "warn";
|
|
270
338
|
}>>;
|
|
339
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
340
|
+
lead: "lead";
|
|
341
|
+
big: "big";
|
|
342
|
+
sub: "sub";
|
|
343
|
+
}>>;
|
|
271
344
|
}, z.core.$strip>]>>;
|
|
272
345
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
273
346
|
icon: z.ZodOptional<z.ZodString>;
|
|
347
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
348
|
+
lead: "lead";
|
|
349
|
+
big: "big";
|
|
350
|
+
sub: "sub";
|
|
351
|
+
}>>;
|
|
274
352
|
}, z.core.$strip>, z.ZodObject<{
|
|
275
353
|
type: z.ZodLiteral<"code">;
|
|
276
354
|
code: z.ZodString;
|
|
@@ -293,6 +371,11 @@ export declare const sectionBlockSchema: z.ZodObject<{
|
|
|
293
371
|
info: "info";
|
|
294
372
|
quote: "quote";
|
|
295
373
|
}>>;
|
|
374
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
375
|
+
lead: "lead";
|
|
376
|
+
big: "big";
|
|
377
|
+
sub: "sub";
|
|
378
|
+
}>>;
|
|
296
379
|
}, z.core.$strip>, z.ZodObject<{
|
|
297
380
|
type: z.ZodLiteral<"metric">;
|
|
298
381
|
value: z.ZodString;
|
|
@@ -362,6 +445,18 @@ export declare const sectionBlockSchema: z.ZodObject<{
|
|
|
362
445
|
}, z.core.$strip>]>>>;
|
|
363
446
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
364
447
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
448
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
449
|
+
type: z.ZodLiteral<"tag">;
|
|
450
|
+
text: z.ZodString;
|
|
451
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
452
|
+
primary: "primary";
|
|
453
|
+
accent: "accent";
|
|
454
|
+
success: "success";
|
|
455
|
+
warning: "warning";
|
|
456
|
+
danger: "danger";
|
|
457
|
+
info: "info";
|
|
458
|
+
highlight: "highlight";
|
|
459
|
+
}>>;
|
|
365
460
|
}, z.core.$strip>], "type">>>;
|
|
366
461
|
text: z.ZodOptional<z.ZodString>;
|
|
367
462
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -386,6 +481,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
386
481
|
info: "info";
|
|
387
482
|
highlight: "highlight";
|
|
388
483
|
}>>;
|
|
484
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
485
|
+
lead: "lead";
|
|
486
|
+
big: "big";
|
|
487
|
+
sub: "sub";
|
|
488
|
+
}>>;
|
|
389
489
|
}, z.core.$strip>, z.ZodObject<{
|
|
390
490
|
type: z.ZodLiteral<"bullets">;
|
|
391
491
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -398,9 +498,19 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
398
498
|
no: "no";
|
|
399
499
|
warn: "warn";
|
|
400
500
|
}>>;
|
|
501
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
502
|
+
lead: "lead";
|
|
503
|
+
big: "big";
|
|
504
|
+
sub: "sub";
|
|
505
|
+
}>>;
|
|
401
506
|
}, z.core.$strip>]>>;
|
|
402
507
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
403
508
|
icon: z.ZodOptional<z.ZodString>;
|
|
509
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
510
|
+
lead: "lead";
|
|
511
|
+
big: "big";
|
|
512
|
+
sub: "sub";
|
|
513
|
+
}>>;
|
|
404
514
|
}, z.core.$strip>, z.ZodObject<{
|
|
405
515
|
type: z.ZodLiteral<"code">;
|
|
406
516
|
code: z.ZodString;
|
|
@@ -423,6 +533,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
423
533
|
info: "info";
|
|
424
534
|
quote: "quote";
|
|
425
535
|
}>>;
|
|
536
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
537
|
+
lead: "lead";
|
|
538
|
+
big: "big";
|
|
539
|
+
sub: "sub";
|
|
540
|
+
}>>;
|
|
426
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
427
542
|
type: z.ZodLiteral<"metric">;
|
|
428
543
|
value: z.ZodString;
|
|
@@ -492,6 +607,18 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
492
607
|
}, z.core.$strip>]>>>;
|
|
493
608
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
494
609
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
610
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
611
|
+
type: z.ZodLiteral<"tag">;
|
|
612
|
+
text: z.ZodString;
|
|
613
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
614
|
+
primary: "primary";
|
|
615
|
+
accent: "accent";
|
|
616
|
+
success: "success";
|
|
617
|
+
warning: "warning";
|
|
618
|
+
danger: "danger";
|
|
619
|
+
info: "info";
|
|
620
|
+
highlight: "highlight";
|
|
621
|
+
}>>;
|
|
495
622
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
623
|
type: z.ZodLiteral<"section">;
|
|
497
624
|
label: z.ZodString;
|
|
@@ -524,6 +651,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
524
651
|
info: "info";
|
|
525
652
|
highlight: "highlight";
|
|
526
653
|
}>>;
|
|
654
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
655
|
+
lead: "lead";
|
|
656
|
+
big: "big";
|
|
657
|
+
sub: "sub";
|
|
658
|
+
}>>;
|
|
527
659
|
}, z.core.$strip>, z.ZodObject<{
|
|
528
660
|
type: z.ZodLiteral<"bullets">;
|
|
529
661
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -536,9 +668,19 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
536
668
|
no: "no";
|
|
537
669
|
warn: "warn";
|
|
538
670
|
}>>;
|
|
671
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
672
|
+
lead: "lead";
|
|
673
|
+
big: "big";
|
|
674
|
+
sub: "sub";
|
|
675
|
+
}>>;
|
|
539
676
|
}, z.core.$strip>]>>;
|
|
540
677
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
541
678
|
icon: z.ZodOptional<z.ZodString>;
|
|
679
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
680
|
+
lead: "lead";
|
|
681
|
+
big: "big";
|
|
682
|
+
sub: "sub";
|
|
683
|
+
}>>;
|
|
542
684
|
}, z.core.$strip>, z.ZodObject<{
|
|
543
685
|
type: z.ZodLiteral<"code">;
|
|
544
686
|
code: z.ZodString;
|
|
@@ -561,6 +703,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
561
703
|
info: "info";
|
|
562
704
|
quote: "quote";
|
|
563
705
|
}>>;
|
|
706
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
707
|
+
lead: "lead";
|
|
708
|
+
big: "big";
|
|
709
|
+
sub: "sub";
|
|
710
|
+
}>>;
|
|
564
711
|
}, z.core.$strip>, z.ZodObject<{
|
|
565
712
|
type: z.ZodLiteral<"metric">;
|
|
566
713
|
value: z.ZodString;
|
|
@@ -630,6 +777,18 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
630
777
|
}, z.core.$strip>]>>>;
|
|
631
778
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
632
779
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
780
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
781
|
+
type: z.ZodLiteral<"tag">;
|
|
782
|
+
text: z.ZodString;
|
|
783
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
784
|
+
primary: "primary";
|
|
785
|
+
accent: "accent";
|
|
786
|
+
success: "success";
|
|
787
|
+
warning: "warning";
|
|
788
|
+
danger: "danger";
|
|
789
|
+
info: "info";
|
|
790
|
+
highlight: "highlight";
|
|
791
|
+
}>>;
|
|
633
792
|
}, z.core.$strip>], "type">>>;
|
|
634
793
|
text: z.ZodOptional<z.ZodString>;
|
|
635
794
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -685,6 +844,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
685
844
|
info: "info";
|
|
686
845
|
highlight: "highlight";
|
|
687
846
|
}>>;
|
|
847
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
848
|
+
lead: "lead";
|
|
849
|
+
big: "big";
|
|
850
|
+
sub: "sub";
|
|
851
|
+
}>>;
|
|
688
852
|
}, z.core.$strip>, z.ZodObject<{
|
|
689
853
|
type: z.ZodLiteral<"bullets">;
|
|
690
854
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -697,9 +861,19 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
697
861
|
no: "no";
|
|
698
862
|
warn: "warn";
|
|
699
863
|
}>>;
|
|
864
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
865
|
+
lead: "lead";
|
|
866
|
+
big: "big";
|
|
867
|
+
sub: "sub";
|
|
868
|
+
}>>;
|
|
700
869
|
}, z.core.$strip>]>>;
|
|
701
870
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
702
871
|
icon: z.ZodOptional<z.ZodString>;
|
|
872
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
873
|
+
lead: "lead";
|
|
874
|
+
big: "big";
|
|
875
|
+
sub: "sub";
|
|
876
|
+
}>>;
|
|
703
877
|
}, z.core.$strip>, z.ZodObject<{
|
|
704
878
|
type: z.ZodLiteral<"code">;
|
|
705
879
|
code: z.ZodString;
|
|
@@ -722,6 +896,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
722
896
|
info: "info";
|
|
723
897
|
quote: "quote";
|
|
724
898
|
}>>;
|
|
899
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
900
|
+
lead: "lead";
|
|
901
|
+
big: "big";
|
|
902
|
+
sub: "sub";
|
|
903
|
+
}>>;
|
|
725
904
|
}, z.core.$strip>, z.ZodObject<{
|
|
726
905
|
type: z.ZodLiteral<"metric">;
|
|
727
906
|
value: z.ZodString;
|
|
@@ -791,6 +970,18 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
791
970
|
}, z.core.$strip>]>>>;
|
|
792
971
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
793
972
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
973
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
974
|
+
type: z.ZodLiteral<"tag">;
|
|
975
|
+
text: z.ZodString;
|
|
976
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
977
|
+
primary: "primary";
|
|
978
|
+
accent: "accent";
|
|
979
|
+
success: "success";
|
|
980
|
+
warning: "warning";
|
|
981
|
+
danger: "danger";
|
|
982
|
+
info: "info";
|
|
983
|
+
highlight: "highlight";
|
|
984
|
+
}>>;
|
|
794
985
|
}, z.core.$strip>, z.ZodObject<{
|
|
795
986
|
type: z.ZodLiteral<"section">;
|
|
796
987
|
label: z.ZodString;
|
|
@@ -823,6 +1014,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
823
1014
|
info: "info";
|
|
824
1015
|
highlight: "highlight";
|
|
825
1016
|
}>>;
|
|
1017
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1018
|
+
lead: "lead";
|
|
1019
|
+
big: "big";
|
|
1020
|
+
sub: "sub";
|
|
1021
|
+
}>>;
|
|
826
1022
|
}, z.core.$strip>, z.ZodObject<{
|
|
827
1023
|
type: z.ZodLiteral<"bullets">;
|
|
828
1024
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -835,9 +1031,19 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
835
1031
|
no: "no";
|
|
836
1032
|
warn: "warn";
|
|
837
1033
|
}>>;
|
|
1034
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1035
|
+
lead: "lead";
|
|
1036
|
+
big: "big";
|
|
1037
|
+
sub: "sub";
|
|
1038
|
+
}>>;
|
|
838
1039
|
}, z.core.$strip>]>>;
|
|
839
1040
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
840
1041
|
icon: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1043
|
+
lead: "lead";
|
|
1044
|
+
big: "big";
|
|
1045
|
+
sub: "sub";
|
|
1046
|
+
}>>;
|
|
841
1047
|
}, z.core.$strip>, z.ZodObject<{
|
|
842
1048
|
type: z.ZodLiteral<"code">;
|
|
843
1049
|
code: z.ZodString;
|
|
@@ -860,6 +1066,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
860
1066
|
info: "info";
|
|
861
1067
|
quote: "quote";
|
|
862
1068
|
}>>;
|
|
1069
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1070
|
+
lead: "lead";
|
|
1071
|
+
big: "big";
|
|
1072
|
+
sub: "sub";
|
|
1073
|
+
}>>;
|
|
863
1074
|
}, z.core.$strip>, z.ZodObject<{
|
|
864
1075
|
type: z.ZodLiteral<"metric">;
|
|
865
1076
|
value: z.ZodString;
|
|
@@ -929,6 +1140,18 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
929
1140
|
}, z.core.$strip>]>>>;
|
|
930
1141
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
931
1142
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
1143
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1144
|
+
type: z.ZodLiteral<"tag">;
|
|
1145
|
+
text: z.ZodString;
|
|
1146
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1147
|
+
primary: "primary";
|
|
1148
|
+
accent: "accent";
|
|
1149
|
+
success: "success";
|
|
1150
|
+
warning: "warning";
|
|
1151
|
+
danger: "danger";
|
|
1152
|
+
info: "info";
|
|
1153
|
+
highlight: "highlight";
|
|
1154
|
+
}>>;
|
|
932
1155
|
}, z.core.$strip>], "type">>>;
|
|
933
1156
|
text: z.ZodOptional<z.ZodString>;
|
|
934
1157
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -959,6 +1182,24 @@ export declare const eyebrowSchema: z.ZodObject<{
|
|
|
959
1182
|
highlight: "highlight";
|
|
960
1183
|
}>>;
|
|
961
1184
|
}, z.core.$strip>;
|
|
1185
|
+
/** Slide content density. "compact" shrinks body / bullet / callout text and tightens padding (~85% scale). */
|
|
1186
|
+
export declare const slideDensitySchema: z.ZodEnum<{
|
|
1187
|
+
default: "default";
|
|
1188
|
+
compact: "compact";
|
|
1189
|
+
}>;
|
|
1190
|
+
/** Slide title (h2) size override. "small" tightens for content-heavy slides, "hero" enlarges for closing/section slides. */
|
|
1191
|
+
export declare const slideTitleSizeSchema: z.ZodEnum<{
|
|
1192
|
+
default: "default";
|
|
1193
|
+
small: "small";
|
|
1194
|
+
large: "large";
|
|
1195
|
+
hero: "hero";
|
|
1196
|
+
}>;
|
|
1197
|
+
/** Slide subtitle size variant. Defaults to body (15px); "big" matches reveal.js .big.muted ≈ 22px. */
|
|
1198
|
+
export declare const slideSubtitleSizeSchema: z.ZodEnum<{
|
|
1199
|
+
lead: "lead";
|
|
1200
|
+
big: "big";
|
|
1201
|
+
default: "default";
|
|
1202
|
+
}>;
|
|
962
1203
|
export declare const titleSlideSchema: z.ZodObject<{
|
|
963
1204
|
title: z.ZodString;
|
|
964
1205
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
@@ -993,6 +1234,21 @@ export declare const titleSlideSchema: z.ZodObject<{
|
|
|
993
1234
|
highlight: "highlight";
|
|
994
1235
|
}>>;
|
|
995
1236
|
}, z.core.$strip>>;
|
|
1237
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
1238
|
+
default: "default";
|
|
1239
|
+
compact: "compact";
|
|
1240
|
+
}>>;
|
|
1241
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
1242
|
+
default: "default";
|
|
1243
|
+
small: "small";
|
|
1244
|
+
large: "large";
|
|
1245
|
+
hero: "hero";
|
|
1246
|
+
}>>;
|
|
1247
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
1248
|
+
lead: "lead";
|
|
1249
|
+
big: "big";
|
|
1250
|
+
default: "default";
|
|
1251
|
+
}>>;
|
|
996
1252
|
layout: z.ZodLiteral<"title">;
|
|
997
1253
|
}, z.core.$strip>;
|
|
998
1254
|
export declare const columnsSlideSchema: z.ZodObject<{
|
|
@@ -1030,6 +1286,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1030
1286
|
info: "info";
|
|
1031
1287
|
highlight: "highlight";
|
|
1032
1288
|
}>>;
|
|
1289
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1290
|
+
lead: "lead";
|
|
1291
|
+
big: "big";
|
|
1292
|
+
sub: "sub";
|
|
1293
|
+
}>>;
|
|
1033
1294
|
}, z.core.$strip>, z.ZodObject<{
|
|
1034
1295
|
type: z.ZodLiteral<"bullets">;
|
|
1035
1296
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1042,9 +1303,19 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1042
1303
|
no: "no";
|
|
1043
1304
|
warn: "warn";
|
|
1044
1305
|
}>>;
|
|
1306
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1307
|
+
lead: "lead";
|
|
1308
|
+
big: "big";
|
|
1309
|
+
sub: "sub";
|
|
1310
|
+
}>>;
|
|
1045
1311
|
}, z.core.$strip>]>>;
|
|
1046
1312
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1047
1313
|
icon: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1315
|
+
lead: "lead";
|
|
1316
|
+
big: "big";
|
|
1317
|
+
sub: "sub";
|
|
1318
|
+
}>>;
|
|
1048
1319
|
}, z.core.$strip>, z.ZodObject<{
|
|
1049
1320
|
type: z.ZodLiteral<"code">;
|
|
1050
1321
|
code: z.ZodString;
|
|
@@ -1067,6 +1338,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1067
1338
|
info: "info";
|
|
1068
1339
|
quote: "quote";
|
|
1069
1340
|
}>>;
|
|
1341
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1342
|
+
lead: "lead";
|
|
1343
|
+
big: "big";
|
|
1344
|
+
sub: "sub";
|
|
1345
|
+
}>>;
|
|
1070
1346
|
}, z.core.$strip>, z.ZodObject<{
|
|
1071
1347
|
type: z.ZodLiteral<"metric">;
|
|
1072
1348
|
value: z.ZodString;
|
|
@@ -1136,6 +1412,18 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1136
1412
|
}, z.core.$strip>]>>>;
|
|
1137
1413
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1138
1414
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
1415
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1416
|
+
type: z.ZodLiteral<"tag">;
|
|
1417
|
+
text: z.ZodString;
|
|
1418
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1419
|
+
primary: "primary";
|
|
1420
|
+
accent: "accent";
|
|
1421
|
+
success: "success";
|
|
1422
|
+
warning: "warning";
|
|
1423
|
+
danger: "danger";
|
|
1424
|
+
info: "info";
|
|
1425
|
+
highlight: "highlight";
|
|
1426
|
+
}>>;
|
|
1139
1427
|
}, z.core.$strip>, z.ZodObject<{
|
|
1140
1428
|
type: z.ZodLiteral<"section">;
|
|
1141
1429
|
label: z.ZodString;
|
|
@@ -1168,6 +1456,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1168
1456
|
info: "info";
|
|
1169
1457
|
highlight: "highlight";
|
|
1170
1458
|
}>>;
|
|
1459
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1460
|
+
lead: "lead";
|
|
1461
|
+
big: "big";
|
|
1462
|
+
sub: "sub";
|
|
1463
|
+
}>>;
|
|
1171
1464
|
}, z.core.$strip>, z.ZodObject<{
|
|
1172
1465
|
type: z.ZodLiteral<"bullets">;
|
|
1173
1466
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1180,9 +1473,19 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1180
1473
|
no: "no";
|
|
1181
1474
|
warn: "warn";
|
|
1182
1475
|
}>>;
|
|
1476
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1477
|
+
lead: "lead";
|
|
1478
|
+
big: "big";
|
|
1479
|
+
sub: "sub";
|
|
1480
|
+
}>>;
|
|
1183
1481
|
}, z.core.$strip>]>>;
|
|
1184
1482
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1185
1483
|
icon: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1485
|
+
lead: "lead";
|
|
1486
|
+
big: "big";
|
|
1487
|
+
sub: "sub";
|
|
1488
|
+
}>>;
|
|
1186
1489
|
}, z.core.$strip>, z.ZodObject<{
|
|
1187
1490
|
type: z.ZodLiteral<"code">;
|
|
1188
1491
|
code: z.ZodString;
|
|
@@ -1205,6 +1508,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1205
1508
|
info: "info";
|
|
1206
1509
|
quote: "quote";
|
|
1207
1510
|
}>>;
|
|
1511
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1512
|
+
lead: "lead";
|
|
1513
|
+
big: "big";
|
|
1514
|
+
sub: "sub";
|
|
1515
|
+
}>>;
|
|
1208
1516
|
}, z.core.$strip>, z.ZodObject<{
|
|
1209
1517
|
type: z.ZodLiteral<"metric">;
|
|
1210
1518
|
value: z.ZodString;
|
|
@@ -1274,6 +1582,18 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1274
1582
|
}, z.core.$strip>]>>>;
|
|
1275
1583
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1276
1584
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
1585
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1586
|
+
type: z.ZodLiteral<"tag">;
|
|
1587
|
+
text: z.ZodString;
|
|
1588
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1589
|
+
primary: "primary";
|
|
1590
|
+
accent: "accent";
|
|
1591
|
+
success: "success";
|
|
1592
|
+
warning: "warning";
|
|
1593
|
+
danger: "danger";
|
|
1594
|
+
info: "info";
|
|
1595
|
+
highlight: "highlight";
|
|
1596
|
+
}>>;
|
|
1277
1597
|
}, z.core.$strip>], "type">>>;
|
|
1278
1598
|
text: z.ZodOptional<z.ZodString>;
|
|
1279
1599
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1332,6 +1652,21 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1332
1652
|
highlight: "highlight";
|
|
1333
1653
|
}>>;
|
|
1334
1654
|
}, z.core.$strip>>;
|
|
1655
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
1656
|
+
default: "default";
|
|
1657
|
+
compact: "compact";
|
|
1658
|
+
}>>;
|
|
1659
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
1660
|
+
default: "default";
|
|
1661
|
+
small: "small";
|
|
1662
|
+
large: "large";
|
|
1663
|
+
hero: "hero";
|
|
1664
|
+
}>>;
|
|
1665
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
1666
|
+
lead: "lead";
|
|
1667
|
+
big: "big";
|
|
1668
|
+
default: "default";
|
|
1669
|
+
}>>;
|
|
1335
1670
|
layout: z.ZodLiteral<"columns">;
|
|
1336
1671
|
}, z.core.$strip>;
|
|
1337
1672
|
export declare const comparisonPanelSchema: z.ZodObject<{
|
|
@@ -1365,6 +1700,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1365
1700
|
info: "info";
|
|
1366
1701
|
highlight: "highlight";
|
|
1367
1702
|
}>>;
|
|
1703
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1704
|
+
lead: "lead";
|
|
1705
|
+
big: "big";
|
|
1706
|
+
sub: "sub";
|
|
1707
|
+
}>>;
|
|
1368
1708
|
}, z.core.$strip>, z.ZodObject<{
|
|
1369
1709
|
type: z.ZodLiteral<"bullets">;
|
|
1370
1710
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1377,9 +1717,19 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1377
1717
|
no: "no";
|
|
1378
1718
|
warn: "warn";
|
|
1379
1719
|
}>>;
|
|
1720
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1721
|
+
lead: "lead";
|
|
1722
|
+
big: "big";
|
|
1723
|
+
sub: "sub";
|
|
1724
|
+
}>>;
|
|
1380
1725
|
}, z.core.$strip>]>>;
|
|
1381
1726
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1382
1727
|
icon: z.ZodOptional<z.ZodString>;
|
|
1728
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1729
|
+
lead: "lead";
|
|
1730
|
+
big: "big";
|
|
1731
|
+
sub: "sub";
|
|
1732
|
+
}>>;
|
|
1383
1733
|
}, z.core.$strip>, z.ZodObject<{
|
|
1384
1734
|
type: z.ZodLiteral<"code">;
|
|
1385
1735
|
code: z.ZodString;
|
|
@@ -1402,6 +1752,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1402
1752
|
info: "info";
|
|
1403
1753
|
quote: "quote";
|
|
1404
1754
|
}>>;
|
|
1755
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1756
|
+
lead: "lead";
|
|
1757
|
+
big: "big";
|
|
1758
|
+
sub: "sub";
|
|
1759
|
+
}>>;
|
|
1405
1760
|
}, z.core.$strip>, z.ZodObject<{
|
|
1406
1761
|
type: z.ZodLiteral<"metric">;
|
|
1407
1762
|
value: z.ZodString;
|
|
@@ -1471,6 +1826,18 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1471
1826
|
}, z.core.$strip>]>>>;
|
|
1472
1827
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1473
1828
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
1829
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1830
|
+
type: z.ZodLiteral<"tag">;
|
|
1831
|
+
text: z.ZodString;
|
|
1832
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1833
|
+
primary: "primary";
|
|
1834
|
+
accent: "accent";
|
|
1835
|
+
success: "success";
|
|
1836
|
+
warning: "warning";
|
|
1837
|
+
danger: "danger";
|
|
1838
|
+
info: "info";
|
|
1839
|
+
highlight: "highlight";
|
|
1840
|
+
}>>;
|
|
1474
1841
|
}, z.core.$strip>, z.ZodObject<{
|
|
1475
1842
|
type: z.ZodLiteral<"section">;
|
|
1476
1843
|
label: z.ZodString;
|
|
@@ -1503,6 +1870,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1503
1870
|
info: "info";
|
|
1504
1871
|
highlight: "highlight";
|
|
1505
1872
|
}>>;
|
|
1873
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1874
|
+
lead: "lead";
|
|
1875
|
+
big: "big";
|
|
1876
|
+
sub: "sub";
|
|
1877
|
+
}>>;
|
|
1506
1878
|
}, z.core.$strip>, z.ZodObject<{
|
|
1507
1879
|
type: z.ZodLiteral<"bullets">;
|
|
1508
1880
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1515,9 +1887,19 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1515
1887
|
no: "no";
|
|
1516
1888
|
warn: "warn";
|
|
1517
1889
|
}>>;
|
|
1890
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1891
|
+
lead: "lead";
|
|
1892
|
+
big: "big";
|
|
1893
|
+
sub: "sub";
|
|
1894
|
+
}>>;
|
|
1518
1895
|
}, z.core.$strip>]>>;
|
|
1519
1896
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1520
1897
|
icon: z.ZodOptional<z.ZodString>;
|
|
1898
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1899
|
+
lead: "lead";
|
|
1900
|
+
big: "big";
|
|
1901
|
+
sub: "sub";
|
|
1902
|
+
}>>;
|
|
1521
1903
|
}, z.core.$strip>, z.ZodObject<{
|
|
1522
1904
|
type: z.ZodLiteral<"code">;
|
|
1523
1905
|
code: z.ZodString;
|
|
@@ -1540,6 +1922,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1540
1922
|
info: "info";
|
|
1541
1923
|
quote: "quote";
|
|
1542
1924
|
}>>;
|
|
1925
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
1926
|
+
lead: "lead";
|
|
1927
|
+
big: "big";
|
|
1928
|
+
sub: "sub";
|
|
1929
|
+
}>>;
|
|
1543
1930
|
}, z.core.$strip>, z.ZodObject<{
|
|
1544
1931
|
type: z.ZodLiteral<"metric">;
|
|
1545
1932
|
value: z.ZodString;
|
|
@@ -1609,11 +1996,25 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1609
1996
|
}, z.core.$strip>]>>>;
|
|
1610
1997
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1611
1998
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
1999
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2000
|
+
type: z.ZodLiteral<"tag">;
|
|
2001
|
+
text: z.ZodString;
|
|
2002
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2003
|
+
primary: "primary";
|
|
2004
|
+
accent: "accent";
|
|
2005
|
+
success: "success";
|
|
2006
|
+
warning: "warning";
|
|
2007
|
+
danger: "danger";
|
|
2008
|
+
info: "info";
|
|
2009
|
+
highlight: "highlight";
|
|
2010
|
+
}>>;
|
|
1612
2011
|
}, z.core.$strip>], "type">>>;
|
|
1613
2012
|
text: z.ZodOptional<z.ZodString>;
|
|
1614
2013
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
1615
2014
|
}, z.core.$strip>], "type">>>;
|
|
1616
2015
|
footer: z.ZodOptional<z.ZodString>;
|
|
2016
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
2017
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
1617
2018
|
}, z.core.$strip>;
|
|
1618
2019
|
export declare const comparisonSlideSchema: z.ZodObject<{
|
|
1619
2020
|
title: z.ZodString;
|
|
@@ -1650,6 +2051,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1650
2051
|
info: "info";
|
|
1651
2052
|
highlight: "highlight";
|
|
1652
2053
|
}>>;
|
|
2054
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2055
|
+
lead: "lead";
|
|
2056
|
+
big: "big";
|
|
2057
|
+
sub: "sub";
|
|
2058
|
+
}>>;
|
|
1653
2059
|
}, z.core.$strip>, z.ZodObject<{
|
|
1654
2060
|
type: z.ZodLiteral<"bullets">;
|
|
1655
2061
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1662,9 +2068,19 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1662
2068
|
no: "no";
|
|
1663
2069
|
warn: "warn";
|
|
1664
2070
|
}>>;
|
|
2071
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2072
|
+
lead: "lead";
|
|
2073
|
+
big: "big";
|
|
2074
|
+
sub: "sub";
|
|
2075
|
+
}>>;
|
|
1665
2076
|
}, z.core.$strip>]>>;
|
|
1666
2077
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1667
2078
|
icon: z.ZodOptional<z.ZodString>;
|
|
2079
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2080
|
+
lead: "lead";
|
|
2081
|
+
big: "big";
|
|
2082
|
+
sub: "sub";
|
|
2083
|
+
}>>;
|
|
1668
2084
|
}, z.core.$strip>, z.ZodObject<{
|
|
1669
2085
|
type: z.ZodLiteral<"code">;
|
|
1670
2086
|
code: z.ZodString;
|
|
@@ -1687,6 +2103,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1687
2103
|
info: "info";
|
|
1688
2104
|
quote: "quote";
|
|
1689
2105
|
}>>;
|
|
2106
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2107
|
+
lead: "lead";
|
|
2108
|
+
big: "big";
|
|
2109
|
+
sub: "sub";
|
|
2110
|
+
}>>;
|
|
1690
2111
|
}, z.core.$strip>, z.ZodObject<{
|
|
1691
2112
|
type: z.ZodLiteral<"metric">;
|
|
1692
2113
|
value: z.ZodString;
|
|
@@ -1756,6 +2177,18 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1756
2177
|
}, z.core.$strip>]>>>;
|
|
1757
2178
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1758
2179
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
2180
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2181
|
+
type: z.ZodLiteral<"tag">;
|
|
2182
|
+
text: z.ZodString;
|
|
2183
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2184
|
+
primary: "primary";
|
|
2185
|
+
accent: "accent";
|
|
2186
|
+
success: "success";
|
|
2187
|
+
warning: "warning";
|
|
2188
|
+
danger: "danger";
|
|
2189
|
+
info: "info";
|
|
2190
|
+
highlight: "highlight";
|
|
2191
|
+
}>>;
|
|
1759
2192
|
}, z.core.$strip>, z.ZodObject<{
|
|
1760
2193
|
type: z.ZodLiteral<"section">;
|
|
1761
2194
|
label: z.ZodString;
|
|
@@ -1788,6 +2221,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1788
2221
|
info: "info";
|
|
1789
2222
|
highlight: "highlight";
|
|
1790
2223
|
}>>;
|
|
2224
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2225
|
+
lead: "lead";
|
|
2226
|
+
big: "big";
|
|
2227
|
+
sub: "sub";
|
|
2228
|
+
}>>;
|
|
1791
2229
|
}, z.core.$strip>, z.ZodObject<{
|
|
1792
2230
|
type: z.ZodLiteral<"bullets">;
|
|
1793
2231
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1800,9 +2238,19 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1800
2238
|
no: "no";
|
|
1801
2239
|
warn: "warn";
|
|
1802
2240
|
}>>;
|
|
2241
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2242
|
+
lead: "lead";
|
|
2243
|
+
big: "big";
|
|
2244
|
+
sub: "sub";
|
|
2245
|
+
}>>;
|
|
1803
2246
|
}, z.core.$strip>]>>;
|
|
1804
2247
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1805
2248
|
icon: z.ZodOptional<z.ZodString>;
|
|
2249
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2250
|
+
lead: "lead";
|
|
2251
|
+
big: "big";
|
|
2252
|
+
sub: "sub";
|
|
2253
|
+
}>>;
|
|
1806
2254
|
}, z.core.$strip>, z.ZodObject<{
|
|
1807
2255
|
type: z.ZodLiteral<"code">;
|
|
1808
2256
|
code: z.ZodString;
|
|
@@ -1825,6 +2273,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1825
2273
|
info: "info";
|
|
1826
2274
|
quote: "quote";
|
|
1827
2275
|
}>>;
|
|
2276
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2277
|
+
lead: "lead";
|
|
2278
|
+
big: "big";
|
|
2279
|
+
sub: "sub";
|
|
2280
|
+
}>>;
|
|
1828
2281
|
}, z.core.$strip>, z.ZodObject<{
|
|
1829
2282
|
type: z.ZodLiteral<"metric">;
|
|
1830
2283
|
value: z.ZodString;
|
|
@@ -1894,11 +2347,25 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1894
2347
|
}, z.core.$strip>]>>>;
|
|
1895
2348
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
1896
2349
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
2350
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2351
|
+
type: z.ZodLiteral<"tag">;
|
|
2352
|
+
text: z.ZodString;
|
|
2353
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2354
|
+
primary: "primary";
|
|
2355
|
+
accent: "accent";
|
|
2356
|
+
success: "success";
|
|
2357
|
+
warning: "warning";
|
|
2358
|
+
danger: "danger";
|
|
2359
|
+
info: "info";
|
|
2360
|
+
highlight: "highlight";
|
|
2361
|
+
}>>;
|
|
1897
2362
|
}, z.core.$strip>], "type">>>;
|
|
1898
2363
|
text: z.ZodOptional<z.ZodString>;
|
|
1899
2364
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
1900
2365
|
}, z.core.$strip>], "type">>>;
|
|
1901
2366
|
footer: z.ZodOptional<z.ZodString>;
|
|
2367
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
2368
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
1902
2369
|
}, z.core.$strip>;
|
|
1903
2370
|
right: z.ZodObject<{
|
|
1904
2371
|
title: z.ZodString;
|
|
@@ -1931,6 +2398,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1931
2398
|
info: "info";
|
|
1932
2399
|
highlight: "highlight";
|
|
1933
2400
|
}>>;
|
|
2401
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2402
|
+
lead: "lead";
|
|
2403
|
+
big: "big";
|
|
2404
|
+
sub: "sub";
|
|
2405
|
+
}>>;
|
|
1934
2406
|
}, z.core.$strip>, z.ZodObject<{
|
|
1935
2407
|
type: z.ZodLiteral<"bullets">;
|
|
1936
2408
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -1943,9 +2415,19 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1943
2415
|
no: "no";
|
|
1944
2416
|
warn: "warn";
|
|
1945
2417
|
}>>;
|
|
2418
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2419
|
+
lead: "lead";
|
|
2420
|
+
big: "big";
|
|
2421
|
+
sub: "sub";
|
|
2422
|
+
}>>;
|
|
1946
2423
|
}, z.core.$strip>]>>;
|
|
1947
2424
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1948
2425
|
icon: z.ZodOptional<z.ZodString>;
|
|
2426
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2427
|
+
lead: "lead";
|
|
2428
|
+
big: "big";
|
|
2429
|
+
sub: "sub";
|
|
2430
|
+
}>>;
|
|
1949
2431
|
}, z.core.$strip>, z.ZodObject<{
|
|
1950
2432
|
type: z.ZodLiteral<"code">;
|
|
1951
2433
|
code: z.ZodString;
|
|
@@ -1968,6 +2450,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1968
2450
|
info: "info";
|
|
1969
2451
|
quote: "quote";
|
|
1970
2452
|
}>>;
|
|
2453
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2454
|
+
lead: "lead";
|
|
2455
|
+
big: "big";
|
|
2456
|
+
sub: "sub";
|
|
2457
|
+
}>>;
|
|
1971
2458
|
}, z.core.$strip>, z.ZodObject<{
|
|
1972
2459
|
type: z.ZodLiteral<"metric">;
|
|
1973
2460
|
value: z.ZodString;
|
|
@@ -2037,6 +2524,18 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2037
2524
|
}, z.core.$strip>]>>>;
|
|
2038
2525
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2039
2526
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
2527
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2528
|
+
type: z.ZodLiteral<"tag">;
|
|
2529
|
+
text: z.ZodString;
|
|
2530
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2531
|
+
primary: "primary";
|
|
2532
|
+
accent: "accent";
|
|
2533
|
+
success: "success";
|
|
2534
|
+
warning: "warning";
|
|
2535
|
+
danger: "danger";
|
|
2536
|
+
info: "info";
|
|
2537
|
+
highlight: "highlight";
|
|
2538
|
+
}>>;
|
|
2040
2539
|
}, z.core.$strip>, z.ZodObject<{
|
|
2041
2540
|
type: z.ZodLiteral<"section">;
|
|
2042
2541
|
label: z.ZodString;
|
|
@@ -2069,6 +2568,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2069
2568
|
info: "info";
|
|
2070
2569
|
highlight: "highlight";
|
|
2071
2570
|
}>>;
|
|
2571
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2572
|
+
lead: "lead";
|
|
2573
|
+
big: "big";
|
|
2574
|
+
sub: "sub";
|
|
2575
|
+
}>>;
|
|
2072
2576
|
}, z.core.$strip>, z.ZodObject<{
|
|
2073
2577
|
type: z.ZodLiteral<"bullets">;
|
|
2074
2578
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -2081,9 +2585,19 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2081
2585
|
no: "no";
|
|
2082
2586
|
warn: "warn";
|
|
2083
2587
|
}>>;
|
|
2588
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2589
|
+
lead: "lead";
|
|
2590
|
+
big: "big";
|
|
2591
|
+
sub: "sub";
|
|
2592
|
+
}>>;
|
|
2084
2593
|
}, z.core.$strip>]>>;
|
|
2085
2594
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2086
2595
|
icon: z.ZodOptional<z.ZodString>;
|
|
2596
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2597
|
+
lead: "lead";
|
|
2598
|
+
big: "big";
|
|
2599
|
+
sub: "sub";
|
|
2600
|
+
}>>;
|
|
2087
2601
|
}, z.core.$strip>, z.ZodObject<{
|
|
2088
2602
|
type: z.ZodLiteral<"code">;
|
|
2089
2603
|
code: z.ZodString;
|
|
@@ -2106,6 +2620,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2106
2620
|
info: "info";
|
|
2107
2621
|
quote: "quote";
|
|
2108
2622
|
}>>;
|
|
2623
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2624
|
+
lead: "lead";
|
|
2625
|
+
big: "big";
|
|
2626
|
+
sub: "sub";
|
|
2627
|
+
}>>;
|
|
2109
2628
|
}, z.core.$strip>, z.ZodObject<{
|
|
2110
2629
|
type: z.ZodLiteral<"metric">;
|
|
2111
2630
|
value: z.ZodString;
|
|
@@ -2175,11 +2694,25 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2175
2694
|
}, z.core.$strip>]>>>;
|
|
2176
2695
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2177
2696
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
2697
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2698
|
+
type: z.ZodLiteral<"tag">;
|
|
2699
|
+
text: z.ZodString;
|
|
2700
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2701
|
+
primary: "primary";
|
|
2702
|
+
accent: "accent";
|
|
2703
|
+
success: "success";
|
|
2704
|
+
warning: "warning";
|
|
2705
|
+
danger: "danger";
|
|
2706
|
+
info: "info";
|
|
2707
|
+
highlight: "highlight";
|
|
2708
|
+
}>>;
|
|
2178
2709
|
}, z.core.$strip>], "type">>>;
|
|
2179
2710
|
text: z.ZodOptional<z.ZodString>;
|
|
2180
2711
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
2181
2712
|
}, z.core.$strip>], "type">>>;
|
|
2182
2713
|
footer: z.ZodOptional<z.ZodString>;
|
|
2714
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
2715
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
2183
2716
|
}, z.core.$strip>;
|
|
2184
2717
|
callout: z.ZodOptional<z.ZodObject<{
|
|
2185
2718
|
text: z.ZodString;
|
|
@@ -2227,6 +2760,21 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2227
2760
|
highlight: "highlight";
|
|
2228
2761
|
}>>;
|
|
2229
2762
|
}, z.core.$strip>>;
|
|
2763
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
2764
|
+
default: "default";
|
|
2765
|
+
compact: "compact";
|
|
2766
|
+
}>>;
|
|
2767
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
2768
|
+
default: "default";
|
|
2769
|
+
small: "small";
|
|
2770
|
+
large: "large";
|
|
2771
|
+
hero: "hero";
|
|
2772
|
+
}>>;
|
|
2773
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
2774
|
+
lead: "lead";
|
|
2775
|
+
big: "big";
|
|
2776
|
+
default: "default";
|
|
2777
|
+
}>>;
|
|
2230
2778
|
layout: z.ZodLiteral<"comparison">;
|
|
2231
2779
|
}, z.core.$strip>;
|
|
2232
2780
|
export declare const gridItemSchema: z.ZodObject<{
|
|
@@ -2263,6 +2811,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2263
2811
|
info: "info";
|
|
2264
2812
|
highlight: "highlight";
|
|
2265
2813
|
}>>;
|
|
2814
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2815
|
+
lead: "lead";
|
|
2816
|
+
big: "big";
|
|
2817
|
+
sub: "sub";
|
|
2818
|
+
}>>;
|
|
2266
2819
|
}, z.core.$strip>, z.ZodObject<{
|
|
2267
2820
|
type: z.ZodLiteral<"bullets">;
|
|
2268
2821
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -2275,9 +2828,19 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2275
2828
|
no: "no";
|
|
2276
2829
|
warn: "warn";
|
|
2277
2830
|
}>>;
|
|
2831
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2832
|
+
lead: "lead";
|
|
2833
|
+
big: "big";
|
|
2834
|
+
sub: "sub";
|
|
2835
|
+
}>>;
|
|
2278
2836
|
}, z.core.$strip>]>>;
|
|
2279
2837
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2280
2838
|
icon: z.ZodOptional<z.ZodString>;
|
|
2839
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2840
|
+
lead: "lead";
|
|
2841
|
+
big: "big";
|
|
2842
|
+
sub: "sub";
|
|
2843
|
+
}>>;
|
|
2281
2844
|
}, z.core.$strip>, z.ZodObject<{
|
|
2282
2845
|
type: z.ZodLiteral<"code">;
|
|
2283
2846
|
code: z.ZodString;
|
|
@@ -2300,6 +2863,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2300
2863
|
info: "info";
|
|
2301
2864
|
quote: "quote";
|
|
2302
2865
|
}>>;
|
|
2866
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2867
|
+
lead: "lead";
|
|
2868
|
+
big: "big";
|
|
2869
|
+
sub: "sub";
|
|
2870
|
+
}>>;
|
|
2303
2871
|
}, z.core.$strip>, z.ZodObject<{
|
|
2304
2872
|
type: z.ZodLiteral<"metric">;
|
|
2305
2873
|
value: z.ZodString;
|
|
@@ -2369,6 +2937,18 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2369
2937
|
}, z.core.$strip>]>>>;
|
|
2370
2938
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2371
2939
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
2940
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2941
|
+
type: z.ZodLiteral<"tag">;
|
|
2942
|
+
text: z.ZodString;
|
|
2943
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2944
|
+
primary: "primary";
|
|
2945
|
+
accent: "accent";
|
|
2946
|
+
success: "success";
|
|
2947
|
+
warning: "warning";
|
|
2948
|
+
danger: "danger";
|
|
2949
|
+
info: "info";
|
|
2950
|
+
highlight: "highlight";
|
|
2951
|
+
}>>;
|
|
2372
2952
|
}, z.core.$strip>, z.ZodObject<{
|
|
2373
2953
|
type: z.ZodLiteral<"section">;
|
|
2374
2954
|
label: z.ZodString;
|
|
@@ -2401,6 +2981,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2401
2981
|
info: "info";
|
|
2402
2982
|
highlight: "highlight";
|
|
2403
2983
|
}>>;
|
|
2984
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
2985
|
+
lead: "lead";
|
|
2986
|
+
big: "big";
|
|
2987
|
+
sub: "sub";
|
|
2988
|
+
}>>;
|
|
2404
2989
|
}, z.core.$strip>, z.ZodObject<{
|
|
2405
2990
|
type: z.ZodLiteral<"bullets">;
|
|
2406
2991
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -2413,9 +2998,19 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2413
2998
|
no: "no";
|
|
2414
2999
|
warn: "warn";
|
|
2415
3000
|
}>>;
|
|
3001
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3002
|
+
lead: "lead";
|
|
3003
|
+
big: "big";
|
|
3004
|
+
sub: "sub";
|
|
3005
|
+
}>>;
|
|
2416
3006
|
}, z.core.$strip>]>>;
|
|
2417
3007
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2418
3008
|
icon: z.ZodOptional<z.ZodString>;
|
|
3009
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3010
|
+
lead: "lead";
|
|
3011
|
+
big: "big";
|
|
3012
|
+
sub: "sub";
|
|
3013
|
+
}>>;
|
|
2419
3014
|
}, z.core.$strip>, z.ZodObject<{
|
|
2420
3015
|
type: z.ZodLiteral<"code">;
|
|
2421
3016
|
code: z.ZodString;
|
|
@@ -2438,6 +3033,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2438
3033
|
info: "info";
|
|
2439
3034
|
quote: "quote";
|
|
2440
3035
|
}>>;
|
|
3036
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3037
|
+
lead: "lead";
|
|
3038
|
+
big: "big";
|
|
3039
|
+
sub: "sub";
|
|
3040
|
+
}>>;
|
|
2441
3041
|
}, z.core.$strip>, z.ZodObject<{
|
|
2442
3042
|
type: z.ZodLiteral<"metric">;
|
|
2443
3043
|
value: z.ZodString;
|
|
@@ -2507,10 +3107,23 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2507
3107
|
}, z.core.$strip>]>>>;
|
|
2508
3108
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2509
3109
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
3110
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3111
|
+
type: z.ZodLiteral<"tag">;
|
|
3112
|
+
text: z.ZodString;
|
|
3113
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3114
|
+
primary: "primary";
|
|
3115
|
+
accent: "accent";
|
|
3116
|
+
success: "success";
|
|
3117
|
+
warning: "warning";
|
|
3118
|
+
danger: "danger";
|
|
3119
|
+
info: "info";
|
|
3120
|
+
highlight: "highlight";
|
|
3121
|
+
}>>;
|
|
2510
3122
|
}, z.core.$strip>], "type">>>;
|
|
2511
3123
|
text: z.ZodOptional<z.ZodString>;
|
|
2512
3124
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
2513
3125
|
}, z.core.$strip>], "type">>>;
|
|
3126
|
+
span: z.ZodOptional<z.ZodNumber>;
|
|
2514
3127
|
}, z.core.$strip>;
|
|
2515
3128
|
export declare const gridSlideSchema: z.ZodObject<{
|
|
2516
3129
|
title: z.ZodString;
|
|
@@ -2550,6 +3163,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2550
3163
|
info: "info";
|
|
2551
3164
|
highlight: "highlight";
|
|
2552
3165
|
}>>;
|
|
3166
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3167
|
+
lead: "lead";
|
|
3168
|
+
big: "big";
|
|
3169
|
+
sub: "sub";
|
|
3170
|
+
}>>;
|
|
2553
3171
|
}, z.core.$strip>, z.ZodObject<{
|
|
2554
3172
|
type: z.ZodLiteral<"bullets">;
|
|
2555
3173
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -2562,9 +3180,19 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2562
3180
|
no: "no";
|
|
2563
3181
|
warn: "warn";
|
|
2564
3182
|
}>>;
|
|
3183
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3184
|
+
lead: "lead";
|
|
3185
|
+
big: "big";
|
|
3186
|
+
sub: "sub";
|
|
3187
|
+
}>>;
|
|
2565
3188
|
}, z.core.$strip>]>>;
|
|
2566
3189
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2567
3190
|
icon: z.ZodOptional<z.ZodString>;
|
|
3191
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3192
|
+
lead: "lead";
|
|
3193
|
+
big: "big";
|
|
3194
|
+
sub: "sub";
|
|
3195
|
+
}>>;
|
|
2568
3196
|
}, z.core.$strip>, z.ZodObject<{
|
|
2569
3197
|
type: z.ZodLiteral<"code">;
|
|
2570
3198
|
code: z.ZodString;
|
|
@@ -2587,6 +3215,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2587
3215
|
info: "info";
|
|
2588
3216
|
quote: "quote";
|
|
2589
3217
|
}>>;
|
|
3218
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3219
|
+
lead: "lead";
|
|
3220
|
+
big: "big";
|
|
3221
|
+
sub: "sub";
|
|
3222
|
+
}>>;
|
|
2590
3223
|
}, z.core.$strip>, z.ZodObject<{
|
|
2591
3224
|
type: z.ZodLiteral<"metric">;
|
|
2592
3225
|
value: z.ZodString;
|
|
@@ -2656,6 +3289,18 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2656
3289
|
}, z.core.$strip>]>>>;
|
|
2657
3290
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2658
3291
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
3292
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3293
|
+
type: z.ZodLiteral<"tag">;
|
|
3294
|
+
text: z.ZodString;
|
|
3295
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3296
|
+
primary: "primary";
|
|
3297
|
+
accent: "accent";
|
|
3298
|
+
success: "success";
|
|
3299
|
+
warning: "warning";
|
|
3300
|
+
danger: "danger";
|
|
3301
|
+
info: "info";
|
|
3302
|
+
highlight: "highlight";
|
|
3303
|
+
}>>;
|
|
2659
3304
|
}, z.core.$strip>, z.ZodObject<{
|
|
2660
3305
|
type: z.ZodLiteral<"section">;
|
|
2661
3306
|
label: z.ZodString;
|
|
@@ -2688,6 +3333,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2688
3333
|
info: "info";
|
|
2689
3334
|
highlight: "highlight";
|
|
2690
3335
|
}>>;
|
|
3336
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
lead: "lead";
|
|
3338
|
+
big: "big";
|
|
3339
|
+
sub: "sub";
|
|
3340
|
+
}>>;
|
|
2691
3341
|
}, z.core.$strip>, z.ZodObject<{
|
|
2692
3342
|
type: z.ZodLiteral<"bullets">;
|
|
2693
3343
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -2700,9 +3350,19 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2700
3350
|
no: "no";
|
|
2701
3351
|
warn: "warn";
|
|
2702
3352
|
}>>;
|
|
3353
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3354
|
+
lead: "lead";
|
|
3355
|
+
big: "big";
|
|
3356
|
+
sub: "sub";
|
|
3357
|
+
}>>;
|
|
2703
3358
|
}, z.core.$strip>]>>;
|
|
2704
3359
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2705
3360
|
icon: z.ZodOptional<z.ZodString>;
|
|
3361
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3362
|
+
lead: "lead";
|
|
3363
|
+
big: "big";
|
|
3364
|
+
sub: "sub";
|
|
3365
|
+
}>>;
|
|
2706
3366
|
}, z.core.$strip>, z.ZodObject<{
|
|
2707
3367
|
type: z.ZodLiteral<"code">;
|
|
2708
3368
|
code: z.ZodString;
|
|
@@ -2725,6 +3385,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2725
3385
|
info: "info";
|
|
2726
3386
|
quote: "quote";
|
|
2727
3387
|
}>>;
|
|
3388
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3389
|
+
lead: "lead";
|
|
3390
|
+
big: "big";
|
|
3391
|
+
sub: "sub";
|
|
3392
|
+
}>>;
|
|
2728
3393
|
}, z.core.$strip>, z.ZodObject<{
|
|
2729
3394
|
type: z.ZodLiteral<"metric">;
|
|
2730
3395
|
value: z.ZodString;
|
|
@@ -2794,10 +3459,23 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2794
3459
|
}, z.core.$strip>]>>>;
|
|
2795
3460
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
2796
3461
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
3462
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3463
|
+
type: z.ZodLiteral<"tag">;
|
|
3464
|
+
text: z.ZodString;
|
|
3465
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3466
|
+
primary: "primary";
|
|
3467
|
+
accent: "accent";
|
|
3468
|
+
success: "success";
|
|
3469
|
+
warning: "warning";
|
|
3470
|
+
danger: "danger";
|
|
3471
|
+
info: "info";
|
|
3472
|
+
highlight: "highlight";
|
|
3473
|
+
}>>;
|
|
2797
3474
|
}, z.core.$strip>], "type">>>;
|
|
2798
3475
|
text: z.ZodOptional<z.ZodString>;
|
|
2799
3476
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
2800
3477
|
}, z.core.$strip>], "type">>>;
|
|
3478
|
+
span: z.ZodOptional<z.ZodNumber>;
|
|
2801
3479
|
}, z.core.$strip>>;
|
|
2802
3480
|
footer: z.ZodOptional<z.ZodString>;
|
|
2803
3481
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2828,6 +3506,21 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2828
3506
|
highlight: "highlight";
|
|
2829
3507
|
}>>;
|
|
2830
3508
|
}, z.core.$strip>>;
|
|
3509
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
3510
|
+
default: "default";
|
|
3511
|
+
compact: "compact";
|
|
3512
|
+
}>>;
|
|
3513
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
3514
|
+
default: "default";
|
|
3515
|
+
small: "small";
|
|
3516
|
+
large: "large";
|
|
3517
|
+
hero: "hero";
|
|
3518
|
+
}>>;
|
|
3519
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
3520
|
+
lead: "lead";
|
|
3521
|
+
big: "big";
|
|
3522
|
+
default: "default";
|
|
3523
|
+
}>>;
|
|
2831
3524
|
layout: z.ZodLiteral<"grid">;
|
|
2832
3525
|
}, z.core.$strip>;
|
|
2833
3526
|
export declare const bigQuoteSlideSchema: z.ZodObject<{
|
|
@@ -2862,6 +3555,21 @@ export declare const bigQuoteSlideSchema: z.ZodObject<{
|
|
|
2862
3555
|
highlight: "highlight";
|
|
2863
3556
|
}>>;
|
|
2864
3557
|
}, z.core.$strip>>;
|
|
3558
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
3559
|
+
default: "default";
|
|
3560
|
+
compact: "compact";
|
|
3561
|
+
}>>;
|
|
3562
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
3563
|
+
default: "default";
|
|
3564
|
+
small: "small";
|
|
3565
|
+
large: "large";
|
|
3566
|
+
hero: "hero";
|
|
3567
|
+
}>>;
|
|
3568
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
3569
|
+
lead: "lead";
|
|
3570
|
+
big: "big";
|
|
3571
|
+
default: "default";
|
|
3572
|
+
}>>;
|
|
2865
3573
|
layout: z.ZodLiteral<"bigQuote">;
|
|
2866
3574
|
}, z.core.$strip>;
|
|
2867
3575
|
export declare const statItemSchema: z.ZodObject<{
|
|
@@ -2944,6 +3652,21 @@ export declare const statsSlideSchema: z.ZodObject<{
|
|
|
2944
3652
|
highlight: "highlight";
|
|
2945
3653
|
}>>;
|
|
2946
3654
|
}, z.core.$strip>>;
|
|
3655
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
3656
|
+
default: "default";
|
|
3657
|
+
compact: "compact";
|
|
3658
|
+
}>>;
|
|
3659
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
3660
|
+
default: "default";
|
|
3661
|
+
small: "small";
|
|
3662
|
+
large: "large";
|
|
3663
|
+
hero: "hero";
|
|
3664
|
+
}>>;
|
|
3665
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
3666
|
+
lead: "lead";
|
|
3667
|
+
big: "big";
|
|
3668
|
+
default: "default";
|
|
3669
|
+
}>>;
|
|
2947
3670
|
layout: z.ZodLiteral<"stats">;
|
|
2948
3671
|
}, z.core.$strip>;
|
|
2949
3672
|
export declare const timelineItemSchema: z.ZodObject<{
|
|
@@ -3010,6 +3733,21 @@ export declare const timelineSlideSchema: z.ZodObject<{
|
|
|
3010
3733
|
highlight: "highlight";
|
|
3011
3734
|
}>>;
|
|
3012
3735
|
}, z.core.$strip>>;
|
|
3736
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
3737
|
+
default: "default";
|
|
3738
|
+
compact: "compact";
|
|
3739
|
+
}>>;
|
|
3740
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
3741
|
+
default: "default";
|
|
3742
|
+
small: "small";
|
|
3743
|
+
large: "large";
|
|
3744
|
+
hero: "hero";
|
|
3745
|
+
}>>;
|
|
3746
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
3747
|
+
lead: "lead";
|
|
3748
|
+
big: "big";
|
|
3749
|
+
default: "default";
|
|
3750
|
+
}>>;
|
|
3013
3751
|
layout: z.ZodLiteral<"timeline">;
|
|
3014
3752
|
}, z.core.$strip>;
|
|
3015
3753
|
export declare const splitPanelSchema: z.ZodObject<{
|
|
@@ -3046,6 +3784,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3046
3784
|
info: "info";
|
|
3047
3785
|
highlight: "highlight";
|
|
3048
3786
|
}>>;
|
|
3787
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3788
|
+
lead: "lead";
|
|
3789
|
+
big: "big";
|
|
3790
|
+
sub: "sub";
|
|
3791
|
+
}>>;
|
|
3049
3792
|
}, z.core.$strip>, z.ZodObject<{
|
|
3050
3793
|
type: z.ZodLiteral<"bullets">;
|
|
3051
3794
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3058,9 +3801,19 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3058
3801
|
no: "no";
|
|
3059
3802
|
warn: "warn";
|
|
3060
3803
|
}>>;
|
|
3804
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3805
|
+
lead: "lead";
|
|
3806
|
+
big: "big";
|
|
3807
|
+
sub: "sub";
|
|
3808
|
+
}>>;
|
|
3061
3809
|
}, z.core.$strip>]>>;
|
|
3062
3810
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3063
3811
|
icon: z.ZodOptional<z.ZodString>;
|
|
3812
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3813
|
+
lead: "lead";
|
|
3814
|
+
big: "big";
|
|
3815
|
+
sub: "sub";
|
|
3816
|
+
}>>;
|
|
3064
3817
|
}, z.core.$strip>, z.ZodObject<{
|
|
3065
3818
|
type: z.ZodLiteral<"code">;
|
|
3066
3819
|
code: z.ZodString;
|
|
@@ -3083,6 +3836,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3083
3836
|
info: "info";
|
|
3084
3837
|
quote: "quote";
|
|
3085
3838
|
}>>;
|
|
3839
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3840
|
+
lead: "lead";
|
|
3841
|
+
big: "big";
|
|
3842
|
+
sub: "sub";
|
|
3843
|
+
}>>;
|
|
3086
3844
|
}, z.core.$strip>, z.ZodObject<{
|
|
3087
3845
|
type: z.ZodLiteral<"metric">;
|
|
3088
3846
|
value: z.ZodString;
|
|
@@ -3152,6 +3910,18 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3152
3910
|
}, z.core.$strip>]>>>;
|
|
3153
3911
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3154
3912
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
3913
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3914
|
+
type: z.ZodLiteral<"tag">;
|
|
3915
|
+
text: z.ZodString;
|
|
3916
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3917
|
+
primary: "primary";
|
|
3918
|
+
accent: "accent";
|
|
3919
|
+
success: "success";
|
|
3920
|
+
warning: "warning";
|
|
3921
|
+
danger: "danger";
|
|
3922
|
+
info: "info";
|
|
3923
|
+
highlight: "highlight";
|
|
3924
|
+
}>>;
|
|
3155
3925
|
}, z.core.$strip>, z.ZodObject<{
|
|
3156
3926
|
type: z.ZodLiteral<"section">;
|
|
3157
3927
|
label: z.ZodString;
|
|
@@ -3184,6 +3954,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3184
3954
|
info: "info";
|
|
3185
3955
|
highlight: "highlight";
|
|
3186
3956
|
}>>;
|
|
3957
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3958
|
+
lead: "lead";
|
|
3959
|
+
big: "big";
|
|
3960
|
+
sub: "sub";
|
|
3961
|
+
}>>;
|
|
3187
3962
|
}, z.core.$strip>, z.ZodObject<{
|
|
3188
3963
|
type: z.ZodLiteral<"bullets">;
|
|
3189
3964
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3196,9 +3971,19 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3196
3971
|
no: "no";
|
|
3197
3972
|
warn: "warn";
|
|
3198
3973
|
}>>;
|
|
3974
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3975
|
+
lead: "lead";
|
|
3976
|
+
big: "big";
|
|
3977
|
+
sub: "sub";
|
|
3978
|
+
}>>;
|
|
3199
3979
|
}, z.core.$strip>]>>;
|
|
3200
3980
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3201
3981
|
icon: z.ZodOptional<z.ZodString>;
|
|
3982
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
3983
|
+
lead: "lead";
|
|
3984
|
+
big: "big";
|
|
3985
|
+
sub: "sub";
|
|
3986
|
+
}>>;
|
|
3202
3987
|
}, z.core.$strip>, z.ZodObject<{
|
|
3203
3988
|
type: z.ZodLiteral<"code">;
|
|
3204
3989
|
code: z.ZodString;
|
|
@@ -3221,6 +4006,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3221
4006
|
info: "info";
|
|
3222
4007
|
quote: "quote";
|
|
3223
4008
|
}>>;
|
|
4009
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4010
|
+
lead: "lead";
|
|
4011
|
+
big: "big";
|
|
4012
|
+
sub: "sub";
|
|
4013
|
+
}>>;
|
|
3224
4014
|
}, z.core.$strip>, z.ZodObject<{
|
|
3225
4015
|
type: z.ZodLiteral<"metric">;
|
|
3226
4016
|
value: z.ZodString;
|
|
@@ -3290,6 +4080,18 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
3290
4080
|
}, z.core.$strip>]>>>;
|
|
3291
4081
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3292
4082
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
4083
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4084
|
+
type: z.ZodLiteral<"tag">;
|
|
4085
|
+
text: z.ZodString;
|
|
4086
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4087
|
+
primary: "primary";
|
|
4088
|
+
accent: "accent";
|
|
4089
|
+
success: "success";
|
|
4090
|
+
warning: "warning";
|
|
4091
|
+
danger: "danger";
|
|
4092
|
+
info: "info";
|
|
4093
|
+
highlight: "highlight";
|
|
4094
|
+
}>>;
|
|
3293
4095
|
}, z.core.$strip>], "type">>>;
|
|
3294
4096
|
text: z.ZodOptional<z.ZodString>;
|
|
3295
4097
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3337,6 +4139,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3337
4139
|
info: "info";
|
|
3338
4140
|
highlight: "highlight";
|
|
3339
4141
|
}>>;
|
|
4142
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4143
|
+
lead: "lead";
|
|
4144
|
+
big: "big";
|
|
4145
|
+
sub: "sub";
|
|
4146
|
+
}>>;
|
|
3340
4147
|
}, z.core.$strip>, z.ZodObject<{
|
|
3341
4148
|
type: z.ZodLiteral<"bullets">;
|
|
3342
4149
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3349,9 +4156,19 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3349
4156
|
no: "no";
|
|
3350
4157
|
warn: "warn";
|
|
3351
4158
|
}>>;
|
|
4159
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4160
|
+
lead: "lead";
|
|
4161
|
+
big: "big";
|
|
4162
|
+
sub: "sub";
|
|
4163
|
+
}>>;
|
|
3352
4164
|
}, z.core.$strip>]>>;
|
|
3353
4165
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3354
4166
|
icon: z.ZodOptional<z.ZodString>;
|
|
4167
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4168
|
+
lead: "lead";
|
|
4169
|
+
big: "big";
|
|
4170
|
+
sub: "sub";
|
|
4171
|
+
}>>;
|
|
3355
4172
|
}, z.core.$strip>, z.ZodObject<{
|
|
3356
4173
|
type: z.ZodLiteral<"code">;
|
|
3357
4174
|
code: z.ZodString;
|
|
@@ -3374,6 +4191,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3374
4191
|
info: "info";
|
|
3375
4192
|
quote: "quote";
|
|
3376
4193
|
}>>;
|
|
4194
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4195
|
+
lead: "lead";
|
|
4196
|
+
big: "big";
|
|
4197
|
+
sub: "sub";
|
|
4198
|
+
}>>;
|
|
3377
4199
|
}, z.core.$strip>, z.ZodObject<{
|
|
3378
4200
|
type: z.ZodLiteral<"metric">;
|
|
3379
4201
|
value: z.ZodString;
|
|
@@ -3443,6 +4265,18 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3443
4265
|
}, z.core.$strip>]>>>;
|
|
3444
4266
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3445
4267
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
4268
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4269
|
+
type: z.ZodLiteral<"tag">;
|
|
4270
|
+
text: z.ZodString;
|
|
4271
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4272
|
+
primary: "primary";
|
|
4273
|
+
accent: "accent";
|
|
4274
|
+
success: "success";
|
|
4275
|
+
warning: "warning";
|
|
4276
|
+
danger: "danger";
|
|
4277
|
+
info: "info";
|
|
4278
|
+
highlight: "highlight";
|
|
4279
|
+
}>>;
|
|
3446
4280
|
}, z.core.$strip>, z.ZodObject<{
|
|
3447
4281
|
type: z.ZodLiteral<"section">;
|
|
3448
4282
|
label: z.ZodString;
|
|
@@ -3475,6 +4309,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3475
4309
|
info: "info";
|
|
3476
4310
|
highlight: "highlight";
|
|
3477
4311
|
}>>;
|
|
4312
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4313
|
+
lead: "lead";
|
|
4314
|
+
big: "big";
|
|
4315
|
+
sub: "sub";
|
|
4316
|
+
}>>;
|
|
3478
4317
|
}, z.core.$strip>, z.ZodObject<{
|
|
3479
4318
|
type: z.ZodLiteral<"bullets">;
|
|
3480
4319
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3487,9 +4326,19 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3487
4326
|
no: "no";
|
|
3488
4327
|
warn: "warn";
|
|
3489
4328
|
}>>;
|
|
4329
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4330
|
+
lead: "lead";
|
|
4331
|
+
big: "big";
|
|
4332
|
+
sub: "sub";
|
|
4333
|
+
}>>;
|
|
3490
4334
|
}, z.core.$strip>]>>;
|
|
3491
4335
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3492
4336
|
icon: z.ZodOptional<z.ZodString>;
|
|
4337
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4338
|
+
lead: "lead";
|
|
4339
|
+
big: "big";
|
|
4340
|
+
sub: "sub";
|
|
4341
|
+
}>>;
|
|
3493
4342
|
}, z.core.$strip>, z.ZodObject<{
|
|
3494
4343
|
type: z.ZodLiteral<"code">;
|
|
3495
4344
|
code: z.ZodString;
|
|
@@ -3512,6 +4361,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3512
4361
|
info: "info";
|
|
3513
4362
|
quote: "quote";
|
|
3514
4363
|
}>>;
|
|
4364
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4365
|
+
lead: "lead";
|
|
4366
|
+
big: "big";
|
|
4367
|
+
sub: "sub";
|
|
4368
|
+
}>>;
|
|
3515
4369
|
}, z.core.$strip>, z.ZodObject<{
|
|
3516
4370
|
type: z.ZodLiteral<"metric">;
|
|
3517
4371
|
value: z.ZodString;
|
|
@@ -3581,6 +4435,18 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3581
4435
|
}, z.core.$strip>]>>>;
|
|
3582
4436
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3583
4437
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
4438
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4439
|
+
type: z.ZodLiteral<"tag">;
|
|
4440
|
+
text: z.ZodString;
|
|
4441
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4442
|
+
primary: "primary";
|
|
4443
|
+
accent: "accent";
|
|
4444
|
+
success: "success";
|
|
4445
|
+
warning: "warning";
|
|
4446
|
+
danger: "danger";
|
|
4447
|
+
info: "info";
|
|
4448
|
+
highlight: "highlight";
|
|
4449
|
+
}>>;
|
|
3584
4450
|
}, z.core.$strip>], "type">>>;
|
|
3585
4451
|
text: z.ZodOptional<z.ZodString>;
|
|
3586
4452
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3627,6 +4493,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3627
4493
|
info: "info";
|
|
3628
4494
|
highlight: "highlight";
|
|
3629
4495
|
}>>;
|
|
4496
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4497
|
+
lead: "lead";
|
|
4498
|
+
big: "big";
|
|
4499
|
+
sub: "sub";
|
|
4500
|
+
}>>;
|
|
3630
4501
|
}, z.core.$strip>, z.ZodObject<{
|
|
3631
4502
|
type: z.ZodLiteral<"bullets">;
|
|
3632
4503
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3639,9 +4510,19 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3639
4510
|
no: "no";
|
|
3640
4511
|
warn: "warn";
|
|
3641
4512
|
}>>;
|
|
4513
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4514
|
+
lead: "lead";
|
|
4515
|
+
big: "big";
|
|
4516
|
+
sub: "sub";
|
|
4517
|
+
}>>;
|
|
3642
4518
|
}, z.core.$strip>]>>;
|
|
3643
4519
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3644
4520
|
icon: z.ZodOptional<z.ZodString>;
|
|
4521
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4522
|
+
lead: "lead";
|
|
4523
|
+
big: "big";
|
|
4524
|
+
sub: "sub";
|
|
4525
|
+
}>>;
|
|
3645
4526
|
}, z.core.$strip>, z.ZodObject<{
|
|
3646
4527
|
type: z.ZodLiteral<"code">;
|
|
3647
4528
|
code: z.ZodString;
|
|
@@ -3664,6 +4545,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3664
4545
|
info: "info";
|
|
3665
4546
|
quote: "quote";
|
|
3666
4547
|
}>>;
|
|
4548
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4549
|
+
lead: "lead";
|
|
4550
|
+
big: "big";
|
|
4551
|
+
sub: "sub";
|
|
4552
|
+
}>>;
|
|
3667
4553
|
}, z.core.$strip>, z.ZodObject<{
|
|
3668
4554
|
type: z.ZodLiteral<"metric">;
|
|
3669
4555
|
value: z.ZodString;
|
|
@@ -3733,6 +4619,18 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3733
4619
|
}, z.core.$strip>]>>>;
|
|
3734
4620
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3735
4621
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
4622
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4623
|
+
type: z.ZodLiteral<"tag">;
|
|
4624
|
+
text: z.ZodString;
|
|
4625
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4626
|
+
primary: "primary";
|
|
4627
|
+
accent: "accent";
|
|
4628
|
+
success: "success";
|
|
4629
|
+
warning: "warning";
|
|
4630
|
+
danger: "danger";
|
|
4631
|
+
info: "info";
|
|
4632
|
+
highlight: "highlight";
|
|
4633
|
+
}>>;
|
|
3736
4634
|
}, z.core.$strip>, z.ZodObject<{
|
|
3737
4635
|
type: z.ZodLiteral<"section">;
|
|
3738
4636
|
label: z.ZodString;
|
|
@@ -3765,6 +4663,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3765
4663
|
info: "info";
|
|
3766
4664
|
highlight: "highlight";
|
|
3767
4665
|
}>>;
|
|
4666
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4667
|
+
lead: "lead";
|
|
4668
|
+
big: "big";
|
|
4669
|
+
sub: "sub";
|
|
4670
|
+
}>>;
|
|
3768
4671
|
}, z.core.$strip>, z.ZodObject<{
|
|
3769
4672
|
type: z.ZodLiteral<"bullets">;
|
|
3770
4673
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3777,9 +4680,19 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3777
4680
|
no: "no";
|
|
3778
4681
|
warn: "warn";
|
|
3779
4682
|
}>>;
|
|
4683
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4684
|
+
lead: "lead";
|
|
4685
|
+
big: "big";
|
|
4686
|
+
sub: "sub";
|
|
4687
|
+
}>>;
|
|
3780
4688
|
}, z.core.$strip>]>>;
|
|
3781
4689
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3782
4690
|
icon: z.ZodOptional<z.ZodString>;
|
|
4691
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4692
|
+
lead: "lead";
|
|
4693
|
+
big: "big";
|
|
4694
|
+
sub: "sub";
|
|
4695
|
+
}>>;
|
|
3783
4696
|
}, z.core.$strip>, z.ZodObject<{
|
|
3784
4697
|
type: z.ZodLiteral<"code">;
|
|
3785
4698
|
code: z.ZodString;
|
|
@@ -3802,6 +4715,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3802
4715
|
info: "info";
|
|
3803
4716
|
quote: "quote";
|
|
3804
4717
|
}>>;
|
|
4718
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4719
|
+
lead: "lead";
|
|
4720
|
+
big: "big";
|
|
4721
|
+
sub: "sub";
|
|
4722
|
+
}>>;
|
|
3805
4723
|
}, z.core.$strip>, z.ZodObject<{
|
|
3806
4724
|
type: z.ZodLiteral<"metric">;
|
|
3807
4725
|
value: z.ZodString;
|
|
@@ -3871,6 +4789,18 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3871
4789
|
}, z.core.$strip>]>>>;
|
|
3872
4790
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
3873
4791
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
4792
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4793
|
+
type: z.ZodLiteral<"tag">;
|
|
4794
|
+
text: z.ZodString;
|
|
4795
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4796
|
+
primary: "primary";
|
|
4797
|
+
accent: "accent";
|
|
4798
|
+
success: "success";
|
|
4799
|
+
warning: "warning";
|
|
4800
|
+
danger: "danger";
|
|
4801
|
+
info: "info";
|
|
4802
|
+
highlight: "highlight";
|
|
4803
|
+
}>>;
|
|
3874
4804
|
}, z.core.$strip>], "type">>>;
|
|
3875
4805
|
text: z.ZodOptional<z.ZodString>;
|
|
3876
4806
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3911,6 +4841,21 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3911
4841
|
highlight: "highlight";
|
|
3912
4842
|
}>>;
|
|
3913
4843
|
}, z.core.$strip>>;
|
|
4844
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
4845
|
+
default: "default";
|
|
4846
|
+
compact: "compact";
|
|
4847
|
+
}>>;
|
|
4848
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
4849
|
+
default: "default";
|
|
4850
|
+
small: "small";
|
|
4851
|
+
large: "large";
|
|
4852
|
+
hero: "hero";
|
|
4853
|
+
}>>;
|
|
4854
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
4855
|
+
lead: "lead";
|
|
4856
|
+
big: "big";
|
|
4857
|
+
default: "default";
|
|
4858
|
+
}>>;
|
|
3914
4859
|
layout: z.ZodLiteral<"split">;
|
|
3915
4860
|
}, z.core.$strip>;
|
|
3916
4861
|
export declare const matrixCellSchema: z.ZodObject<{
|
|
@@ -3936,6 +4881,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
3936
4881
|
info: "info";
|
|
3937
4882
|
highlight: "highlight";
|
|
3938
4883
|
}>>;
|
|
4884
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4885
|
+
lead: "lead";
|
|
4886
|
+
big: "big";
|
|
4887
|
+
sub: "sub";
|
|
4888
|
+
}>>;
|
|
3939
4889
|
}, z.core.$strip>, z.ZodObject<{
|
|
3940
4890
|
type: z.ZodLiteral<"bullets">;
|
|
3941
4891
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -3948,9 +4898,19 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
3948
4898
|
no: "no";
|
|
3949
4899
|
warn: "warn";
|
|
3950
4900
|
}>>;
|
|
4901
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4902
|
+
lead: "lead";
|
|
4903
|
+
big: "big";
|
|
4904
|
+
sub: "sub";
|
|
4905
|
+
}>>;
|
|
3951
4906
|
}, z.core.$strip>]>>;
|
|
3952
4907
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3953
4908
|
icon: z.ZodOptional<z.ZodString>;
|
|
4909
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4910
|
+
lead: "lead";
|
|
4911
|
+
big: "big";
|
|
4912
|
+
sub: "sub";
|
|
4913
|
+
}>>;
|
|
3954
4914
|
}, z.core.$strip>, z.ZodObject<{
|
|
3955
4915
|
type: z.ZodLiteral<"code">;
|
|
3956
4916
|
code: z.ZodString;
|
|
@@ -3973,6 +4933,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
3973
4933
|
info: "info";
|
|
3974
4934
|
quote: "quote";
|
|
3975
4935
|
}>>;
|
|
4936
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
4937
|
+
lead: "lead";
|
|
4938
|
+
big: "big";
|
|
4939
|
+
sub: "sub";
|
|
4940
|
+
}>>;
|
|
3976
4941
|
}, z.core.$strip>, z.ZodObject<{
|
|
3977
4942
|
type: z.ZodLiteral<"metric">;
|
|
3978
4943
|
value: z.ZodString;
|
|
@@ -4042,6 +5007,18 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
4042
5007
|
}, z.core.$strip>]>>>;
|
|
4043
5008
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
4044
5009
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
5010
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5011
|
+
type: z.ZodLiteral<"tag">;
|
|
5012
|
+
text: z.ZodString;
|
|
5013
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5014
|
+
primary: "primary";
|
|
5015
|
+
accent: "accent";
|
|
5016
|
+
success: "success";
|
|
5017
|
+
warning: "warning";
|
|
5018
|
+
danger: "danger";
|
|
5019
|
+
info: "info";
|
|
5020
|
+
highlight: "highlight";
|
|
5021
|
+
}>>;
|
|
4045
5022
|
}, z.core.$strip>, z.ZodObject<{
|
|
4046
5023
|
type: z.ZodLiteral<"section">;
|
|
4047
5024
|
label: z.ZodString;
|
|
@@ -4074,6 +5051,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
4074
5051
|
info: "info";
|
|
4075
5052
|
highlight: "highlight";
|
|
4076
5053
|
}>>;
|
|
5054
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5055
|
+
lead: "lead";
|
|
5056
|
+
big: "big";
|
|
5057
|
+
sub: "sub";
|
|
5058
|
+
}>>;
|
|
4077
5059
|
}, z.core.$strip>, z.ZodObject<{
|
|
4078
5060
|
type: z.ZodLiteral<"bullets">;
|
|
4079
5061
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -4086,9 +5068,19 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
4086
5068
|
no: "no";
|
|
4087
5069
|
warn: "warn";
|
|
4088
5070
|
}>>;
|
|
5071
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5072
|
+
lead: "lead";
|
|
5073
|
+
big: "big";
|
|
5074
|
+
sub: "sub";
|
|
5075
|
+
}>>;
|
|
4089
5076
|
}, z.core.$strip>]>>;
|
|
4090
5077
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4091
5078
|
icon: z.ZodOptional<z.ZodString>;
|
|
5079
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5080
|
+
lead: "lead";
|
|
5081
|
+
big: "big";
|
|
5082
|
+
sub: "sub";
|
|
5083
|
+
}>>;
|
|
4092
5084
|
}, z.core.$strip>, z.ZodObject<{
|
|
4093
5085
|
type: z.ZodLiteral<"code">;
|
|
4094
5086
|
code: z.ZodString;
|
|
@@ -4111,6 +5103,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
4111
5103
|
info: "info";
|
|
4112
5104
|
quote: "quote";
|
|
4113
5105
|
}>>;
|
|
5106
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5107
|
+
lead: "lead";
|
|
5108
|
+
big: "big";
|
|
5109
|
+
sub: "sub";
|
|
5110
|
+
}>>;
|
|
4114
5111
|
}, z.core.$strip>, z.ZodObject<{
|
|
4115
5112
|
type: z.ZodLiteral<"metric">;
|
|
4116
5113
|
value: z.ZodString;
|
|
@@ -4180,6 +5177,18 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
4180
5177
|
}, z.core.$strip>]>>>;
|
|
4181
5178
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
4182
5179
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
5180
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5181
|
+
type: z.ZodLiteral<"tag">;
|
|
5182
|
+
text: z.ZodString;
|
|
5183
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5184
|
+
primary: "primary";
|
|
5185
|
+
accent: "accent";
|
|
5186
|
+
success: "success";
|
|
5187
|
+
warning: "warning";
|
|
5188
|
+
danger: "danger";
|
|
5189
|
+
info: "info";
|
|
5190
|
+
highlight: "highlight";
|
|
5191
|
+
}>>;
|
|
4183
5192
|
}, z.core.$strip>], "type">>>;
|
|
4184
5193
|
text: z.ZodOptional<z.ZodString>;
|
|
4185
5194
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4233,6 +5242,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4233
5242
|
info: "info";
|
|
4234
5243
|
highlight: "highlight";
|
|
4235
5244
|
}>>;
|
|
5245
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5246
|
+
lead: "lead";
|
|
5247
|
+
big: "big";
|
|
5248
|
+
sub: "sub";
|
|
5249
|
+
}>>;
|
|
4236
5250
|
}, z.core.$strip>, z.ZodObject<{
|
|
4237
5251
|
type: z.ZodLiteral<"bullets">;
|
|
4238
5252
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -4245,9 +5259,19 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4245
5259
|
no: "no";
|
|
4246
5260
|
warn: "warn";
|
|
4247
5261
|
}>>;
|
|
5262
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5263
|
+
lead: "lead";
|
|
5264
|
+
big: "big";
|
|
5265
|
+
sub: "sub";
|
|
5266
|
+
}>>;
|
|
4248
5267
|
}, z.core.$strip>]>>;
|
|
4249
5268
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4250
5269
|
icon: z.ZodOptional<z.ZodString>;
|
|
5270
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5271
|
+
lead: "lead";
|
|
5272
|
+
big: "big";
|
|
5273
|
+
sub: "sub";
|
|
5274
|
+
}>>;
|
|
4251
5275
|
}, z.core.$strip>, z.ZodObject<{
|
|
4252
5276
|
type: z.ZodLiteral<"code">;
|
|
4253
5277
|
code: z.ZodString;
|
|
@@ -4270,6 +5294,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4270
5294
|
info: "info";
|
|
4271
5295
|
quote: "quote";
|
|
4272
5296
|
}>>;
|
|
5297
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5298
|
+
lead: "lead";
|
|
5299
|
+
big: "big";
|
|
5300
|
+
sub: "sub";
|
|
5301
|
+
}>>;
|
|
4273
5302
|
}, z.core.$strip>, z.ZodObject<{
|
|
4274
5303
|
type: z.ZodLiteral<"metric">;
|
|
4275
5304
|
value: z.ZodString;
|
|
@@ -4339,6 +5368,18 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4339
5368
|
}, z.core.$strip>]>>>;
|
|
4340
5369
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
4341
5370
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
5371
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5372
|
+
type: z.ZodLiteral<"tag">;
|
|
5373
|
+
text: z.ZodString;
|
|
5374
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5375
|
+
primary: "primary";
|
|
5376
|
+
accent: "accent";
|
|
5377
|
+
success: "success";
|
|
5378
|
+
warning: "warning";
|
|
5379
|
+
danger: "danger";
|
|
5380
|
+
info: "info";
|
|
5381
|
+
highlight: "highlight";
|
|
5382
|
+
}>>;
|
|
4342
5383
|
}, z.core.$strip>, z.ZodObject<{
|
|
4343
5384
|
type: z.ZodLiteral<"section">;
|
|
4344
5385
|
label: z.ZodString;
|
|
@@ -4371,6 +5412,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4371
5412
|
info: "info";
|
|
4372
5413
|
highlight: "highlight";
|
|
4373
5414
|
}>>;
|
|
5415
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5416
|
+
lead: "lead";
|
|
5417
|
+
big: "big";
|
|
5418
|
+
sub: "sub";
|
|
5419
|
+
}>>;
|
|
4374
5420
|
}, z.core.$strip>, z.ZodObject<{
|
|
4375
5421
|
type: z.ZodLiteral<"bullets">;
|
|
4376
5422
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -4383,9 +5429,19 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4383
5429
|
no: "no";
|
|
4384
5430
|
warn: "warn";
|
|
4385
5431
|
}>>;
|
|
5432
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5433
|
+
lead: "lead";
|
|
5434
|
+
big: "big";
|
|
5435
|
+
sub: "sub";
|
|
5436
|
+
}>>;
|
|
4386
5437
|
}, z.core.$strip>]>>;
|
|
4387
5438
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4388
5439
|
icon: z.ZodOptional<z.ZodString>;
|
|
5440
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5441
|
+
lead: "lead";
|
|
5442
|
+
big: "big";
|
|
5443
|
+
sub: "sub";
|
|
5444
|
+
}>>;
|
|
4389
5445
|
}, z.core.$strip>, z.ZodObject<{
|
|
4390
5446
|
type: z.ZodLiteral<"code">;
|
|
4391
5447
|
code: z.ZodString;
|
|
@@ -4408,6 +5464,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4408
5464
|
info: "info";
|
|
4409
5465
|
quote: "quote";
|
|
4410
5466
|
}>>;
|
|
5467
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
5468
|
+
lead: "lead";
|
|
5469
|
+
big: "big";
|
|
5470
|
+
sub: "sub";
|
|
5471
|
+
}>>;
|
|
4411
5472
|
}, z.core.$strip>, z.ZodObject<{
|
|
4412
5473
|
type: z.ZodLiteral<"metric">;
|
|
4413
5474
|
value: z.ZodString;
|
|
@@ -4477,6 +5538,18 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4477
5538
|
}, z.core.$strip>]>>>;
|
|
4478
5539
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
4479
5540
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
5541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5542
|
+
type: z.ZodLiteral<"tag">;
|
|
5543
|
+
text: z.ZodString;
|
|
5544
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5545
|
+
primary: "primary";
|
|
5546
|
+
accent: "accent";
|
|
5547
|
+
success: "success";
|
|
5548
|
+
warning: "warning";
|
|
5549
|
+
danger: "danger";
|
|
5550
|
+
info: "info";
|
|
5551
|
+
highlight: "highlight";
|
|
5552
|
+
}>>;
|
|
4480
5553
|
}, z.core.$strip>], "type">>>;
|
|
4481
5554
|
text: z.ZodOptional<z.ZodString>;
|
|
4482
5555
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4519,6 +5592,21 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4519
5592
|
highlight: "highlight";
|
|
4520
5593
|
}>>;
|
|
4521
5594
|
}, z.core.$strip>>;
|
|
5595
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
5596
|
+
default: "default";
|
|
5597
|
+
compact: "compact";
|
|
5598
|
+
}>>;
|
|
5599
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
5600
|
+
default: "default";
|
|
5601
|
+
small: "small";
|
|
5602
|
+
large: "large";
|
|
5603
|
+
hero: "hero";
|
|
5604
|
+
}>>;
|
|
5605
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
5606
|
+
lead: "lead";
|
|
5607
|
+
big: "big";
|
|
5608
|
+
default: "default";
|
|
5609
|
+
}>>;
|
|
4522
5610
|
layout: z.ZodLiteral<"matrix">;
|
|
4523
5611
|
}, z.core.$strip>;
|
|
4524
5612
|
export declare const tableSlideSchema: z.ZodObject<{
|
|
@@ -4588,6 +5676,21 @@ export declare const tableSlideSchema: z.ZodObject<{
|
|
|
4588
5676
|
highlight: "highlight";
|
|
4589
5677
|
}>>;
|
|
4590
5678
|
}, z.core.$strip>>;
|
|
5679
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
5680
|
+
default: "default";
|
|
5681
|
+
compact: "compact";
|
|
5682
|
+
}>>;
|
|
5683
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
5684
|
+
default: "default";
|
|
5685
|
+
small: "small";
|
|
5686
|
+
large: "large";
|
|
5687
|
+
hero: "hero";
|
|
5688
|
+
}>>;
|
|
5689
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
5690
|
+
lead: "lead";
|
|
5691
|
+
big: "big";
|
|
5692
|
+
default: "default";
|
|
5693
|
+
}>>;
|
|
4591
5694
|
layout: z.ZodLiteral<"table">;
|
|
4592
5695
|
}, z.core.$strip>;
|
|
4593
5696
|
export declare const waterfallItemSchema: z.ZodObject<{
|
|
@@ -4669,6 +5772,21 @@ export declare const waterfallSlideSchema: z.ZodObject<{
|
|
|
4669
5772
|
highlight: "highlight";
|
|
4670
5773
|
}>>;
|
|
4671
5774
|
}, z.core.$strip>>;
|
|
5775
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
5776
|
+
default: "default";
|
|
5777
|
+
compact: "compact";
|
|
5778
|
+
}>>;
|
|
5779
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
5780
|
+
default: "default";
|
|
5781
|
+
small: "small";
|
|
5782
|
+
large: "large";
|
|
5783
|
+
hero: "hero";
|
|
5784
|
+
}>>;
|
|
5785
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
5786
|
+
lead: "lead";
|
|
5787
|
+
big: "big";
|
|
5788
|
+
default: "default";
|
|
5789
|
+
}>>;
|
|
4672
5790
|
layout: z.ZodLiteral<"waterfall">;
|
|
4673
5791
|
}, z.core.$strip>;
|
|
4674
5792
|
export declare const funnelStageSchema: z.ZodObject<{
|
|
@@ -4749,6 +5867,21 @@ export declare const funnelSlideSchema: z.ZodObject<{
|
|
|
4749
5867
|
highlight: "highlight";
|
|
4750
5868
|
}>>;
|
|
4751
5869
|
}, z.core.$strip>>;
|
|
5870
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
5871
|
+
default: "default";
|
|
5872
|
+
compact: "compact";
|
|
5873
|
+
}>>;
|
|
5874
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
5875
|
+
default: "default";
|
|
5876
|
+
small: "small";
|
|
5877
|
+
large: "large";
|
|
5878
|
+
hero: "hero";
|
|
5879
|
+
}>>;
|
|
5880
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
5881
|
+
lead: "lead";
|
|
5882
|
+
big: "big";
|
|
5883
|
+
default: "default";
|
|
5884
|
+
}>>;
|
|
4752
5885
|
layout: z.ZodLiteral<"funnel">;
|
|
4753
5886
|
}, z.core.$strip>;
|
|
4754
5887
|
/** A single line in a manifesto / creed grid. */
|
|
@@ -4833,6 +5966,21 @@ export declare const manifestoSlideSchema: z.ZodObject<{
|
|
|
4833
5966
|
highlight: "highlight";
|
|
4834
5967
|
}>>;
|
|
4835
5968
|
}, z.core.$strip>>;
|
|
5969
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
5970
|
+
default: "default";
|
|
5971
|
+
compact: "compact";
|
|
5972
|
+
}>>;
|
|
5973
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
5974
|
+
default: "default";
|
|
5975
|
+
small: "small";
|
|
5976
|
+
large: "large";
|
|
5977
|
+
hero: "hero";
|
|
5978
|
+
}>>;
|
|
5979
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
5980
|
+
lead: "lead";
|
|
5981
|
+
big: "big";
|
|
5982
|
+
default: "default";
|
|
5983
|
+
}>>;
|
|
4836
5984
|
layout: z.ZodLiteral<"manifesto">;
|
|
4837
5985
|
}, z.core.$strip>;
|
|
4838
5986
|
export declare const slideBrandingLogoSchema: z.ZodObject<{
|
|
@@ -4929,6 +6077,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4929
6077
|
highlight: "highlight";
|
|
4930
6078
|
}>>;
|
|
4931
6079
|
}, z.core.$strip>>;
|
|
6080
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
6081
|
+
default: "default";
|
|
6082
|
+
compact: "compact";
|
|
6083
|
+
}>>;
|
|
6084
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
6085
|
+
default: "default";
|
|
6086
|
+
small: "small";
|
|
6087
|
+
large: "large";
|
|
6088
|
+
hero: "hero";
|
|
6089
|
+
}>>;
|
|
6090
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
6091
|
+
lead: "lead";
|
|
6092
|
+
big: "big";
|
|
6093
|
+
default: "default";
|
|
6094
|
+
}>>;
|
|
4932
6095
|
layout: z.ZodLiteral<"title">;
|
|
4933
6096
|
}, z.core.$strip>, z.ZodObject<{
|
|
4934
6097
|
title: z.ZodString;
|
|
@@ -4965,6 +6128,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4965
6128
|
info: "info";
|
|
4966
6129
|
highlight: "highlight";
|
|
4967
6130
|
}>>;
|
|
6131
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6132
|
+
lead: "lead";
|
|
6133
|
+
big: "big";
|
|
6134
|
+
sub: "sub";
|
|
6135
|
+
}>>;
|
|
4968
6136
|
}, z.core.$strip>, z.ZodObject<{
|
|
4969
6137
|
type: z.ZodLiteral<"bullets">;
|
|
4970
6138
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -4977,9 +6145,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4977
6145
|
no: "no";
|
|
4978
6146
|
warn: "warn";
|
|
4979
6147
|
}>>;
|
|
6148
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6149
|
+
lead: "lead";
|
|
6150
|
+
big: "big";
|
|
6151
|
+
sub: "sub";
|
|
6152
|
+
}>>;
|
|
4980
6153
|
}, z.core.$strip>]>>;
|
|
4981
6154
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4982
6155
|
icon: z.ZodOptional<z.ZodString>;
|
|
6156
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6157
|
+
lead: "lead";
|
|
6158
|
+
big: "big";
|
|
6159
|
+
sub: "sub";
|
|
6160
|
+
}>>;
|
|
4983
6161
|
}, z.core.$strip>, z.ZodObject<{
|
|
4984
6162
|
type: z.ZodLiteral<"code">;
|
|
4985
6163
|
code: z.ZodString;
|
|
@@ -5002,6 +6180,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5002
6180
|
info: "info";
|
|
5003
6181
|
quote: "quote";
|
|
5004
6182
|
}>>;
|
|
6183
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6184
|
+
lead: "lead";
|
|
6185
|
+
big: "big";
|
|
6186
|
+
sub: "sub";
|
|
6187
|
+
}>>;
|
|
5005
6188
|
}, z.core.$strip>, z.ZodObject<{
|
|
5006
6189
|
type: z.ZodLiteral<"metric">;
|
|
5007
6190
|
value: z.ZodString;
|
|
@@ -5071,6 +6254,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5071
6254
|
}, z.core.$strip>]>>>;
|
|
5072
6255
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5073
6256
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
6257
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6258
|
+
type: z.ZodLiteral<"tag">;
|
|
6259
|
+
text: z.ZodString;
|
|
6260
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6261
|
+
primary: "primary";
|
|
6262
|
+
accent: "accent";
|
|
6263
|
+
success: "success";
|
|
6264
|
+
warning: "warning";
|
|
6265
|
+
danger: "danger";
|
|
6266
|
+
info: "info";
|
|
6267
|
+
highlight: "highlight";
|
|
6268
|
+
}>>;
|
|
5074
6269
|
}, z.core.$strip>, z.ZodObject<{
|
|
5075
6270
|
type: z.ZodLiteral<"section">;
|
|
5076
6271
|
label: z.ZodString;
|
|
@@ -5103,6 +6298,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5103
6298
|
info: "info";
|
|
5104
6299
|
highlight: "highlight";
|
|
5105
6300
|
}>>;
|
|
6301
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6302
|
+
lead: "lead";
|
|
6303
|
+
big: "big";
|
|
6304
|
+
sub: "sub";
|
|
6305
|
+
}>>;
|
|
5106
6306
|
}, z.core.$strip>, z.ZodObject<{
|
|
5107
6307
|
type: z.ZodLiteral<"bullets">;
|
|
5108
6308
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5115,9 +6315,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5115
6315
|
no: "no";
|
|
5116
6316
|
warn: "warn";
|
|
5117
6317
|
}>>;
|
|
6318
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6319
|
+
lead: "lead";
|
|
6320
|
+
big: "big";
|
|
6321
|
+
sub: "sub";
|
|
6322
|
+
}>>;
|
|
5118
6323
|
}, z.core.$strip>]>>;
|
|
5119
6324
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5120
6325
|
icon: z.ZodOptional<z.ZodString>;
|
|
6326
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6327
|
+
lead: "lead";
|
|
6328
|
+
big: "big";
|
|
6329
|
+
sub: "sub";
|
|
6330
|
+
}>>;
|
|
5121
6331
|
}, z.core.$strip>, z.ZodObject<{
|
|
5122
6332
|
type: z.ZodLiteral<"code">;
|
|
5123
6333
|
code: z.ZodString;
|
|
@@ -5140,6 +6350,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5140
6350
|
info: "info";
|
|
5141
6351
|
quote: "quote";
|
|
5142
6352
|
}>>;
|
|
6353
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6354
|
+
lead: "lead";
|
|
6355
|
+
big: "big";
|
|
6356
|
+
sub: "sub";
|
|
6357
|
+
}>>;
|
|
5143
6358
|
}, z.core.$strip>, z.ZodObject<{
|
|
5144
6359
|
type: z.ZodLiteral<"metric">;
|
|
5145
6360
|
value: z.ZodString;
|
|
@@ -5209,6 +6424,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5209
6424
|
}, z.core.$strip>]>>>;
|
|
5210
6425
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5211
6426
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
6427
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6428
|
+
type: z.ZodLiteral<"tag">;
|
|
6429
|
+
text: z.ZodString;
|
|
6430
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6431
|
+
primary: "primary";
|
|
6432
|
+
accent: "accent";
|
|
6433
|
+
success: "success";
|
|
6434
|
+
warning: "warning";
|
|
6435
|
+
danger: "danger";
|
|
6436
|
+
info: "info";
|
|
6437
|
+
highlight: "highlight";
|
|
6438
|
+
}>>;
|
|
5212
6439
|
}, z.core.$strip>], "type">>>;
|
|
5213
6440
|
text: z.ZodOptional<z.ZodString>;
|
|
5214
6441
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5267,6 +6494,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5267
6494
|
highlight: "highlight";
|
|
5268
6495
|
}>>;
|
|
5269
6496
|
}, z.core.$strip>>;
|
|
6497
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
6498
|
+
default: "default";
|
|
6499
|
+
compact: "compact";
|
|
6500
|
+
}>>;
|
|
6501
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
6502
|
+
default: "default";
|
|
6503
|
+
small: "small";
|
|
6504
|
+
large: "large";
|
|
6505
|
+
hero: "hero";
|
|
6506
|
+
}>>;
|
|
6507
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
6508
|
+
lead: "lead";
|
|
6509
|
+
big: "big";
|
|
6510
|
+
default: "default";
|
|
6511
|
+
}>>;
|
|
5270
6512
|
layout: z.ZodLiteral<"columns">;
|
|
5271
6513
|
}, z.core.$strip>, z.ZodObject<{
|
|
5272
6514
|
title: z.ZodString;
|
|
@@ -5303,6 +6545,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5303
6545
|
info: "info";
|
|
5304
6546
|
highlight: "highlight";
|
|
5305
6547
|
}>>;
|
|
6548
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6549
|
+
lead: "lead";
|
|
6550
|
+
big: "big";
|
|
6551
|
+
sub: "sub";
|
|
6552
|
+
}>>;
|
|
5306
6553
|
}, z.core.$strip>, z.ZodObject<{
|
|
5307
6554
|
type: z.ZodLiteral<"bullets">;
|
|
5308
6555
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5315,9 +6562,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5315
6562
|
no: "no";
|
|
5316
6563
|
warn: "warn";
|
|
5317
6564
|
}>>;
|
|
6565
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6566
|
+
lead: "lead";
|
|
6567
|
+
big: "big";
|
|
6568
|
+
sub: "sub";
|
|
6569
|
+
}>>;
|
|
5318
6570
|
}, z.core.$strip>]>>;
|
|
5319
6571
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5320
6572
|
icon: z.ZodOptional<z.ZodString>;
|
|
6573
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6574
|
+
lead: "lead";
|
|
6575
|
+
big: "big";
|
|
6576
|
+
sub: "sub";
|
|
6577
|
+
}>>;
|
|
5321
6578
|
}, z.core.$strip>, z.ZodObject<{
|
|
5322
6579
|
type: z.ZodLiteral<"code">;
|
|
5323
6580
|
code: z.ZodString;
|
|
@@ -5340,6 +6597,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5340
6597
|
info: "info";
|
|
5341
6598
|
quote: "quote";
|
|
5342
6599
|
}>>;
|
|
6600
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6601
|
+
lead: "lead";
|
|
6602
|
+
big: "big";
|
|
6603
|
+
sub: "sub";
|
|
6604
|
+
}>>;
|
|
5343
6605
|
}, z.core.$strip>, z.ZodObject<{
|
|
5344
6606
|
type: z.ZodLiteral<"metric">;
|
|
5345
6607
|
value: z.ZodString;
|
|
@@ -5409,6 +6671,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5409
6671
|
}, z.core.$strip>]>>>;
|
|
5410
6672
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5411
6673
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
6674
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6675
|
+
type: z.ZodLiteral<"tag">;
|
|
6676
|
+
text: z.ZodString;
|
|
6677
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6678
|
+
primary: "primary";
|
|
6679
|
+
accent: "accent";
|
|
6680
|
+
success: "success";
|
|
6681
|
+
warning: "warning";
|
|
6682
|
+
danger: "danger";
|
|
6683
|
+
info: "info";
|
|
6684
|
+
highlight: "highlight";
|
|
6685
|
+
}>>;
|
|
5412
6686
|
}, z.core.$strip>, z.ZodObject<{
|
|
5413
6687
|
type: z.ZodLiteral<"section">;
|
|
5414
6688
|
label: z.ZodString;
|
|
@@ -5441,6 +6715,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5441
6715
|
info: "info";
|
|
5442
6716
|
highlight: "highlight";
|
|
5443
6717
|
}>>;
|
|
6718
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6719
|
+
lead: "lead";
|
|
6720
|
+
big: "big";
|
|
6721
|
+
sub: "sub";
|
|
6722
|
+
}>>;
|
|
5444
6723
|
}, z.core.$strip>, z.ZodObject<{
|
|
5445
6724
|
type: z.ZodLiteral<"bullets">;
|
|
5446
6725
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5453,9 +6732,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5453
6732
|
no: "no";
|
|
5454
6733
|
warn: "warn";
|
|
5455
6734
|
}>>;
|
|
6735
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6736
|
+
lead: "lead";
|
|
6737
|
+
big: "big";
|
|
6738
|
+
sub: "sub";
|
|
6739
|
+
}>>;
|
|
5456
6740
|
}, z.core.$strip>]>>;
|
|
5457
6741
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5458
6742
|
icon: z.ZodOptional<z.ZodString>;
|
|
6743
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6744
|
+
lead: "lead";
|
|
6745
|
+
big: "big";
|
|
6746
|
+
sub: "sub";
|
|
6747
|
+
}>>;
|
|
5459
6748
|
}, z.core.$strip>, z.ZodObject<{
|
|
5460
6749
|
type: z.ZodLiteral<"code">;
|
|
5461
6750
|
code: z.ZodString;
|
|
@@ -5478,6 +6767,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5478
6767
|
info: "info";
|
|
5479
6768
|
quote: "quote";
|
|
5480
6769
|
}>>;
|
|
6770
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6771
|
+
lead: "lead";
|
|
6772
|
+
big: "big";
|
|
6773
|
+
sub: "sub";
|
|
6774
|
+
}>>;
|
|
5481
6775
|
}, z.core.$strip>, z.ZodObject<{
|
|
5482
6776
|
type: z.ZodLiteral<"metric">;
|
|
5483
6777
|
value: z.ZodString;
|
|
@@ -5547,11 +6841,25 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5547
6841
|
}, z.core.$strip>]>>>;
|
|
5548
6842
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5549
6843
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
6844
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6845
|
+
type: z.ZodLiteral<"tag">;
|
|
6846
|
+
text: z.ZodString;
|
|
6847
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6848
|
+
primary: "primary";
|
|
6849
|
+
accent: "accent";
|
|
6850
|
+
success: "success";
|
|
6851
|
+
warning: "warning";
|
|
6852
|
+
danger: "danger";
|
|
6853
|
+
info: "info";
|
|
6854
|
+
highlight: "highlight";
|
|
6855
|
+
}>>;
|
|
5550
6856
|
}, z.core.$strip>], "type">>>;
|
|
5551
6857
|
text: z.ZodOptional<z.ZodString>;
|
|
5552
6858
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
5553
6859
|
}, z.core.$strip>], "type">>>;
|
|
5554
6860
|
footer: z.ZodOptional<z.ZodString>;
|
|
6861
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
6862
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
5555
6863
|
}, z.core.$strip>;
|
|
5556
6864
|
right: z.ZodObject<{
|
|
5557
6865
|
title: z.ZodString;
|
|
@@ -5584,6 +6892,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5584
6892
|
info: "info";
|
|
5585
6893
|
highlight: "highlight";
|
|
5586
6894
|
}>>;
|
|
6895
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6896
|
+
lead: "lead";
|
|
6897
|
+
big: "big";
|
|
6898
|
+
sub: "sub";
|
|
6899
|
+
}>>;
|
|
5587
6900
|
}, z.core.$strip>, z.ZodObject<{
|
|
5588
6901
|
type: z.ZodLiteral<"bullets">;
|
|
5589
6902
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5596,9 +6909,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5596
6909
|
no: "no";
|
|
5597
6910
|
warn: "warn";
|
|
5598
6911
|
}>>;
|
|
6912
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6913
|
+
lead: "lead";
|
|
6914
|
+
big: "big";
|
|
6915
|
+
sub: "sub";
|
|
6916
|
+
}>>;
|
|
5599
6917
|
}, z.core.$strip>]>>;
|
|
5600
6918
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5601
6919
|
icon: z.ZodOptional<z.ZodString>;
|
|
6920
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6921
|
+
lead: "lead";
|
|
6922
|
+
big: "big";
|
|
6923
|
+
sub: "sub";
|
|
6924
|
+
}>>;
|
|
5602
6925
|
}, z.core.$strip>, z.ZodObject<{
|
|
5603
6926
|
type: z.ZodLiteral<"code">;
|
|
5604
6927
|
code: z.ZodString;
|
|
@@ -5621,6 +6944,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5621
6944
|
info: "info";
|
|
5622
6945
|
quote: "quote";
|
|
5623
6946
|
}>>;
|
|
6947
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
6948
|
+
lead: "lead";
|
|
6949
|
+
big: "big";
|
|
6950
|
+
sub: "sub";
|
|
6951
|
+
}>>;
|
|
5624
6952
|
}, z.core.$strip>, z.ZodObject<{
|
|
5625
6953
|
type: z.ZodLiteral<"metric">;
|
|
5626
6954
|
value: z.ZodString;
|
|
@@ -5690,6 +7018,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5690
7018
|
}, z.core.$strip>]>>>;
|
|
5691
7019
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5692
7020
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
7021
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7022
|
+
type: z.ZodLiteral<"tag">;
|
|
7023
|
+
text: z.ZodString;
|
|
7024
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7025
|
+
primary: "primary";
|
|
7026
|
+
accent: "accent";
|
|
7027
|
+
success: "success";
|
|
7028
|
+
warning: "warning";
|
|
7029
|
+
danger: "danger";
|
|
7030
|
+
info: "info";
|
|
7031
|
+
highlight: "highlight";
|
|
7032
|
+
}>>;
|
|
5693
7033
|
}, z.core.$strip>, z.ZodObject<{
|
|
5694
7034
|
type: z.ZodLiteral<"section">;
|
|
5695
7035
|
label: z.ZodString;
|
|
@@ -5722,6 +7062,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5722
7062
|
info: "info";
|
|
5723
7063
|
highlight: "highlight";
|
|
5724
7064
|
}>>;
|
|
7065
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7066
|
+
lead: "lead";
|
|
7067
|
+
big: "big";
|
|
7068
|
+
sub: "sub";
|
|
7069
|
+
}>>;
|
|
5725
7070
|
}, z.core.$strip>, z.ZodObject<{
|
|
5726
7071
|
type: z.ZodLiteral<"bullets">;
|
|
5727
7072
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5734,9 +7079,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5734
7079
|
no: "no";
|
|
5735
7080
|
warn: "warn";
|
|
5736
7081
|
}>>;
|
|
7082
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7083
|
+
lead: "lead";
|
|
7084
|
+
big: "big";
|
|
7085
|
+
sub: "sub";
|
|
7086
|
+
}>>;
|
|
5737
7087
|
}, z.core.$strip>]>>;
|
|
5738
7088
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5739
7089
|
icon: z.ZodOptional<z.ZodString>;
|
|
7090
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7091
|
+
lead: "lead";
|
|
7092
|
+
big: "big";
|
|
7093
|
+
sub: "sub";
|
|
7094
|
+
}>>;
|
|
5740
7095
|
}, z.core.$strip>, z.ZodObject<{
|
|
5741
7096
|
type: z.ZodLiteral<"code">;
|
|
5742
7097
|
code: z.ZodString;
|
|
@@ -5759,6 +7114,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5759
7114
|
info: "info";
|
|
5760
7115
|
quote: "quote";
|
|
5761
7116
|
}>>;
|
|
7117
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7118
|
+
lead: "lead";
|
|
7119
|
+
big: "big";
|
|
7120
|
+
sub: "sub";
|
|
7121
|
+
}>>;
|
|
5762
7122
|
}, z.core.$strip>, z.ZodObject<{
|
|
5763
7123
|
type: z.ZodLiteral<"metric">;
|
|
5764
7124
|
value: z.ZodString;
|
|
@@ -5828,11 +7188,25 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5828
7188
|
}, z.core.$strip>]>>>;
|
|
5829
7189
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
5830
7190
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
7191
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7192
|
+
type: z.ZodLiteral<"tag">;
|
|
7193
|
+
text: z.ZodString;
|
|
7194
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7195
|
+
primary: "primary";
|
|
7196
|
+
accent: "accent";
|
|
7197
|
+
success: "success";
|
|
7198
|
+
warning: "warning";
|
|
7199
|
+
danger: "danger";
|
|
7200
|
+
info: "info";
|
|
7201
|
+
highlight: "highlight";
|
|
7202
|
+
}>>;
|
|
5831
7203
|
}, z.core.$strip>], "type">>>;
|
|
5832
7204
|
text: z.ZodOptional<z.ZodString>;
|
|
5833
7205
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
5834
7206
|
}, z.core.$strip>], "type">>>;
|
|
5835
7207
|
footer: z.ZodOptional<z.ZodString>;
|
|
7208
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
7209
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
5836
7210
|
}, z.core.$strip>;
|
|
5837
7211
|
callout: z.ZodOptional<z.ZodObject<{
|
|
5838
7212
|
text: z.ZodString;
|
|
@@ -5880,6 +7254,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5880
7254
|
highlight: "highlight";
|
|
5881
7255
|
}>>;
|
|
5882
7256
|
}, z.core.$strip>>;
|
|
7257
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
7258
|
+
default: "default";
|
|
7259
|
+
compact: "compact";
|
|
7260
|
+
}>>;
|
|
7261
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
7262
|
+
default: "default";
|
|
7263
|
+
small: "small";
|
|
7264
|
+
large: "large";
|
|
7265
|
+
hero: "hero";
|
|
7266
|
+
}>>;
|
|
7267
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
7268
|
+
lead: "lead";
|
|
7269
|
+
big: "big";
|
|
7270
|
+
default: "default";
|
|
7271
|
+
}>>;
|
|
5883
7272
|
layout: z.ZodLiteral<"comparison">;
|
|
5884
7273
|
}, z.core.$strip>, z.ZodObject<{
|
|
5885
7274
|
title: z.ZodString;
|
|
@@ -5919,6 +7308,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5919
7308
|
info: "info";
|
|
5920
7309
|
highlight: "highlight";
|
|
5921
7310
|
}>>;
|
|
7311
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7312
|
+
lead: "lead";
|
|
7313
|
+
big: "big";
|
|
7314
|
+
sub: "sub";
|
|
7315
|
+
}>>;
|
|
5922
7316
|
}, z.core.$strip>, z.ZodObject<{
|
|
5923
7317
|
type: z.ZodLiteral<"bullets">;
|
|
5924
7318
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -5931,9 +7325,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5931
7325
|
no: "no";
|
|
5932
7326
|
warn: "warn";
|
|
5933
7327
|
}>>;
|
|
7328
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7329
|
+
lead: "lead";
|
|
7330
|
+
big: "big";
|
|
7331
|
+
sub: "sub";
|
|
7332
|
+
}>>;
|
|
5934
7333
|
}, z.core.$strip>]>>;
|
|
5935
7334
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5936
7335
|
icon: z.ZodOptional<z.ZodString>;
|
|
7336
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7337
|
+
lead: "lead";
|
|
7338
|
+
big: "big";
|
|
7339
|
+
sub: "sub";
|
|
7340
|
+
}>>;
|
|
5937
7341
|
}, z.core.$strip>, z.ZodObject<{
|
|
5938
7342
|
type: z.ZodLiteral<"code">;
|
|
5939
7343
|
code: z.ZodString;
|
|
@@ -5956,6 +7360,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5956
7360
|
info: "info";
|
|
5957
7361
|
quote: "quote";
|
|
5958
7362
|
}>>;
|
|
7363
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7364
|
+
lead: "lead";
|
|
7365
|
+
big: "big";
|
|
7366
|
+
sub: "sub";
|
|
7367
|
+
}>>;
|
|
5959
7368
|
}, z.core.$strip>, z.ZodObject<{
|
|
5960
7369
|
type: z.ZodLiteral<"metric">;
|
|
5961
7370
|
value: z.ZodString;
|
|
@@ -6025,6 +7434,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6025
7434
|
}, z.core.$strip>]>>>;
|
|
6026
7435
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6027
7436
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
7437
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7438
|
+
type: z.ZodLiteral<"tag">;
|
|
7439
|
+
text: z.ZodString;
|
|
7440
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7441
|
+
primary: "primary";
|
|
7442
|
+
accent: "accent";
|
|
7443
|
+
success: "success";
|
|
7444
|
+
warning: "warning";
|
|
7445
|
+
danger: "danger";
|
|
7446
|
+
info: "info";
|
|
7447
|
+
highlight: "highlight";
|
|
7448
|
+
}>>;
|
|
6028
7449
|
}, z.core.$strip>, z.ZodObject<{
|
|
6029
7450
|
type: z.ZodLiteral<"section">;
|
|
6030
7451
|
label: z.ZodString;
|
|
@@ -6057,6 +7478,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6057
7478
|
info: "info";
|
|
6058
7479
|
highlight: "highlight";
|
|
6059
7480
|
}>>;
|
|
7481
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7482
|
+
lead: "lead";
|
|
7483
|
+
big: "big";
|
|
7484
|
+
sub: "sub";
|
|
7485
|
+
}>>;
|
|
6060
7486
|
}, z.core.$strip>, z.ZodObject<{
|
|
6061
7487
|
type: z.ZodLiteral<"bullets">;
|
|
6062
7488
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -6069,9 +7495,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6069
7495
|
no: "no";
|
|
6070
7496
|
warn: "warn";
|
|
6071
7497
|
}>>;
|
|
7498
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7499
|
+
lead: "lead";
|
|
7500
|
+
big: "big";
|
|
7501
|
+
sub: "sub";
|
|
7502
|
+
}>>;
|
|
6072
7503
|
}, z.core.$strip>]>>;
|
|
6073
7504
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6074
7505
|
icon: z.ZodOptional<z.ZodString>;
|
|
7506
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7507
|
+
lead: "lead";
|
|
7508
|
+
big: "big";
|
|
7509
|
+
sub: "sub";
|
|
7510
|
+
}>>;
|
|
6075
7511
|
}, z.core.$strip>, z.ZodObject<{
|
|
6076
7512
|
type: z.ZodLiteral<"code">;
|
|
6077
7513
|
code: z.ZodString;
|
|
@@ -6094,6 +7530,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6094
7530
|
info: "info";
|
|
6095
7531
|
quote: "quote";
|
|
6096
7532
|
}>>;
|
|
7533
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7534
|
+
lead: "lead";
|
|
7535
|
+
big: "big";
|
|
7536
|
+
sub: "sub";
|
|
7537
|
+
}>>;
|
|
6097
7538
|
}, z.core.$strip>, z.ZodObject<{
|
|
6098
7539
|
type: z.ZodLiteral<"metric">;
|
|
6099
7540
|
value: z.ZodString;
|
|
@@ -6163,10 +7604,23 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6163
7604
|
}, z.core.$strip>]>>>;
|
|
6164
7605
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6165
7606
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
7607
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7608
|
+
type: z.ZodLiteral<"tag">;
|
|
7609
|
+
text: z.ZodString;
|
|
7610
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7611
|
+
primary: "primary";
|
|
7612
|
+
accent: "accent";
|
|
7613
|
+
success: "success";
|
|
7614
|
+
warning: "warning";
|
|
7615
|
+
danger: "danger";
|
|
7616
|
+
info: "info";
|
|
7617
|
+
highlight: "highlight";
|
|
7618
|
+
}>>;
|
|
6166
7619
|
}, z.core.$strip>], "type">>>;
|
|
6167
7620
|
text: z.ZodOptional<z.ZodString>;
|
|
6168
7621
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
6169
7622
|
}, z.core.$strip>], "type">>>;
|
|
7623
|
+
span: z.ZodOptional<z.ZodNumber>;
|
|
6170
7624
|
}, z.core.$strip>>;
|
|
6171
7625
|
footer: z.ZodOptional<z.ZodString>;
|
|
6172
7626
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6197,6 +7651,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6197
7651
|
highlight: "highlight";
|
|
6198
7652
|
}>>;
|
|
6199
7653
|
}, z.core.$strip>>;
|
|
7654
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
7655
|
+
default: "default";
|
|
7656
|
+
compact: "compact";
|
|
7657
|
+
}>>;
|
|
7658
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
7659
|
+
default: "default";
|
|
7660
|
+
small: "small";
|
|
7661
|
+
large: "large";
|
|
7662
|
+
hero: "hero";
|
|
7663
|
+
}>>;
|
|
7664
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
7665
|
+
lead: "lead";
|
|
7666
|
+
big: "big";
|
|
7667
|
+
default: "default";
|
|
7668
|
+
}>>;
|
|
6200
7669
|
layout: z.ZodLiteral<"grid">;
|
|
6201
7670
|
}, z.core.$strip>, z.ZodObject<{
|
|
6202
7671
|
quote: z.ZodString;
|
|
@@ -6230,6 +7699,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6230
7699
|
highlight: "highlight";
|
|
6231
7700
|
}>>;
|
|
6232
7701
|
}, z.core.$strip>>;
|
|
7702
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
7703
|
+
default: "default";
|
|
7704
|
+
compact: "compact";
|
|
7705
|
+
}>>;
|
|
7706
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
7707
|
+
default: "default";
|
|
7708
|
+
small: "small";
|
|
7709
|
+
large: "large";
|
|
7710
|
+
hero: "hero";
|
|
7711
|
+
}>>;
|
|
7712
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
7713
|
+
lead: "lead";
|
|
7714
|
+
big: "big";
|
|
7715
|
+
default: "default";
|
|
7716
|
+
}>>;
|
|
6233
7717
|
layout: z.ZodLiteral<"bigQuote">;
|
|
6234
7718
|
}, z.core.$strip>, z.ZodObject<{
|
|
6235
7719
|
title: z.ZodString;
|
|
@@ -6296,6 +7780,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6296
7780
|
highlight: "highlight";
|
|
6297
7781
|
}>>;
|
|
6298
7782
|
}, z.core.$strip>>;
|
|
7783
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
7784
|
+
default: "default";
|
|
7785
|
+
compact: "compact";
|
|
7786
|
+
}>>;
|
|
7787
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
7788
|
+
default: "default";
|
|
7789
|
+
small: "small";
|
|
7790
|
+
large: "large";
|
|
7791
|
+
hero: "hero";
|
|
7792
|
+
}>>;
|
|
7793
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
7794
|
+
lead: "lead";
|
|
7795
|
+
big: "big";
|
|
7796
|
+
default: "default";
|
|
7797
|
+
}>>;
|
|
6299
7798
|
layout: z.ZodLiteral<"stats">;
|
|
6300
7799
|
}, z.core.$strip>, z.ZodObject<{
|
|
6301
7800
|
title: z.ZodString;
|
|
@@ -6345,6 +7844,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6345
7844
|
highlight: "highlight";
|
|
6346
7845
|
}>>;
|
|
6347
7846
|
}, z.core.$strip>>;
|
|
7847
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
7848
|
+
default: "default";
|
|
7849
|
+
compact: "compact";
|
|
7850
|
+
}>>;
|
|
7851
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
7852
|
+
default: "default";
|
|
7853
|
+
small: "small";
|
|
7854
|
+
large: "large";
|
|
7855
|
+
hero: "hero";
|
|
7856
|
+
}>>;
|
|
7857
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
7858
|
+
lead: "lead";
|
|
7859
|
+
big: "big";
|
|
7860
|
+
default: "default";
|
|
7861
|
+
}>>;
|
|
6348
7862
|
layout: z.ZodLiteral<"timeline">;
|
|
6349
7863
|
}, z.core.$strip>, z.ZodObject<{
|
|
6350
7864
|
left: z.ZodOptional<z.ZodObject<{
|
|
@@ -6381,6 +7895,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6381
7895
|
info: "info";
|
|
6382
7896
|
highlight: "highlight";
|
|
6383
7897
|
}>>;
|
|
7898
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7899
|
+
lead: "lead";
|
|
7900
|
+
big: "big";
|
|
7901
|
+
sub: "sub";
|
|
7902
|
+
}>>;
|
|
6384
7903
|
}, z.core.$strip>, z.ZodObject<{
|
|
6385
7904
|
type: z.ZodLiteral<"bullets">;
|
|
6386
7905
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -6393,9 +7912,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6393
7912
|
no: "no";
|
|
6394
7913
|
warn: "warn";
|
|
6395
7914
|
}>>;
|
|
7915
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7916
|
+
lead: "lead";
|
|
7917
|
+
big: "big";
|
|
7918
|
+
sub: "sub";
|
|
7919
|
+
}>>;
|
|
6396
7920
|
}, z.core.$strip>]>>;
|
|
6397
7921
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6398
7922
|
icon: z.ZodOptional<z.ZodString>;
|
|
7923
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7924
|
+
lead: "lead";
|
|
7925
|
+
big: "big";
|
|
7926
|
+
sub: "sub";
|
|
7927
|
+
}>>;
|
|
6399
7928
|
}, z.core.$strip>, z.ZodObject<{
|
|
6400
7929
|
type: z.ZodLiteral<"code">;
|
|
6401
7930
|
code: z.ZodString;
|
|
@@ -6418,6 +7947,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6418
7947
|
info: "info";
|
|
6419
7948
|
quote: "quote";
|
|
6420
7949
|
}>>;
|
|
7950
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
7951
|
+
lead: "lead";
|
|
7952
|
+
big: "big";
|
|
7953
|
+
sub: "sub";
|
|
7954
|
+
}>>;
|
|
6421
7955
|
}, z.core.$strip>, z.ZodObject<{
|
|
6422
7956
|
type: z.ZodLiteral<"metric">;
|
|
6423
7957
|
value: z.ZodString;
|
|
@@ -6487,6 +8021,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6487
8021
|
}, z.core.$strip>]>>>;
|
|
6488
8022
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6489
8023
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8024
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8025
|
+
type: z.ZodLiteral<"tag">;
|
|
8026
|
+
text: z.ZodString;
|
|
8027
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8028
|
+
primary: "primary";
|
|
8029
|
+
accent: "accent";
|
|
8030
|
+
success: "success";
|
|
8031
|
+
warning: "warning";
|
|
8032
|
+
danger: "danger";
|
|
8033
|
+
info: "info";
|
|
8034
|
+
highlight: "highlight";
|
|
8035
|
+
}>>;
|
|
6490
8036
|
}, z.core.$strip>, z.ZodObject<{
|
|
6491
8037
|
type: z.ZodLiteral<"section">;
|
|
6492
8038
|
label: z.ZodString;
|
|
@@ -6519,6 +8065,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6519
8065
|
info: "info";
|
|
6520
8066
|
highlight: "highlight";
|
|
6521
8067
|
}>>;
|
|
8068
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8069
|
+
lead: "lead";
|
|
8070
|
+
big: "big";
|
|
8071
|
+
sub: "sub";
|
|
8072
|
+
}>>;
|
|
6522
8073
|
}, z.core.$strip>, z.ZodObject<{
|
|
6523
8074
|
type: z.ZodLiteral<"bullets">;
|
|
6524
8075
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -6531,9 +8082,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6531
8082
|
no: "no";
|
|
6532
8083
|
warn: "warn";
|
|
6533
8084
|
}>>;
|
|
8085
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8086
|
+
lead: "lead";
|
|
8087
|
+
big: "big";
|
|
8088
|
+
sub: "sub";
|
|
8089
|
+
}>>;
|
|
6534
8090
|
}, z.core.$strip>]>>;
|
|
6535
8091
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6536
8092
|
icon: z.ZodOptional<z.ZodString>;
|
|
8093
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8094
|
+
lead: "lead";
|
|
8095
|
+
big: "big";
|
|
8096
|
+
sub: "sub";
|
|
8097
|
+
}>>;
|
|
6537
8098
|
}, z.core.$strip>, z.ZodObject<{
|
|
6538
8099
|
type: z.ZodLiteral<"code">;
|
|
6539
8100
|
code: z.ZodString;
|
|
@@ -6556,6 +8117,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6556
8117
|
info: "info";
|
|
6557
8118
|
quote: "quote";
|
|
6558
8119
|
}>>;
|
|
8120
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8121
|
+
lead: "lead";
|
|
8122
|
+
big: "big";
|
|
8123
|
+
sub: "sub";
|
|
8124
|
+
}>>;
|
|
6559
8125
|
}, z.core.$strip>, z.ZodObject<{
|
|
6560
8126
|
type: z.ZodLiteral<"metric">;
|
|
6561
8127
|
value: z.ZodString;
|
|
@@ -6625,6 +8191,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6625
8191
|
}, z.core.$strip>]>>>;
|
|
6626
8192
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6627
8193
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8194
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8195
|
+
type: z.ZodLiteral<"tag">;
|
|
8196
|
+
text: z.ZodString;
|
|
8197
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8198
|
+
primary: "primary";
|
|
8199
|
+
accent: "accent";
|
|
8200
|
+
success: "success";
|
|
8201
|
+
warning: "warning";
|
|
8202
|
+
danger: "danger";
|
|
8203
|
+
info: "info";
|
|
8204
|
+
highlight: "highlight";
|
|
8205
|
+
}>>;
|
|
6628
8206
|
}, z.core.$strip>], "type">>>;
|
|
6629
8207
|
text: z.ZodOptional<z.ZodString>;
|
|
6630
8208
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6671,6 +8249,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6671
8249
|
info: "info";
|
|
6672
8250
|
highlight: "highlight";
|
|
6673
8251
|
}>>;
|
|
8252
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8253
|
+
lead: "lead";
|
|
8254
|
+
big: "big";
|
|
8255
|
+
sub: "sub";
|
|
8256
|
+
}>>;
|
|
6674
8257
|
}, z.core.$strip>, z.ZodObject<{
|
|
6675
8258
|
type: z.ZodLiteral<"bullets">;
|
|
6676
8259
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -6683,9 +8266,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6683
8266
|
no: "no";
|
|
6684
8267
|
warn: "warn";
|
|
6685
8268
|
}>>;
|
|
8269
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8270
|
+
lead: "lead";
|
|
8271
|
+
big: "big";
|
|
8272
|
+
sub: "sub";
|
|
8273
|
+
}>>;
|
|
6686
8274
|
}, z.core.$strip>]>>;
|
|
6687
8275
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6688
8276
|
icon: z.ZodOptional<z.ZodString>;
|
|
8277
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8278
|
+
lead: "lead";
|
|
8279
|
+
big: "big";
|
|
8280
|
+
sub: "sub";
|
|
8281
|
+
}>>;
|
|
6689
8282
|
}, z.core.$strip>, z.ZodObject<{
|
|
6690
8283
|
type: z.ZodLiteral<"code">;
|
|
6691
8284
|
code: z.ZodString;
|
|
@@ -6708,6 +8301,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6708
8301
|
info: "info";
|
|
6709
8302
|
quote: "quote";
|
|
6710
8303
|
}>>;
|
|
8304
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8305
|
+
lead: "lead";
|
|
8306
|
+
big: "big";
|
|
8307
|
+
sub: "sub";
|
|
8308
|
+
}>>;
|
|
6711
8309
|
}, z.core.$strip>, z.ZodObject<{
|
|
6712
8310
|
type: z.ZodLiteral<"metric">;
|
|
6713
8311
|
value: z.ZodString;
|
|
@@ -6777,6 +8375,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6777
8375
|
}, z.core.$strip>]>>>;
|
|
6778
8376
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6779
8377
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8378
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8379
|
+
type: z.ZodLiteral<"tag">;
|
|
8380
|
+
text: z.ZodString;
|
|
8381
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8382
|
+
primary: "primary";
|
|
8383
|
+
accent: "accent";
|
|
8384
|
+
success: "success";
|
|
8385
|
+
warning: "warning";
|
|
8386
|
+
danger: "danger";
|
|
8387
|
+
info: "info";
|
|
8388
|
+
highlight: "highlight";
|
|
8389
|
+
}>>;
|
|
6780
8390
|
}, z.core.$strip>, z.ZodObject<{
|
|
6781
8391
|
type: z.ZodLiteral<"section">;
|
|
6782
8392
|
label: z.ZodString;
|
|
@@ -6809,6 +8419,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6809
8419
|
info: "info";
|
|
6810
8420
|
highlight: "highlight";
|
|
6811
8421
|
}>>;
|
|
8422
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8423
|
+
lead: "lead";
|
|
8424
|
+
big: "big";
|
|
8425
|
+
sub: "sub";
|
|
8426
|
+
}>>;
|
|
6812
8427
|
}, z.core.$strip>, z.ZodObject<{
|
|
6813
8428
|
type: z.ZodLiteral<"bullets">;
|
|
6814
8429
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -6821,9 +8436,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6821
8436
|
no: "no";
|
|
6822
8437
|
warn: "warn";
|
|
6823
8438
|
}>>;
|
|
8439
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8440
|
+
lead: "lead";
|
|
8441
|
+
big: "big";
|
|
8442
|
+
sub: "sub";
|
|
8443
|
+
}>>;
|
|
6824
8444
|
}, z.core.$strip>]>>;
|
|
6825
8445
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6826
8446
|
icon: z.ZodOptional<z.ZodString>;
|
|
8447
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8448
|
+
lead: "lead";
|
|
8449
|
+
big: "big";
|
|
8450
|
+
sub: "sub";
|
|
8451
|
+
}>>;
|
|
6827
8452
|
}, z.core.$strip>, z.ZodObject<{
|
|
6828
8453
|
type: z.ZodLiteral<"code">;
|
|
6829
8454
|
code: z.ZodString;
|
|
@@ -6846,6 +8471,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6846
8471
|
info: "info";
|
|
6847
8472
|
quote: "quote";
|
|
6848
8473
|
}>>;
|
|
8474
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8475
|
+
lead: "lead";
|
|
8476
|
+
big: "big";
|
|
8477
|
+
sub: "sub";
|
|
8478
|
+
}>>;
|
|
6849
8479
|
}, z.core.$strip>, z.ZodObject<{
|
|
6850
8480
|
type: z.ZodLiteral<"metric">;
|
|
6851
8481
|
value: z.ZodString;
|
|
@@ -6915,6 +8545,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6915
8545
|
}, z.core.$strip>]>>>;
|
|
6916
8546
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
6917
8547
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8548
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8549
|
+
type: z.ZodLiteral<"tag">;
|
|
8550
|
+
text: z.ZodString;
|
|
8551
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8552
|
+
primary: "primary";
|
|
8553
|
+
accent: "accent";
|
|
8554
|
+
success: "success";
|
|
8555
|
+
warning: "warning";
|
|
8556
|
+
danger: "danger";
|
|
8557
|
+
info: "info";
|
|
8558
|
+
highlight: "highlight";
|
|
8559
|
+
}>>;
|
|
6918
8560
|
}, z.core.$strip>], "type">>>;
|
|
6919
8561
|
text: z.ZodOptional<z.ZodString>;
|
|
6920
8562
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6955,6 +8597,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6955
8597
|
highlight: "highlight";
|
|
6956
8598
|
}>>;
|
|
6957
8599
|
}, z.core.$strip>>;
|
|
8600
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
8601
|
+
default: "default";
|
|
8602
|
+
compact: "compact";
|
|
8603
|
+
}>>;
|
|
8604
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
8605
|
+
default: "default";
|
|
8606
|
+
small: "small";
|
|
8607
|
+
large: "large";
|
|
8608
|
+
hero: "hero";
|
|
8609
|
+
}>>;
|
|
8610
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
8611
|
+
lead: "lead";
|
|
8612
|
+
big: "big";
|
|
8613
|
+
default: "default";
|
|
8614
|
+
}>>;
|
|
6958
8615
|
layout: z.ZodLiteral<"split">;
|
|
6959
8616
|
}, z.core.$strip>, z.ZodObject<{
|
|
6960
8617
|
title: z.ZodString;
|
|
@@ -6995,6 +8652,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6995
8652
|
info: "info";
|
|
6996
8653
|
highlight: "highlight";
|
|
6997
8654
|
}>>;
|
|
8655
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8656
|
+
lead: "lead";
|
|
8657
|
+
big: "big";
|
|
8658
|
+
sub: "sub";
|
|
8659
|
+
}>>;
|
|
6998
8660
|
}, z.core.$strip>, z.ZodObject<{
|
|
6999
8661
|
type: z.ZodLiteral<"bullets">;
|
|
7000
8662
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7007,9 +8669,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7007
8669
|
no: "no";
|
|
7008
8670
|
warn: "warn";
|
|
7009
8671
|
}>>;
|
|
8672
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8673
|
+
lead: "lead";
|
|
8674
|
+
big: "big";
|
|
8675
|
+
sub: "sub";
|
|
8676
|
+
}>>;
|
|
7010
8677
|
}, z.core.$strip>]>>;
|
|
7011
8678
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7012
8679
|
icon: z.ZodOptional<z.ZodString>;
|
|
8680
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8681
|
+
lead: "lead";
|
|
8682
|
+
big: "big";
|
|
8683
|
+
sub: "sub";
|
|
8684
|
+
}>>;
|
|
7013
8685
|
}, z.core.$strip>, z.ZodObject<{
|
|
7014
8686
|
type: z.ZodLiteral<"code">;
|
|
7015
8687
|
code: z.ZodString;
|
|
@@ -7032,6 +8704,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7032
8704
|
info: "info";
|
|
7033
8705
|
quote: "quote";
|
|
7034
8706
|
}>>;
|
|
8707
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8708
|
+
lead: "lead";
|
|
8709
|
+
big: "big";
|
|
8710
|
+
sub: "sub";
|
|
8711
|
+
}>>;
|
|
7035
8712
|
}, z.core.$strip>, z.ZodObject<{
|
|
7036
8713
|
type: z.ZodLiteral<"metric">;
|
|
7037
8714
|
value: z.ZodString;
|
|
@@ -7101,6 +8778,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7101
8778
|
}, z.core.$strip>]>>>;
|
|
7102
8779
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
7103
8780
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8781
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8782
|
+
type: z.ZodLiteral<"tag">;
|
|
8783
|
+
text: z.ZodString;
|
|
8784
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8785
|
+
primary: "primary";
|
|
8786
|
+
accent: "accent";
|
|
8787
|
+
success: "success";
|
|
8788
|
+
warning: "warning";
|
|
8789
|
+
danger: "danger";
|
|
8790
|
+
info: "info";
|
|
8791
|
+
highlight: "highlight";
|
|
8792
|
+
}>>;
|
|
7104
8793
|
}, z.core.$strip>, z.ZodObject<{
|
|
7105
8794
|
type: z.ZodLiteral<"section">;
|
|
7106
8795
|
label: z.ZodString;
|
|
@@ -7133,6 +8822,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7133
8822
|
info: "info";
|
|
7134
8823
|
highlight: "highlight";
|
|
7135
8824
|
}>>;
|
|
8825
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8826
|
+
lead: "lead";
|
|
8827
|
+
big: "big";
|
|
8828
|
+
sub: "sub";
|
|
8829
|
+
}>>;
|
|
7136
8830
|
}, z.core.$strip>, z.ZodObject<{
|
|
7137
8831
|
type: z.ZodLiteral<"bullets">;
|
|
7138
8832
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7145,9 +8839,19 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7145
8839
|
no: "no";
|
|
7146
8840
|
warn: "warn";
|
|
7147
8841
|
}>>;
|
|
8842
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8843
|
+
lead: "lead";
|
|
8844
|
+
big: "big";
|
|
8845
|
+
sub: "sub";
|
|
8846
|
+
}>>;
|
|
7148
8847
|
}, z.core.$strip>]>>;
|
|
7149
8848
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7150
8849
|
icon: z.ZodOptional<z.ZodString>;
|
|
8850
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8851
|
+
lead: "lead";
|
|
8852
|
+
big: "big";
|
|
8853
|
+
sub: "sub";
|
|
8854
|
+
}>>;
|
|
7151
8855
|
}, z.core.$strip>, z.ZodObject<{
|
|
7152
8856
|
type: z.ZodLiteral<"code">;
|
|
7153
8857
|
code: z.ZodString;
|
|
@@ -7170,6 +8874,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7170
8874
|
info: "info";
|
|
7171
8875
|
quote: "quote";
|
|
7172
8876
|
}>>;
|
|
8877
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
8878
|
+
lead: "lead";
|
|
8879
|
+
big: "big";
|
|
8880
|
+
sub: "sub";
|
|
8881
|
+
}>>;
|
|
7173
8882
|
}, z.core.$strip>, z.ZodObject<{
|
|
7174
8883
|
type: z.ZodLiteral<"metric">;
|
|
7175
8884
|
value: z.ZodString;
|
|
@@ -7239,6 +8948,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7239
8948
|
}, z.core.$strip>]>>>;
|
|
7240
8949
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
7241
8950
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
8951
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8952
|
+
type: z.ZodLiteral<"tag">;
|
|
8953
|
+
text: z.ZodString;
|
|
8954
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8955
|
+
primary: "primary";
|
|
8956
|
+
accent: "accent";
|
|
8957
|
+
success: "success";
|
|
8958
|
+
warning: "warning";
|
|
8959
|
+
danger: "danger";
|
|
8960
|
+
info: "info";
|
|
8961
|
+
highlight: "highlight";
|
|
8962
|
+
}>>;
|
|
7242
8963
|
}, z.core.$strip>], "type">>>;
|
|
7243
8964
|
text: z.ZodOptional<z.ZodString>;
|
|
7244
8965
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7281,6 +9002,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7281
9002
|
highlight: "highlight";
|
|
7282
9003
|
}>>;
|
|
7283
9004
|
}, z.core.$strip>>;
|
|
9005
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9006
|
+
default: "default";
|
|
9007
|
+
compact: "compact";
|
|
9008
|
+
}>>;
|
|
9009
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9010
|
+
default: "default";
|
|
9011
|
+
small: "small";
|
|
9012
|
+
large: "large";
|
|
9013
|
+
hero: "hero";
|
|
9014
|
+
}>>;
|
|
9015
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9016
|
+
lead: "lead";
|
|
9017
|
+
big: "big";
|
|
9018
|
+
default: "default";
|
|
9019
|
+
}>>;
|
|
7284
9020
|
layout: z.ZodLiteral<"matrix">;
|
|
7285
9021
|
}, z.core.$strip>, z.ZodObject<{
|
|
7286
9022
|
title: z.ZodString;
|
|
@@ -7349,6 +9085,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7349
9085
|
highlight: "highlight";
|
|
7350
9086
|
}>>;
|
|
7351
9087
|
}, z.core.$strip>>;
|
|
9088
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9089
|
+
default: "default";
|
|
9090
|
+
compact: "compact";
|
|
9091
|
+
}>>;
|
|
9092
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9093
|
+
default: "default";
|
|
9094
|
+
small: "small";
|
|
9095
|
+
large: "large";
|
|
9096
|
+
hero: "hero";
|
|
9097
|
+
}>>;
|
|
9098
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9099
|
+
lead: "lead";
|
|
9100
|
+
big: "big";
|
|
9101
|
+
default: "default";
|
|
9102
|
+
}>>;
|
|
7352
9103
|
layout: z.ZodLiteral<"table">;
|
|
7353
9104
|
}, z.core.$strip>, z.ZodObject<{
|
|
7354
9105
|
title: z.ZodString;
|
|
@@ -7414,6 +9165,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7414
9165
|
highlight: "highlight";
|
|
7415
9166
|
}>>;
|
|
7416
9167
|
}, z.core.$strip>>;
|
|
9168
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9169
|
+
default: "default";
|
|
9170
|
+
compact: "compact";
|
|
9171
|
+
}>>;
|
|
9172
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9173
|
+
default: "default";
|
|
9174
|
+
small: "small";
|
|
9175
|
+
large: "large";
|
|
9176
|
+
hero: "hero";
|
|
9177
|
+
}>>;
|
|
9178
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9179
|
+
lead: "lead";
|
|
9180
|
+
big: "big";
|
|
9181
|
+
default: "default";
|
|
9182
|
+
}>>;
|
|
7417
9183
|
layout: z.ZodLiteral<"funnel">;
|
|
7418
9184
|
}, z.core.$strip>, z.ZodObject<{
|
|
7419
9185
|
title: z.ZodString;
|
|
@@ -7480,6 +9246,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7480
9246
|
highlight: "highlight";
|
|
7481
9247
|
}>>;
|
|
7482
9248
|
}, z.core.$strip>>;
|
|
9249
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9250
|
+
default: "default";
|
|
9251
|
+
compact: "compact";
|
|
9252
|
+
}>>;
|
|
9253
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9254
|
+
default: "default";
|
|
9255
|
+
small: "small";
|
|
9256
|
+
large: "large";
|
|
9257
|
+
hero: "hero";
|
|
9258
|
+
}>>;
|
|
9259
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9260
|
+
lead: "lead";
|
|
9261
|
+
big: "big";
|
|
9262
|
+
default: "default";
|
|
9263
|
+
}>>;
|
|
7483
9264
|
layout: z.ZodLiteral<"waterfall">;
|
|
7484
9265
|
}, z.core.$strip>, z.ZodObject<{
|
|
7485
9266
|
title: z.ZodString;
|
|
@@ -7545,6 +9326,21 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7545
9326
|
highlight: "highlight";
|
|
7546
9327
|
}>>;
|
|
7547
9328
|
}, z.core.$strip>>;
|
|
9329
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9330
|
+
default: "default";
|
|
9331
|
+
compact: "compact";
|
|
9332
|
+
}>>;
|
|
9333
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9334
|
+
default: "default";
|
|
9335
|
+
small: "small";
|
|
9336
|
+
large: "large";
|
|
9337
|
+
hero: "hero";
|
|
9338
|
+
}>>;
|
|
9339
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9340
|
+
lead: "lead";
|
|
9341
|
+
big: "big";
|
|
9342
|
+
default: "default";
|
|
9343
|
+
}>>;
|
|
7548
9344
|
layout: z.ZodLiteral<"manifesto">;
|
|
7549
9345
|
}, z.core.$strip>], "layout">;
|
|
7550
9346
|
/** Media schema registered in mulmoImageAssetSchema */
|
|
@@ -7574,6 +9370,10 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7574
9370
|
}, z.core.$strip>;
|
|
7575
9371
|
bgGradient: z.ZodOptional<z.ZodString>;
|
|
7576
9372
|
titleGradient: z.ZodOptional<z.ZodString>;
|
|
9373
|
+
cardStyle: z.ZodOptional<z.ZodEnum<{
|
|
9374
|
+
glass: "glass";
|
|
9375
|
+
solid: "solid";
|
|
9376
|
+
}>>;
|
|
7577
9377
|
}, z.core.$strip>>;
|
|
7578
9378
|
slide: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7579
9379
|
title: z.ZodString;
|
|
@@ -7609,6 +9409,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7609
9409
|
highlight: "highlight";
|
|
7610
9410
|
}>>;
|
|
7611
9411
|
}, z.core.$strip>>;
|
|
9412
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9413
|
+
default: "default";
|
|
9414
|
+
compact: "compact";
|
|
9415
|
+
}>>;
|
|
9416
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9417
|
+
default: "default";
|
|
9418
|
+
small: "small";
|
|
9419
|
+
large: "large";
|
|
9420
|
+
hero: "hero";
|
|
9421
|
+
}>>;
|
|
9422
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9423
|
+
lead: "lead";
|
|
9424
|
+
big: "big";
|
|
9425
|
+
default: "default";
|
|
9426
|
+
}>>;
|
|
7612
9427
|
layout: z.ZodLiteral<"title">;
|
|
7613
9428
|
}, z.core.$strip>, z.ZodObject<{
|
|
7614
9429
|
title: z.ZodString;
|
|
@@ -7645,6 +9460,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7645
9460
|
info: "info";
|
|
7646
9461
|
highlight: "highlight";
|
|
7647
9462
|
}>>;
|
|
9463
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9464
|
+
lead: "lead";
|
|
9465
|
+
big: "big";
|
|
9466
|
+
sub: "sub";
|
|
9467
|
+
}>>;
|
|
7648
9468
|
}, z.core.$strip>, z.ZodObject<{
|
|
7649
9469
|
type: z.ZodLiteral<"bullets">;
|
|
7650
9470
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7657,9 +9477,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7657
9477
|
no: "no";
|
|
7658
9478
|
warn: "warn";
|
|
7659
9479
|
}>>;
|
|
9480
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9481
|
+
lead: "lead";
|
|
9482
|
+
big: "big";
|
|
9483
|
+
sub: "sub";
|
|
9484
|
+
}>>;
|
|
7660
9485
|
}, z.core.$strip>]>>;
|
|
7661
9486
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7662
9487
|
icon: z.ZodOptional<z.ZodString>;
|
|
9488
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9489
|
+
lead: "lead";
|
|
9490
|
+
big: "big";
|
|
9491
|
+
sub: "sub";
|
|
9492
|
+
}>>;
|
|
7663
9493
|
}, z.core.$strip>, z.ZodObject<{
|
|
7664
9494
|
type: z.ZodLiteral<"code">;
|
|
7665
9495
|
code: z.ZodString;
|
|
@@ -7682,6 +9512,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7682
9512
|
info: "info";
|
|
7683
9513
|
quote: "quote";
|
|
7684
9514
|
}>>;
|
|
9515
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9516
|
+
lead: "lead";
|
|
9517
|
+
big: "big";
|
|
9518
|
+
sub: "sub";
|
|
9519
|
+
}>>;
|
|
7685
9520
|
}, z.core.$strip>, z.ZodObject<{
|
|
7686
9521
|
type: z.ZodLiteral<"metric">;
|
|
7687
9522
|
value: z.ZodString;
|
|
@@ -7751,6 +9586,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7751
9586
|
}, z.core.$strip>]>>>;
|
|
7752
9587
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
7753
9588
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
9589
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9590
|
+
type: z.ZodLiteral<"tag">;
|
|
9591
|
+
text: z.ZodString;
|
|
9592
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
9593
|
+
primary: "primary";
|
|
9594
|
+
accent: "accent";
|
|
9595
|
+
success: "success";
|
|
9596
|
+
warning: "warning";
|
|
9597
|
+
danger: "danger";
|
|
9598
|
+
info: "info";
|
|
9599
|
+
highlight: "highlight";
|
|
9600
|
+
}>>;
|
|
7754
9601
|
}, z.core.$strip>, z.ZodObject<{
|
|
7755
9602
|
type: z.ZodLiteral<"section">;
|
|
7756
9603
|
label: z.ZodString;
|
|
@@ -7783,6 +9630,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7783
9630
|
info: "info";
|
|
7784
9631
|
highlight: "highlight";
|
|
7785
9632
|
}>>;
|
|
9633
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9634
|
+
lead: "lead";
|
|
9635
|
+
big: "big";
|
|
9636
|
+
sub: "sub";
|
|
9637
|
+
}>>;
|
|
7786
9638
|
}, z.core.$strip>, z.ZodObject<{
|
|
7787
9639
|
type: z.ZodLiteral<"bullets">;
|
|
7788
9640
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7795,9 +9647,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7795
9647
|
no: "no";
|
|
7796
9648
|
warn: "warn";
|
|
7797
9649
|
}>>;
|
|
9650
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9651
|
+
lead: "lead";
|
|
9652
|
+
big: "big";
|
|
9653
|
+
sub: "sub";
|
|
9654
|
+
}>>;
|
|
7798
9655
|
}, z.core.$strip>]>>;
|
|
7799
9656
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7800
9657
|
icon: z.ZodOptional<z.ZodString>;
|
|
9658
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9659
|
+
lead: "lead";
|
|
9660
|
+
big: "big";
|
|
9661
|
+
sub: "sub";
|
|
9662
|
+
}>>;
|
|
7801
9663
|
}, z.core.$strip>, z.ZodObject<{
|
|
7802
9664
|
type: z.ZodLiteral<"code">;
|
|
7803
9665
|
code: z.ZodString;
|
|
@@ -7820,6 +9682,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7820
9682
|
info: "info";
|
|
7821
9683
|
quote: "quote";
|
|
7822
9684
|
}>>;
|
|
9685
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9686
|
+
lead: "lead";
|
|
9687
|
+
big: "big";
|
|
9688
|
+
sub: "sub";
|
|
9689
|
+
}>>;
|
|
7823
9690
|
}, z.core.$strip>, z.ZodObject<{
|
|
7824
9691
|
type: z.ZodLiteral<"metric">;
|
|
7825
9692
|
value: z.ZodString;
|
|
@@ -7889,6 +9756,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7889
9756
|
}, z.core.$strip>]>>>;
|
|
7890
9757
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
7891
9758
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
9759
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9760
|
+
type: z.ZodLiteral<"tag">;
|
|
9761
|
+
text: z.ZodString;
|
|
9762
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
9763
|
+
primary: "primary";
|
|
9764
|
+
accent: "accent";
|
|
9765
|
+
success: "success";
|
|
9766
|
+
warning: "warning";
|
|
9767
|
+
danger: "danger";
|
|
9768
|
+
info: "info";
|
|
9769
|
+
highlight: "highlight";
|
|
9770
|
+
}>>;
|
|
7892
9771
|
}, z.core.$strip>], "type">>>;
|
|
7893
9772
|
text: z.ZodOptional<z.ZodString>;
|
|
7894
9773
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7947,6 +9826,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7947
9826
|
highlight: "highlight";
|
|
7948
9827
|
}>>;
|
|
7949
9828
|
}, z.core.$strip>>;
|
|
9829
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
9830
|
+
default: "default";
|
|
9831
|
+
compact: "compact";
|
|
9832
|
+
}>>;
|
|
9833
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
9834
|
+
default: "default";
|
|
9835
|
+
small: "small";
|
|
9836
|
+
large: "large";
|
|
9837
|
+
hero: "hero";
|
|
9838
|
+
}>>;
|
|
9839
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
9840
|
+
lead: "lead";
|
|
9841
|
+
big: "big";
|
|
9842
|
+
default: "default";
|
|
9843
|
+
}>>;
|
|
7950
9844
|
layout: z.ZodLiteral<"columns">;
|
|
7951
9845
|
}, z.core.$strip>, z.ZodObject<{
|
|
7952
9846
|
title: z.ZodString;
|
|
@@ -7983,6 +9877,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7983
9877
|
info: "info";
|
|
7984
9878
|
highlight: "highlight";
|
|
7985
9879
|
}>>;
|
|
9880
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9881
|
+
lead: "lead";
|
|
9882
|
+
big: "big";
|
|
9883
|
+
sub: "sub";
|
|
9884
|
+
}>>;
|
|
7986
9885
|
}, z.core.$strip>, z.ZodObject<{
|
|
7987
9886
|
type: z.ZodLiteral<"bullets">;
|
|
7988
9887
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -7995,9 +9894,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7995
9894
|
no: "no";
|
|
7996
9895
|
warn: "warn";
|
|
7997
9896
|
}>>;
|
|
9897
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9898
|
+
lead: "lead";
|
|
9899
|
+
big: "big";
|
|
9900
|
+
sub: "sub";
|
|
9901
|
+
}>>;
|
|
7998
9902
|
}, z.core.$strip>]>>;
|
|
7999
9903
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8000
9904
|
icon: z.ZodOptional<z.ZodString>;
|
|
9905
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9906
|
+
lead: "lead";
|
|
9907
|
+
big: "big";
|
|
9908
|
+
sub: "sub";
|
|
9909
|
+
}>>;
|
|
8001
9910
|
}, z.core.$strip>, z.ZodObject<{
|
|
8002
9911
|
type: z.ZodLiteral<"code">;
|
|
8003
9912
|
code: z.ZodString;
|
|
@@ -8020,6 +9929,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8020
9929
|
info: "info";
|
|
8021
9930
|
quote: "quote";
|
|
8022
9931
|
}>>;
|
|
9932
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
9933
|
+
lead: "lead";
|
|
9934
|
+
big: "big";
|
|
9935
|
+
sub: "sub";
|
|
9936
|
+
}>>;
|
|
8023
9937
|
}, z.core.$strip>, z.ZodObject<{
|
|
8024
9938
|
type: z.ZodLiteral<"metric">;
|
|
8025
9939
|
value: z.ZodString;
|
|
@@ -8089,6 +10003,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8089
10003
|
}, z.core.$strip>]>>>;
|
|
8090
10004
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8091
10005
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10006
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10007
|
+
type: z.ZodLiteral<"tag">;
|
|
10008
|
+
text: z.ZodString;
|
|
10009
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10010
|
+
primary: "primary";
|
|
10011
|
+
accent: "accent";
|
|
10012
|
+
success: "success";
|
|
10013
|
+
warning: "warning";
|
|
10014
|
+
danger: "danger";
|
|
10015
|
+
info: "info";
|
|
10016
|
+
highlight: "highlight";
|
|
10017
|
+
}>>;
|
|
8092
10018
|
}, z.core.$strip>, z.ZodObject<{
|
|
8093
10019
|
type: z.ZodLiteral<"section">;
|
|
8094
10020
|
label: z.ZodString;
|
|
@@ -8121,6 +10047,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8121
10047
|
info: "info";
|
|
8122
10048
|
highlight: "highlight";
|
|
8123
10049
|
}>>;
|
|
10050
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10051
|
+
lead: "lead";
|
|
10052
|
+
big: "big";
|
|
10053
|
+
sub: "sub";
|
|
10054
|
+
}>>;
|
|
8124
10055
|
}, z.core.$strip>, z.ZodObject<{
|
|
8125
10056
|
type: z.ZodLiteral<"bullets">;
|
|
8126
10057
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -8133,9 +10064,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8133
10064
|
no: "no";
|
|
8134
10065
|
warn: "warn";
|
|
8135
10066
|
}>>;
|
|
10067
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10068
|
+
lead: "lead";
|
|
10069
|
+
big: "big";
|
|
10070
|
+
sub: "sub";
|
|
10071
|
+
}>>;
|
|
8136
10072
|
}, z.core.$strip>]>>;
|
|
8137
10073
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8138
10074
|
icon: z.ZodOptional<z.ZodString>;
|
|
10075
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10076
|
+
lead: "lead";
|
|
10077
|
+
big: "big";
|
|
10078
|
+
sub: "sub";
|
|
10079
|
+
}>>;
|
|
8139
10080
|
}, z.core.$strip>, z.ZodObject<{
|
|
8140
10081
|
type: z.ZodLiteral<"code">;
|
|
8141
10082
|
code: z.ZodString;
|
|
@@ -8158,6 +10099,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8158
10099
|
info: "info";
|
|
8159
10100
|
quote: "quote";
|
|
8160
10101
|
}>>;
|
|
10102
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10103
|
+
lead: "lead";
|
|
10104
|
+
big: "big";
|
|
10105
|
+
sub: "sub";
|
|
10106
|
+
}>>;
|
|
8161
10107
|
}, z.core.$strip>, z.ZodObject<{
|
|
8162
10108
|
type: z.ZodLiteral<"metric">;
|
|
8163
10109
|
value: z.ZodString;
|
|
@@ -8227,11 +10173,25 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8227
10173
|
}, z.core.$strip>]>>>;
|
|
8228
10174
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8229
10175
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10176
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10177
|
+
type: z.ZodLiteral<"tag">;
|
|
10178
|
+
text: z.ZodString;
|
|
10179
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10180
|
+
primary: "primary";
|
|
10181
|
+
accent: "accent";
|
|
10182
|
+
success: "success";
|
|
10183
|
+
warning: "warning";
|
|
10184
|
+
danger: "danger";
|
|
10185
|
+
info: "info";
|
|
10186
|
+
highlight: "highlight";
|
|
10187
|
+
}>>;
|
|
8230
10188
|
}, z.core.$strip>], "type">>>;
|
|
8231
10189
|
text: z.ZodOptional<z.ZodString>;
|
|
8232
10190
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
8233
10191
|
}, z.core.$strip>], "type">>>;
|
|
8234
10192
|
footer: z.ZodOptional<z.ZodString>;
|
|
10193
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
10194
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
8235
10195
|
}, z.core.$strip>;
|
|
8236
10196
|
right: z.ZodObject<{
|
|
8237
10197
|
title: z.ZodString;
|
|
@@ -8264,6 +10224,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8264
10224
|
info: "info";
|
|
8265
10225
|
highlight: "highlight";
|
|
8266
10226
|
}>>;
|
|
10227
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10228
|
+
lead: "lead";
|
|
10229
|
+
big: "big";
|
|
10230
|
+
sub: "sub";
|
|
10231
|
+
}>>;
|
|
8267
10232
|
}, z.core.$strip>, z.ZodObject<{
|
|
8268
10233
|
type: z.ZodLiteral<"bullets">;
|
|
8269
10234
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -8276,9 +10241,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8276
10241
|
no: "no";
|
|
8277
10242
|
warn: "warn";
|
|
8278
10243
|
}>>;
|
|
10244
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10245
|
+
lead: "lead";
|
|
10246
|
+
big: "big";
|
|
10247
|
+
sub: "sub";
|
|
10248
|
+
}>>;
|
|
8279
10249
|
}, z.core.$strip>]>>;
|
|
8280
10250
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8281
10251
|
icon: z.ZodOptional<z.ZodString>;
|
|
10252
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10253
|
+
lead: "lead";
|
|
10254
|
+
big: "big";
|
|
10255
|
+
sub: "sub";
|
|
10256
|
+
}>>;
|
|
8282
10257
|
}, z.core.$strip>, z.ZodObject<{
|
|
8283
10258
|
type: z.ZodLiteral<"code">;
|
|
8284
10259
|
code: z.ZodString;
|
|
@@ -8301,6 +10276,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8301
10276
|
info: "info";
|
|
8302
10277
|
quote: "quote";
|
|
8303
10278
|
}>>;
|
|
10279
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10280
|
+
lead: "lead";
|
|
10281
|
+
big: "big";
|
|
10282
|
+
sub: "sub";
|
|
10283
|
+
}>>;
|
|
8304
10284
|
}, z.core.$strip>, z.ZodObject<{
|
|
8305
10285
|
type: z.ZodLiteral<"metric">;
|
|
8306
10286
|
value: z.ZodString;
|
|
@@ -8370,6 +10350,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8370
10350
|
}, z.core.$strip>]>>>;
|
|
8371
10351
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8372
10352
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10353
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10354
|
+
type: z.ZodLiteral<"tag">;
|
|
10355
|
+
text: z.ZodString;
|
|
10356
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10357
|
+
primary: "primary";
|
|
10358
|
+
accent: "accent";
|
|
10359
|
+
success: "success";
|
|
10360
|
+
warning: "warning";
|
|
10361
|
+
danger: "danger";
|
|
10362
|
+
info: "info";
|
|
10363
|
+
highlight: "highlight";
|
|
10364
|
+
}>>;
|
|
8373
10365
|
}, z.core.$strip>, z.ZodObject<{
|
|
8374
10366
|
type: z.ZodLiteral<"section">;
|
|
8375
10367
|
label: z.ZodString;
|
|
@@ -8402,6 +10394,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8402
10394
|
info: "info";
|
|
8403
10395
|
highlight: "highlight";
|
|
8404
10396
|
}>>;
|
|
10397
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10398
|
+
lead: "lead";
|
|
10399
|
+
big: "big";
|
|
10400
|
+
sub: "sub";
|
|
10401
|
+
}>>;
|
|
8405
10402
|
}, z.core.$strip>, z.ZodObject<{
|
|
8406
10403
|
type: z.ZodLiteral<"bullets">;
|
|
8407
10404
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -8414,9 +10411,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8414
10411
|
no: "no";
|
|
8415
10412
|
warn: "warn";
|
|
8416
10413
|
}>>;
|
|
10414
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10415
|
+
lead: "lead";
|
|
10416
|
+
big: "big";
|
|
10417
|
+
sub: "sub";
|
|
10418
|
+
}>>;
|
|
8417
10419
|
}, z.core.$strip>]>>;
|
|
8418
10420
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8419
10421
|
icon: z.ZodOptional<z.ZodString>;
|
|
10422
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10423
|
+
lead: "lead";
|
|
10424
|
+
big: "big";
|
|
10425
|
+
sub: "sub";
|
|
10426
|
+
}>>;
|
|
8420
10427
|
}, z.core.$strip>, z.ZodObject<{
|
|
8421
10428
|
type: z.ZodLiteral<"code">;
|
|
8422
10429
|
code: z.ZodString;
|
|
@@ -8439,6 +10446,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8439
10446
|
info: "info";
|
|
8440
10447
|
quote: "quote";
|
|
8441
10448
|
}>>;
|
|
10449
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10450
|
+
lead: "lead";
|
|
10451
|
+
big: "big";
|
|
10452
|
+
sub: "sub";
|
|
10453
|
+
}>>;
|
|
8442
10454
|
}, z.core.$strip>, z.ZodObject<{
|
|
8443
10455
|
type: z.ZodLiteral<"metric">;
|
|
8444
10456
|
value: z.ZodString;
|
|
@@ -8508,11 +10520,25 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8508
10520
|
}, z.core.$strip>]>>>;
|
|
8509
10521
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8510
10522
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10523
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10524
|
+
type: z.ZodLiteral<"tag">;
|
|
10525
|
+
text: z.ZodString;
|
|
10526
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10527
|
+
primary: "primary";
|
|
10528
|
+
accent: "accent";
|
|
10529
|
+
success: "success";
|
|
10530
|
+
warning: "warning";
|
|
10531
|
+
danger: "danger";
|
|
10532
|
+
info: "info";
|
|
10533
|
+
highlight: "highlight";
|
|
10534
|
+
}>>;
|
|
8511
10535
|
}, z.core.$strip>], "type">>>;
|
|
8512
10536
|
text: z.ZodOptional<z.ZodString>;
|
|
8513
10537
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
8514
10538
|
}, z.core.$strip>], "type">>>;
|
|
8515
10539
|
footer: z.ZodOptional<z.ZodString>;
|
|
10540
|
+
ratio: z.ZodOptional<z.ZodNumber>;
|
|
10541
|
+
cardless: z.ZodOptional<z.ZodBoolean>;
|
|
8516
10542
|
}, z.core.$strip>;
|
|
8517
10543
|
callout: z.ZodOptional<z.ZodObject<{
|
|
8518
10544
|
text: z.ZodString;
|
|
@@ -8560,6 +10586,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8560
10586
|
highlight: "highlight";
|
|
8561
10587
|
}>>;
|
|
8562
10588
|
}, z.core.$strip>>;
|
|
10589
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
10590
|
+
default: "default";
|
|
10591
|
+
compact: "compact";
|
|
10592
|
+
}>>;
|
|
10593
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
10594
|
+
default: "default";
|
|
10595
|
+
small: "small";
|
|
10596
|
+
large: "large";
|
|
10597
|
+
hero: "hero";
|
|
10598
|
+
}>>;
|
|
10599
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
10600
|
+
lead: "lead";
|
|
10601
|
+
big: "big";
|
|
10602
|
+
default: "default";
|
|
10603
|
+
}>>;
|
|
8563
10604
|
layout: z.ZodLiteral<"comparison">;
|
|
8564
10605
|
}, z.core.$strip>, z.ZodObject<{
|
|
8565
10606
|
title: z.ZodString;
|
|
@@ -8599,6 +10640,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8599
10640
|
info: "info";
|
|
8600
10641
|
highlight: "highlight";
|
|
8601
10642
|
}>>;
|
|
10643
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10644
|
+
lead: "lead";
|
|
10645
|
+
big: "big";
|
|
10646
|
+
sub: "sub";
|
|
10647
|
+
}>>;
|
|
8602
10648
|
}, z.core.$strip>, z.ZodObject<{
|
|
8603
10649
|
type: z.ZodLiteral<"bullets">;
|
|
8604
10650
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -8611,9 +10657,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8611
10657
|
no: "no";
|
|
8612
10658
|
warn: "warn";
|
|
8613
10659
|
}>>;
|
|
10660
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10661
|
+
lead: "lead";
|
|
10662
|
+
big: "big";
|
|
10663
|
+
sub: "sub";
|
|
10664
|
+
}>>;
|
|
8614
10665
|
}, z.core.$strip>]>>;
|
|
8615
10666
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8616
10667
|
icon: z.ZodOptional<z.ZodString>;
|
|
10668
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10669
|
+
lead: "lead";
|
|
10670
|
+
big: "big";
|
|
10671
|
+
sub: "sub";
|
|
10672
|
+
}>>;
|
|
8617
10673
|
}, z.core.$strip>, z.ZodObject<{
|
|
8618
10674
|
type: z.ZodLiteral<"code">;
|
|
8619
10675
|
code: z.ZodString;
|
|
@@ -8636,6 +10692,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8636
10692
|
info: "info";
|
|
8637
10693
|
quote: "quote";
|
|
8638
10694
|
}>>;
|
|
10695
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10696
|
+
lead: "lead";
|
|
10697
|
+
big: "big";
|
|
10698
|
+
sub: "sub";
|
|
10699
|
+
}>>;
|
|
8639
10700
|
}, z.core.$strip>, z.ZodObject<{
|
|
8640
10701
|
type: z.ZodLiteral<"metric">;
|
|
8641
10702
|
value: z.ZodString;
|
|
@@ -8705,6 +10766,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8705
10766
|
}, z.core.$strip>]>>>;
|
|
8706
10767
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8707
10768
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10769
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10770
|
+
type: z.ZodLiteral<"tag">;
|
|
10771
|
+
text: z.ZodString;
|
|
10772
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10773
|
+
primary: "primary";
|
|
10774
|
+
accent: "accent";
|
|
10775
|
+
success: "success";
|
|
10776
|
+
warning: "warning";
|
|
10777
|
+
danger: "danger";
|
|
10778
|
+
info: "info";
|
|
10779
|
+
highlight: "highlight";
|
|
10780
|
+
}>>;
|
|
8708
10781
|
}, z.core.$strip>, z.ZodObject<{
|
|
8709
10782
|
type: z.ZodLiteral<"section">;
|
|
8710
10783
|
label: z.ZodString;
|
|
@@ -8737,6 +10810,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8737
10810
|
info: "info";
|
|
8738
10811
|
highlight: "highlight";
|
|
8739
10812
|
}>>;
|
|
10813
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10814
|
+
lead: "lead";
|
|
10815
|
+
big: "big";
|
|
10816
|
+
sub: "sub";
|
|
10817
|
+
}>>;
|
|
8740
10818
|
}, z.core.$strip>, z.ZodObject<{
|
|
8741
10819
|
type: z.ZodLiteral<"bullets">;
|
|
8742
10820
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -8749,9 +10827,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8749
10827
|
no: "no";
|
|
8750
10828
|
warn: "warn";
|
|
8751
10829
|
}>>;
|
|
10830
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10831
|
+
lead: "lead";
|
|
10832
|
+
big: "big";
|
|
10833
|
+
sub: "sub";
|
|
10834
|
+
}>>;
|
|
8752
10835
|
}, z.core.$strip>]>>;
|
|
8753
10836
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8754
10837
|
icon: z.ZodOptional<z.ZodString>;
|
|
10838
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10839
|
+
lead: "lead";
|
|
10840
|
+
big: "big";
|
|
10841
|
+
sub: "sub";
|
|
10842
|
+
}>>;
|
|
8755
10843
|
}, z.core.$strip>, z.ZodObject<{
|
|
8756
10844
|
type: z.ZodLiteral<"code">;
|
|
8757
10845
|
code: z.ZodString;
|
|
@@ -8774,6 +10862,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8774
10862
|
info: "info";
|
|
8775
10863
|
quote: "quote";
|
|
8776
10864
|
}>>;
|
|
10865
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
10866
|
+
lead: "lead";
|
|
10867
|
+
big: "big";
|
|
10868
|
+
sub: "sub";
|
|
10869
|
+
}>>;
|
|
8777
10870
|
}, z.core.$strip>, z.ZodObject<{
|
|
8778
10871
|
type: z.ZodLiteral<"metric">;
|
|
8779
10872
|
value: z.ZodString;
|
|
@@ -8843,10 +10936,23 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8843
10936
|
}, z.core.$strip>]>>>;
|
|
8844
10937
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
8845
10938
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
10939
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10940
|
+
type: z.ZodLiteral<"tag">;
|
|
10941
|
+
text: z.ZodString;
|
|
10942
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10943
|
+
primary: "primary";
|
|
10944
|
+
accent: "accent";
|
|
10945
|
+
success: "success";
|
|
10946
|
+
warning: "warning";
|
|
10947
|
+
danger: "danger";
|
|
10948
|
+
info: "info";
|
|
10949
|
+
highlight: "highlight";
|
|
10950
|
+
}>>;
|
|
8846
10951
|
}, z.core.$strip>], "type">>>;
|
|
8847
10952
|
text: z.ZodOptional<z.ZodString>;
|
|
8848
10953
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
8849
10954
|
}, z.core.$strip>], "type">>>;
|
|
10955
|
+
span: z.ZodOptional<z.ZodNumber>;
|
|
8850
10956
|
}, z.core.$strip>>;
|
|
8851
10957
|
footer: z.ZodOptional<z.ZodString>;
|
|
8852
10958
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8877,6 +10983,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8877
10983
|
highlight: "highlight";
|
|
8878
10984
|
}>>;
|
|
8879
10985
|
}, z.core.$strip>>;
|
|
10986
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
10987
|
+
default: "default";
|
|
10988
|
+
compact: "compact";
|
|
10989
|
+
}>>;
|
|
10990
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
10991
|
+
default: "default";
|
|
10992
|
+
small: "small";
|
|
10993
|
+
large: "large";
|
|
10994
|
+
hero: "hero";
|
|
10995
|
+
}>>;
|
|
10996
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
10997
|
+
lead: "lead";
|
|
10998
|
+
big: "big";
|
|
10999
|
+
default: "default";
|
|
11000
|
+
}>>;
|
|
8880
11001
|
layout: z.ZodLiteral<"grid">;
|
|
8881
11002
|
}, z.core.$strip>, z.ZodObject<{
|
|
8882
11003
|
quote: z.ZodString;
|
|
@@ -8910,6 +11031,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8910
11031
|
highlight: "highlight";
|
|
8911
11032
|
}>>;
|
|
8912
11033
|
}, z.core.$strip>>;
|
|
11034
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
11035
|
+
default: "default";
|
|
11036
|
+
compact: "compact";
|
|
11037
|
+
}>>;
|
|
11038
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
11039
|
+
default: "default";
|
|
11040
|
+
small: "small";
|
|
11041
|
+
large: "large";
|
|
11042
|
+
hero: "hero";
|
|
11043
|
+
}>>;
|
|
11044
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
11045
|
+
lead: "lead";
|
|
11046
|
+
big: "big";
|
|
11047
|
+
default: "default";
|
|
11048
|
+
}>>;
|
|
8913
11049
|
layout: z.ZodLiteral<"bigQuote">;
|
|
8914
11050
|
}, z.core.$strip>, z.ZodObject<{
|
|
8915
11051
|
title: z.ZodString;
|
|
@@ -8976,6 +11112,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8976
11112
|
highlight: "highlight";
|
|
8977
11113
|
}>>;
|
|
8978
11114
|
}, z.core.$strip>>;
|
|
11115
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
11116
|
+
default: "default";
|
|
11117
|
+
compact: "compact";
|
|
11118
|
+
}>>;
|
|
11119
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
11120
|
+
default: "default";
|
|
11121
|
+
small: "small";
|
|
11122
|
+
large: "large";
|
|
11123
|
+
hero: "hero";
|
|
11124
|
+
}>>;
|
|
11125
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
11126
|
+
lead: "lead";
|
|
11127
|
+
big: "big";
|
|
11128
|
+
default: "default";
|
|
11129
|
+
}>>;
|
|
8979
11130
|
layout: z.ZodLiteral<"stats">;
|
|
8980
11131
|
}, z.core.$strip>, z.ZodObject<{
|
|
8981
11132
|
title: z.ZodString;
|
|
@@ -9025,6 +11176,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9025
11176
|
highlight: "highlight";
|
|
9026
11177
|
}>>;
|
|
9027
11178
|
}, z.core.$strip>>;
|
|
11179
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
11180
|
+
default: "default";
|
|
11181
|
+
compact: "compact";
|
|
11182
|
+
}>>;
|
|
11183
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
11184
|
+
default: "default";
|
|
11185
|
+
small: "small";
|
|
11186
|
+
large: "large";
|
|
11187
|
+
hero: "hero";
|
|
11188
|
+
}>>;
|
|
11189
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
11190
|
+
lead: "lead";
|
|
11191
|
+
big: "big";
|
|
11192
|
+
default: "default";
|
|
11193
|
+
}>>;
|
|
9028
11194
|
layout: z.ZodLiteral<"timeline">;
|
|
9029
11195
|
}, z.core.$strip>, z.ZodObject<{
|
|
9030
11196
|
left: z.ZodOptional<z.ZodObject<{
|
|
@@ -9061,6 +11227,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9061
11227
|
info: "info";
|
|
9062
11228
|
highlight: "highlight";
|
|
9063
11229
|
}>>;
|
|
11230
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11231
|
+
lead: "lead";
|
|
11232
|
+
big: "big";
|
|
11233
|
+
sub: "sub";
|
|
11234
|
+
}>>;
|
|
9064
11235
|
}, z.core.$strip>, z.ZodObject<{
|
|
9065
11236
|
type: z.ZodLiteral<"bullets">;
|
|
9066
11237
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9073,9 +11244,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9073
11244
|
no: "no";
|
|
9074
11245
|
warn: "warn";
|
|
9075
11246
|
}>>;
|
|
11247
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11248
|
+
lead: "lead";
|
|
11249
|
+
big: "big";
|
|
11250
|
+
sub: "sub";
|
|
11251
|
+
}>>;
|
|
9076
11252
|
}, z.core.$strip>]>>;
|
|
9077
11253
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9078
11254
|
icon: z.ZodOptional<z.ZodString>;
|
|
11255
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11256
|
+
lead: "lead";
|
|
11257
|
+
big: "big";
|
|
11258
|
+
sub: "sub";
|
|
11259
|
+
}>>;
|
|
9079
11260
|
}, z.core.$strip>, z.ZodObject<{
|
|
9080
11261
|
type: z.ZodLiteral<"code">;
|
|
9081
11262
|
code: z.ZodString;
|
|
@@ -9098,6 +11279,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9098
11279
|
info: "info";
|
|
9099
11280
|
quote: "quote";
|
|
9100
11281
|
}>>;
|
|
11282
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11283
|
+
lead: "lead";
|
|
11284
|
+
big: "big";
|
|
11285
|
+
sub: "sub";
|
|
11286
|
+
}>>;
|
|
9101
11287
|
}, z.core.$strip>, z.ZodObject<{
|
|
9102
11288
|
type: z.ZodLiteral<"metric">;
|
|
9103
11289
|
value: z.ZodString;
|
|
@@ -9167,6 +11353,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9167
11353
|
}, z.core.$strip>]>>>;
|
|
9168
11354
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9169
11355
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
11356
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11357
|
+
type: z.ZodLiteral<"tag">;
|
|
11358
|
+
text: z.ZodString;
|
|
11359
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
11360
|
+
primary: "primary";
|
|
11361
|
+
accent: "accent";
|
|
11362
|
+
success: "success";
|
|
11363
|
+
warning: "warning";
|
|
11364
|
+
danger: "danger";
|
|
11365
|
+
info: "info";
|
|
11366
|
+
highlight: "highlight";
|
|
11367
|
+
}>>;
|
|
9170
11368
|
}, z.core.$strip>, z.ZodObject<{
|
|
9171
11369
|
type: z.ZodLiteral<"section">;
|
|
9172
11370
|
label: z.ZodString;
|
|
@@ -9199,6 +11397,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9199
11397
|
info: "info";
|
|
9200
11398
|
highlight: "highlight";
|
|
9201
11399
|
}>>;
|
|
11400
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11401
|
+
lead: "lead";
|
|
11402
|
+
big: "big";
|
|
11403
|
+
sub: "sub";
|
|
11404
|
+
}>>;
|
|
9202
11405
|
}, z.core.$strip>, z.ZodObject<{
|
|
9203
11406
|
type: z.ZodLiteral<"bullets">;
|
|
9204
11407
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9211,9 +11414,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9211
11414
|
no: "no";
|
|
9212
11415
|
warn: "warn";
|
|
9213
11416
|
}>>;
|
|
11417
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11418
|
+
lead: "lead";
|
|
11419
|
+
big: "big";
|
|
11420
|
+
sub: "sub";
|
|
11421
|
+
}>>;
|
|
9214
11422
|
}, z.core.$strip>]>>;
|
|
9215
11423
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9216
11424
|
icon: z.ZodOptional<z.ZodString>;
|
|
11425
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11426
|
+
lead: "lead";
|
|
11427
|
+
big: "big";
|
|
11428
|
+
sub: "sub";
|
|
11429
|
+
}>>;
|
|
9217
11430
|
}, z.core.$strip>, z.ZodObject<{
|
|
9218
11431
|
type: z.ZodLiteral<"code">;
|
|
9219
11432
|
code: z.ZodString;
|
|
@@ -9236,6 +11449,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9236
11449
|
info: "info";
|
|
9237
11450
|
quote: "quote";
|
|
9238
11451
|
}>>;
|
|
11452
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11453
|
+
lead: "lead";
|
|
11454
|
+
big: "big";
|
|
11455
|
+
sub: "sub";
|
|
11456
|
+
}>>;
|
|
9239
11457
|
}, z.core.$strip>, z.ZodObject<{
|
|
9240
11458
|
type: z.ZodLiteral<"metric">;
|
|
9241
11459
|
value: z.ZodString;
|
|
@@ -9305,6 +11523,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9305
11523
|
}, z.core.$strip>]>>>;
|
|
9306
11524
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9307
11525
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
11526
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11527
|
+
type: z.ZodLiteral<"tag">;
|
|
11528
|
+
text: z.ZodString;
|
|
11529
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
11530
|
+
primary: "primary";
|
|
11531
|
+
accent: "accent";
|
|
11532
|
+
success: "success";
|
|
11533
|
+
warning: "warning";
|
|
11534
|
+
danger: "danger";
|
|
11535
|
+
info: "info";
|
|
11536
|
+
highlight: "highlight";
|
|
11537
|
+
}>>;
|
|
9308
11538
|
}, z.core.$strip>], "type">>>;
|
|
9309
11539
|
text: z.ZodOptional<z.ZodString>;
|
|
9310
11540
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9351,6 +11581,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9351
11581
|
info: "info";
|
|
9352
11582
|
highlight: "highlight";
|
|
9353
11583
|
}>>;
|
|
11584
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11585
|
+
lead: "lead";
|
|
11586
|
+
big: "big";
|
|
11587
|
+
sub: "sub";
|
|
11588
|
+
}>>;
|
|
9354
11589
|
}, z.core.$strip>, z.ZodObject<{
|
|
9355
11590
|
type: z.ZodLiteral<"bullets">;
|
|
9356
11591
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9363,9 +11598,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9363
11598
|
no: "no";
|
|
9364
11599
|
warn: "warn";
|
|
9365
11600
|
}>>;
|
|
11601
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11602
|
+
lead: "lead";
|
|
11603
|
+
big: "big";
|
|
11604
|
+
sub: "sub";
|
|
11605
|
+
}>>;
|
|
9366
11606
|
}, z.core.$strip>]>>;
|
|
9367
11607
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9368
11608
|
icon: z.ZodOptional<z.ZodString>;
|
|
11609
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11610
|
+
lead: "lead";
|
|
11611
|
+
big: "big";
|
|
11612
|
+
sub: "sub";
|
|
11613
|
+
}>>;
|
|
9369
11614
|
}, z.core.$strip>, z.ZodObject<{
|
|
9370
11615
|
type: z.ZodLiteral<"code">;
|
|
9371
11616
|
code: z.ZodString;
|
|
@@ -9388,6 +11633,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9388
11633
|
info: "info";
|
|
9389
11634
|
quote: "quote";
|
|
9390
11635
|
}>>;
|
|
11636
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11637
|
+
lead: "lead";
|
|
11638
|
+
big: "big";
|
|
11639
|
+
sub: "sub";
|
|
11640
|
+
}>>;
|
|
9391
11641
|
}, z.core.$strip>, z.ZodObject<{
|
|
9392
11642
|
type: z.ZodLiteral<"metric">;
|
|
9393
11643
|
value: z.ZodString;
|
|
@@ -9457,6 +11707,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9457
11707
|
}, z.core.$strip>]>>>;
|
|
9458
11708
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9459
11709
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
11710
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11711
|
+
type: z.ZodLiteral<"tag">;
|
|
11712
|
+
text: z.ZodString;
|
|
11713
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
11714
|
+
primary: "primary";
|
|
11715
|
+
accent: "accent";
|
|
11716
|
+
success: "success";
|
|
11717
|
+
warning: "warning";
|
|
11718
|
+
danger: "danger";
|
|
11719
|
+
info: "info";
|
|
11720
|
+
highlight: "highlight";
|
|
11721
|
+
}>>;
|
|
9460
11722
|
}, z.core.$strip>, z.ZodObject<{
|
|
9461
11723
|
type: z.ZodLiteral<"section">;
|
|
9462
11724
|
label: z.ZodString;
|
|
@@ -9489,6 +11751,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9489
11751
|
info: "info";
|
|
9490
11752
|
highlight: "highlight";
|
|
9491
11753
|
}>>;
|
|
11754
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11755
|
+
lead: "lead";
|
|
11756
|
+
big: "big";
|
|
11757
|
+
sub: "sub";
|
|
11758
|
+
}>>;
|
|
9492
11759
|
}, z.core.$strip>, z.ZodObject<{
|
|
9493
11760
|
type: z.ZodLiteral<"bullets">;
|
|
9494
11761
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9501,9 +11768,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9501
11768
|
no: "no";
|
|
9502
11769
|
warn: "warn";
|
|
9503
11770
|
}>>;
|
|
11771
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11772
|
+
lead: "lead";
|
|
11773
|
+
big: "big";
|
|
11774
|
+
sub: "sub";
|
|
11775
|
+
}>>;
|
|
9504
11776
|
}, z.core.$strip>]>>;
|
|
9505
11777
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9506
11778
|
icon: z.ZodOptional<z.ZodString>;
|
|
11779
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11780
|
+
lead: "lead";
|
|
11781
|
+
big: "big";
|
|
11782
|
+
sub: "sub";
|
|
11783
|
+
}>>;
|
|
9507
11784
|
}, z.core.$strip>, z.ZodObject<{
|
|
9508
11785
|
type: z.ZodLiteral<"code">;
|
|
9509
11786
|
code: z.ZodString;
|
|
@@ -9526,6 +11803,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9526
11803
|
info: "info";
|
|
9527
11804
|
quote: "quote";
|
|
9528
11805
|
}>>;
|
|
11806
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11807
|
+
lead: "lead";
|
|
11808
|
+
big: "big";
|
|
11809
|
+
sub: "sub";
|
|
11810
|
+
}>>;
|
|
9529
11811
|
}, z.core.$strip>, z.ZodObject<{
|
|
9530
11812
|
type: z.ZodLiteral<"metric">;
|
|
9531
11813
|
value: z.ZodString;
|
|
@@ -9595,6 +11877,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9595
11877
|
}, z.core.$strip>]>>>;
|
|
9596
11878
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9597
11879
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
11880
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11881
|
+
type: z.ZodLiteral<"tag">;
|
|
11882
|
+
text: z.ZodString;
|
|
11883
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
11884
|
+
primary: "primary";
|
|
11885
|
+
accent: "accent";
|
|
11886
|
+
success: "success";
|
|
11887
|
+
warning: "warning";
|
|
11888
|
+
danger: "danger";
|
|
11889
|
+
info: "info";
|
|
11890
|
+
highlight: "highlight";
|
|
11891
|
+
}>>;
|
|
9598
11892
|
}, z.core.$strip>], "type">>>;
|
|
9599
11893
|
text: z.ZodOptional<z.ZodString>;
|
|
9600
11894
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9635,6 +11929,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9635
11929
|
highlight: "highlight";
|
|
9636
11930
|
}>>;
|
|
9637
11931
|
}, z.core.$strip>>;
|
|
11932
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
11933
|
+
default: "default";
|
|
11934
|
+
compact: "compact";
|
|
11935
|
+
}>>;
|
|
11936
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
11937
|
+
default: "default";
|
|
11938
|
+
small: "small";
|
|
11939
|
+
large: "large";
|
|
11940
|
+
hero: "hero";
|
|
11941
|
+
}>>;
|
|
11942
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
11943
|
+
lead: "lead";
|
|
11944
|
+
big: "big";
|
|
11945
|
+
default: "default";
|
|
11946
|
+
}>>;
|
|
9638
11947
|
layout: z.ZodLiteral<"split">;
|
|
9639
11948
|
}, z.core.$strip>, z.ZodObject<{
|
|
9640
11949
|
title: z.ZodString;
|
|
@@ -9675,6 +11984,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9675
11984
|
info: "info";
|
|
9676
11985
|
highlight: "highlight";
|
|
9677
11986
|
}>>;
|
|
11987
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
11988
|
+
lead: "lead";
|
|
11989
|
+
big: "big";
|
|
11990
|
+
sub: "sub";
|
|
11991
|
+
}>>;
|
|
9678
11992
|
}, z.core.$strip>, z.ZodObject<{
|
|
9679
11993
|
type: z.ZodLiteral<"bullets">;
|
|
9680
11994
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9687,9 +12001,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9687
12001
|
no: "no";
|
|
9688
12002
|
warn: "warn";
|
|
9689
12003
|
}>>;
|
|
12004
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12005
|
+
lead: "lead";
|
|
12006
|
+
big: "big";
|
|
12007
|
+
sub: "sub";
|
|
12008
|
+
}>>;
|
|
9690
12009
|
}, z.core.$strip>]>>;
|
|
9691
12010
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9692
12011
|
icon: z.ZodOptional<z.ZodString>;
|
|
12012
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12013
|
+
lead: "lead";
|
|
12014
|
+
big: "big";
|
|
12015
|
+
sub: "sub";
|
|
12016
|
+
}>>;
|
|
9693
12017
|
}, z.core.$strip>, z.ZodObject<{
|
|
9694
12018
|
type: z.ZodLiteral<"code">;
|
|
9695
12019
|
code: z.ZodString;
|
|
@@ -9712,6 +12036,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9712
12036
|
info: "info";
|
|
9713
12037
|
quote: "quote";
|
|
9714
12038
|
}>>;
|
|
12039
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12040
|
+
lead: "lead";
|
|
12041
|
+
big: "big";
|
|
12042
|
+
sub: "sub";
|
|
12043
|
+
}>>;
|
|
9715
12044
|
}, z.core.$strip>, z.ZodObject<{
|
|
9716
12045
|
type: z.ZodLiteral<"metric">;
|
|
9717
12046
|
value: z.ZodString;
|
|
@@ -9781,6 +12110,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9781
12110
|
}, z.core.$strip>]>>>;
|
|
9782
12111
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9783
12112
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
12113
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12114
|
+
type: z.ZodLiteral<"tag">;
|
|
12115
|
+
text: z.ZodString;
|
|
12116
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
12117
|
+
primary: "primary";
|
|
12118
|
+
accent: "accent";
|
|
12119
|
+
success: "success";
|
|
12120
|
+
warning: "warning";
|
|
12121
|
+
danger: "danger";
|
|
12122
|
+
info: "info";
|
|
12123
|
+
highlight: "highlight";
|
|
12124
|
+
}>>;
|
|
9784
12125
|
}, z.core.$strip>, z.ZodObject<{
|
|
9785
12126
|
type: z.ZodLiteral<"section">;
|
|
9786
12127
|
label: z.ZodString;
|
|
@@ -9813,6 +12154,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9813
12154
|
info: "info";
|
|
9814
12155
|
highlight: "highlight";
|
|
9815
12156
|
}>>;
|
|
12157
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12158
|
+
lead: "lead";
|
|
12159
|
+
big: "big";
|
|
12160
|
+
sub: "sub";
|
|
12161
|
+
}>>;
|
|
9816
12162
|
}, z.core.$strip>, z.ZodObject<{
|
|
9817
12163
|
type: z.ZodLiteral<"bullets">;
|
|
9818
12164
|
items: z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -9825,9 +12171,19 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9825
12171
|
no: "no";
|
|
9826
12172
|
warn: "warn";
|
|
9827
12173
|
}>>;
|
|
12174
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12175
|
+
lead: "lead";
|
|
12176
|
+
big: "big";
|
|
12177
|
+
sub: "sub";
|
|
12178
|
+
}>>;
|
|
9828
12179
|
}, z.core.$strip>]>>;
|
|
9829
12180
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
9830
12181
|
icon: z.ZodOptional<z.ZodString>;
|
|
12182
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12183
|
+
lead: "lead";
|
|
12184
|
+
big: "big";
|
|
12185
|
+
sub: "sub";
|
|
12186
|
+
}>>;
|
|
9831
12187
|
}, z.core.$strip>, z.ZodObject<{
|
|
9832
12188
|
type: z.ZodLiteral<"code">;
|
|
9833
12189
|
code: z.ZodString;
|
|
@@ -9850,6 +12206,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9850
12206
|
info: "info";
|
|
9851
12207
|
quote: "quote";
|
|
9852
12208
|
}>>;
|
|
12209
|
+
size: z.ZodOptional<z.ZodEnum<{
|
|
12210
|
+
lead: "lead";
|
|
12211
|
+
big: "big";
|
|
12212
|
+
sub: "sub";
|
|
12213
|
+
}>>;
|
|
9853
12214
|
}, z.core.$strip>, z.ZodObject<{
|
|
9854
12215
|
type: z.ZodLiteral<"metric">;
|
|
9855
12216
|
value: z.ZodString;
|
|
@@ -9919,6 +12280,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9919
12280
|
}, z.core.$strip>]>>>;
|
|
9920
12281
|
rowHeaders: z.ZodOptional<z.ZodBoolean>;
|
|
9921
12282
|
striped: z.ZodOptional<z.ZodBoolean>;
|
|
12283
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12284
|
+
type: z.ZodLiteral<"tag">;
|
|
12285
|
+
text: z.ZodString;
|
|
12286
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
12287
|
+
primary: "primary";
|
|
12288
|
+
accent: "accent";
|
|
12289
|
+
success: "success";
|
|
12290
|
+
warning: "warning";
|
|
12291
|
+
danger: "danger";
|
|
12292
|
+
info: "info";
|
|
12293
|
+
highlight: "highlight";
|
|
12294
|
+
}>>;
|
|
9922
12295
|
}, z.core.$strip>], "type">>>;
|
|
9923
12296
|
text: z.ZodOptional<z.ZodString>;
|
|
9924
12297
|
sidebar: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9961,6 +12334,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9961
12334
|
highlight: "highlight";
|
|
9962
12335
|
}>>;
|
|
9963
12336
|
}, z.core.$strip>>;
|
|
12337
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
12338
|
+
default: "default";
|
|
12339
|
+
compact: "compact";
|
|
12340
|
+
}>>;
|
|
12341
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
12342
|
+
default: "default";
|
|
12343
|
+
small: "small";
|
|
12344
|
+
large: "large";
|
|
12345
|
+
hero: "hero";
|
|
12346
|
+
}>>;
|
|
12347
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
12348
|
+
lead: "lead";
|
|
12349
|
+
big: "big";
|
|
12350
|
+
default: "default";
|
|
12351
|
+
}>>;
|
|
9964
12352
|
layout: z.ZodLiteral<"matrix">;
|
|
9965
12353
|
}, z.core.$strip>, z.ZodObject<{
|
|
9966
12354
|
title: z.ZodString;
|
|
@@ -10029,6 +12417,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
10029
12417
|
highlight: "highlight";
|
|
10030
12418
|
}>>;
|
|
10031
12419
|
}, z.core.$strip>>;
|
|
12420
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
12421
|
+
default: "default";
|
|
12422
|
+
compact: "compact";
|
|
12423
|
+
}>>;
|
|
12424
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
12425
|
+
default: "default";
|
|
12426
|
+
small: "small";
|
|
12427
|
+
large: "large";
|
|
12428
|
+
hero: "hero";
|
|
12429
|
+
}>>;
|
|
12430
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
12431
|
+
lead: "lead";
|
|
12432
|
+
big: "big";
|
|
12433
|
+
default: "default";
|
|
12434
|
+
}>>;
|
|
10032
12435
|
layout: z.ZodLiteral<"table">;
|
|
10033
12436
|
}, z.core.$strip>, z.ZodObject<{
|
|
10034
12437
|
title: z.ZodString;
|
|
@@ -10094,6 +12497,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
10094
12497
|
highlight: "highlight";
|
|
10095
12498
|
}>>;
|
|
10096
12499
|
}, z.core.$strip>>;
|
|
12500
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
12501
|
+
default: "default";
|
|
12502
|
+
compact: "compact";
|
|
12503
|
+
}>>;
|
|
12504
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
12505
|
+
default: "default";
|
|
12506
|
+
small: "small";
|
|
12507
|
+
large: "large";
|
|
12508
|
+
hero: "hero";
|
|
12509
|
+
}>>;
|
|
12510
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
12511
|
+
lead: "lead";
|
|
12512
|
+
big: "big";
|
|
12513
|
+
default: "default";
|
|
12514
|
+
}>>;
|
|
10097
12515
|
layout: z.ZodLiteral<"funnel">;
|
|
10098
12516
|
}, z.core.$strip>, z.ZodObject<{
|
|
10099
12517
|
title: z.ZodString;
|
|
@@ -10160,6 +12578,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
10160
12578
|
highlight: "highlight";
|
|
10161
12579
|
}>>;
|
|
10162
12580
|
}, z.core.$strip>>;
|
|
12581
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
12582
|
+
default: "default";
|
|
12583
|
+
compact: "compact";
|
|
12584
|
+
}>>;
|
|
12585
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
12586
|
+
default: "default";
|
|
12587
|
+
small: "small";
|
|
12588
|
+
large: "large";
|
|
12589
|
+
hero: "hero";
|
|
12590
|
+
}>>;
|
|
12591
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
12592
|
+
lead: "lead";
|
|
12593
|
+
big: "big";
|
|
12594
|
+
default: "default";
|
|
12595
|
+
}>>;
|
|
10163
12596
|
layout: z.ZodLiteral<"waterfall">;
|
|
10164
12597
|
}, z.core.$strip>, z.ZodObject<{
|
|
10165
12598
|
title: z.ZodString;
|
|
@@ -10225,6 +12658,21 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
10225
12658
|
highlight: "highlight";
|
|
10226
12659
|
}>>;
|
|
10227
12660
|
}, z.core.$strip>>;
|
|
12661
|
+
density: z.ZodOptional<z.ZodEnum<{
|
|
12662
|
+
default: "default";
|
|
12663
|
+
compact: "compact";
|
|
12664
|
+
}>>;
|
|
12665
|
+
titleSize: z.ZodOptional<z.ZodEnum<{
|
|
12666
|
+
default: "default";
|
|
12667
|
+
small: "small";
|
|
12668
|
+
large: "large";
|
|
12669
|
+
hero: "hero";
|
|
12670
|
+
}>>;
|
|
12671
|
+
subtitleSize: z.ZodOptional<z.ZodEnum<{
|
|
12672
|
+
lead: "lead";
|
|
12673
|
+
big: "big";
|
|
12674
|
+
default: "default";
|
|
12675
|
+
}>>;
|
|
10228
12676
|
layout: z.ZodLiteral<"manifesto">;
|
|
10229
12677
|
}, z.core.$strip>], "layout">;
|
|
10230
12678
|
reference: z.ZodOptional<z.ZodString>;
|
|
@@ -10316,6 +12764,12 @@ export type WaterfallSlide = z.infer<typeof waterfallSlideSchema>;
|
|
|
10316
12764
|
export type ManifestoLine = z.infer<typeof manifestoLineSchema>;
|
|
10317
12765
|
export type ManifestoSlide = z.infer<typeof manifestoSlideSchema>;
|
|
10318
12766
|
export type BulletIcon = z.infer<typeof bulletIconSchema>;
|
|
12767
|
+
export type TextSize = z.infer<typeof textSizeSchema>;
|
|
12768
|
+
export type SlideDensity = z.infer<typeof slideDensitySchema>;
|
|
12769
|
+
export type SlideTitleSize = z.infer<typeof slideTitleSizeSchema>;
|
|
12770
|
+
export type SlideSubtitleSize = z.infer<typeof slideSubtitleSizeSchema>;
|
|
12771
|
+
export type SlideCardStyle = z.infer<typeof slideCardStyleSchema>;
|
|
12772
|
+
export type TagBlock = z.infer<typeof tagBlockSchema>;
|
|
10319
12773
|
export type SlideBrandingLogo = z.infer<typeof slideBrandingLogoSchema>;
|
|
10320
12774
|
export type SlideBranding = z.infer<typeof slideBrandingSchema>;
|
|
10321
12775
|
export type MulmoSlideMedia = z.infer<typeof mulmoSlideMediaSchema>;
|