@mulmocast/deck 0.2.0 → 0.4.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/lib/blocks.js +12 -2
- package/lib/layouts/big_quote.js +4 -1
- package/lib/layouts/columns.js +3 -2
- package/lib/layouts/index.js +3 -0
- package/lib/layouts/manifesto.d.ts +2 -0
- package/lib/layouts/manifesto.js +39 -0
- package/lib/layouts/stats.js +3 -0
- package/lib/layouts/timeline.js +5 -2
- package/lib/layouts/title.js +6 -1
- package/lib/schema.d.ts +978 -10
- package/lib/schema.js +45 -1
- package/lib/utils.d.ts +25 -1
- package/lib/utils.js +30 -1
- package/package.json +1 -1
package/lib/schema.d.ts
CHANGED
|
@@ -76,12 +76,23 @@ export declare const textBlockSchema: z.ZodObject<{
|
|
|
76
76
|
highlight: "highlight";
|
|
77
77
|
}>>;
|
|
78
78
|
}, z.core.$strip>;
|
|
79
|
-
/**
|
|
79
|
+
/** Status-icon variants for bullets (renders ✓ / ✕ / ⚠ in the accent color of the variant). */
|
|
80
|
+
export declare const bulletIconSchema: z.ZodEnum<{
|
|
81
|
+
ok: "ok";
|
|
82
|
+
no: "no";
|
|
83
|
+
warn: "warn";
|
|
84
|
+
}>;
|
|
85
|
+
/** Bullet item: plain string, or object with text + optional sub-items + optional status icon. */
|
|
80
86
|
export declare const bulletItemSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
81
87
|
text: z.ZodString;
|
|
82
88
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
83
89
|
text: z.ZodString;
|
|
84
90
|
}, z.core.$strip>]>>>;
|
|
91
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
92
|
+
ok: "ok";
|
|
93
|
+
no: "no";
|
|
94
|
+
warn: "warn";
|
|
95
|
+
}>>;
|
|
85
96
|
}, z.core.$strip>]>;
|
|
86
97
|
export declare const bulletsBlockSchema: z.ZodObject<{
|
|
87
98
|
type: z.ZodLiteral<"bullets">;
|
|
@@ -90,6 +101,11 @@ export declare const bulletsBlockSchema: z.ZodObject<{
|
|
|
90
101
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
91
102
|
text: z.ZodString;
|
|
92
103
|
}, z.core.$strip>]>>>;
|
|
104
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
105
|
+
ok: "ok";
|
|
106
|
+
no: "no";
|
|
107
|
+
warn: "warn";
|
|
108
|
+
}>>;
|
|
93
109
|
}, z.core.$strip>]>>;
|
|
94
110
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
95
111
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -247,6 +263,11 @@ export declare const sectionBlockSchema: z.ZodObject<{
|
|
|
247
263
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
248
264
|
text: z.ZodString;
|
|
249
265
|
}, z.core.$strip>]>>>;
|
|
266
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
267
|
+
ok: "ok";
|
|
268
|
+
no: "no";
|
|
269
|
+
warn: "warn";
|
|
270
|
+
}>>;
|
|
250
271
|
}, z.core.$strip>]>>;
|
|
251
272
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
252
273
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -372,6 +393,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
372
393
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
373
394
|
text: z.ZodString;
|
|
374
395
|
}, z.core.$strip>]>>>;
|
|
396
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
397
|
+
ok: "ok";
|
|
398
|
+
no: "no";
|
|
399
|
+
warn: "warn";
|
|
400
|
+
}>>;
|
|
375
401
|
}, z.core.$strip>]>>;
|
|
376
402
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
377
403
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -505,6 +531,11 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
505
531
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
506
532
|
text: z.ZodString;
|
|
507
533
|
}, z.core.$strip>]>>>;
|
|
534
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
535
|
+
ok: "ok";
|
|
536
|
+
no: "no";
|
|
537
|
+
warn: "warn";
|
|
538
|
+
}>>;
|
|
508
539
|
}, z.core.$strip>]>>;
|
|
509
540
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
510
541
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -661,6 +692,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
661
692
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
662
693
|
text: z.ZodString;
|
|
663
694
|
}, z.core.$strip>]>>>;
|
|
695
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
696
|
+
ok: "ok";
|
|
697
|
+
no: "no";
|
|
698
|
+
warn: "warn";
|
|
699
|
+
}>>;
|
|
664
700
|
}, z.core.$strip>]>>;
|
|
665
701
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
666
702
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -794,6 +830,11 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
794
830
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
795
831
|
text: z.ZodString;
|
|
796
832
|
}, z.core.$strip>]>>>;
|
|
833
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
834
|
+
ok: "ok";
|
|
835
|
+
no: "no";
|
|
836
|
+
warn: "warn";
|
|
837
|
+
}>>;
|
|
797
838
|
}, z.core.$strip>]>>;
|
|
798
839
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
799
840
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -895,6 +936,7 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
895
936
|
footer: z.ZodOptional<z.ZodString>;
|
|
896
937
|
label: z.ZodOptional<z.ZodString>;
|
|
897
938
|
num: z.ZodOptional<z.ZodNumber>;
|
|
939
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
898
940
|
icon: z.ZodOptional<z.ZodString>;
|
|
899
941
|
}, z.core.$strip>;
|
|
900
942
|
export declare const slideStyleSchema: z.ZodObject<{
|
|
@@ -904,11 +946,25 @@ export declare const slideStyleSchema: z.ZodObject<{
|
|
|
904
946
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
905
947
|
footer: z.ZodOptional<z.ZodString>;
|
|
906
948
|
}, z.core.$strip>;
|
|
949
|
+
/** Optional kicker/category label rendered at the top of a slide (small uppercase pill). */
|
|
950
|
+
export declare const eyebrowSchema: z.ZodObject<{
|
|
951
|
+
label: z.ZodString;
|
|
952
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
953
|
+
primary: "primary";
|
|
954
|
+
accent: "accent";
|
|
955
|
+
success: "success";
|
|
956
|
+
warning: "warning";
|
|
957
|
+
danger: "danger";
|
|
958
|
+
info: "info";
|
|
959
|
+
highlight: "highlight";
|
|
960
|
+
}>>;
|
|
961
|
+
}, z.core.$strip>;
|
|
907
962
|
export declare const titleSlideSchema: z.ZodObject<{
|
|
908
963
|
title: z.ZodString;
|
|
909
964
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
910
965
|
author: z.ZodOptional<z.ZodString>;
|
|
911
966
|
note: z.ZodOptional<z.ZodString>;
|
|
967
|
+
chips: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
912
968
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
913
969
|
primary: "primary";
|
|
914
970
|
accent: "accent";
|
|
@@ -925,6 +981,18 @@ export declare const titleSlideSchema: z.ZodObject<{
|
|
|
925
981
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
926
982
|
footer: z.ZodOptional<z.ZodString>;
|
|
927
983
|
}, z.core.$strip>>;
|
|
984
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
985
|
+
label: z.ZodString;
|
|
986
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
987
|
+
primary: "primary";
|
|
988
|
+
accent: "accent";
|
|
989
|
+
success: "success";
|
|
990
|
+
warning: "warning";
|
|
991
|
+
danger: "danger";
|
|
992
|
+
info: "info";
|
|
993
|
+
highlight: "highlight";
|
|
994
|
+
}>>;
|
|
995
|
+
}, z.core.$strip>>;
|
|
928
996
|
layout: z.ZodLiteral<"title">;
|
|
929
997
|
}, z.core.$strip>;
|
|
930
998
|
export declare const columnsSlideSchema: z.ZodObject<{
|
|
@@ -969,6 +1037,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
969
1037
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
970
1038
|
text: z.ZodString;
|
|
971
1039
|
}, z.core.$strip>]>>>;
|
|
1040
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1041
|
+
ok: "ok";
|
|
1042
|
+
no: "no";
|
|
1043
|
+
warn: "warn";
|
|
1044
|
+
}>>;
|
|
972
1045
|
}, z.core.$strip>]>>;
|
|
973
1046
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
974
1047
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1102,6 +1175,11 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1102
1175
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1103
1176
|
text: z.ZodString;
|
|
1104
1177
|
}, z.core.$strip>]>>>;
|
|
1178
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1179
|
+
ok: "ok";
|
|
1180
|
+
no: "no";
|
|
1181
|
+
warn: "warn";
|
|
1182
|
+
}>>;
|
|
1105
1183
|
}, z.core.$strip>]>>;
|
|
1106
1184
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1107
1185
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1203,6 +1281,7 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1203
1281
|
footer: z.ZodOptional<z.ZodString>;
|
|
1204
1282
|
label: z.ZodOptional<z.ZodString>;
|
|
1205
1283
|
num: z.ZodOptional<z.ZodNumber>;
|
|
1284
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
1206
1285
|
icon: z.ZodOptional<z.ZodString>;
|
|
1207
1286
|
}, z.core.$strip>>;
|
|
1208
1287
|
showArrows: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1241,6 +1320,18 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
1241
1320
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
1242
1321
|
footer: z.ZodOptional<z.ZodString>;
|
|
1243
1322
|
}, z.core.$strip>>;
|
|
1323
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
1324
|
+
label: z.ZodString;
|
|
1325
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1326
|
+
primary: "primary";
|
|
1327
|
+
accent: "accent";
|
|
1328
|
+
success: "success";
|
|
1329
|
+
warning: "warning";
|
|
1330
|
+
danger: "danger";
|
|
1331
|
+
info: "info";
|
|
1332
|
+
highlight: "highlight";
|
|
1333
|
+
}>>;
|
|
1334
|
+
}, z.core.$strip>>;
|
|
1244
1335
|
layout: z.ZodLiteral<"columns">;
|
|
1245
1336
|
}, z.core.$strip>;
|
|
1246
1337
|
export declare const comparisonPanelSchema: z.ZodObject<{
|
|
@@ -1281,6 +1372,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1281
1372
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1282
1373
|
text: z.ZodString;
|
|
1283
1374
|
}, z.core.$strip>]>>>;
|
|
1375
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1376
|
+
ok: "ok";
|
|
1377
|
+
no: "no";
|
|
1378
|
+
warn: "warn";
|
|
1379
|
+
}>>;
|
|
1284
1380
|
}, z.core.$strip>]>>;
|
|
1285
1381
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1286
1382
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1414,6 +1510,11 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
1414
1510
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1415
1511
|
text: z.ZodString;
|
|
1416
1512
|
}, z.core.$strip>]>>>;
|
|
1513
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1514
|
+
ok: "ok";
|
|
1515
|
+
no: "no";
|
|
1516
|
+
warn: "warn";
|
|
1517
|
+
}>>;
|
|
1417
1518
|
}, z.core.$strip>]>>;
|
|
1418
1519
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1419
1520
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1556,6 +1657,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1556
1657
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1557
1658
|
text: z.ZodString;
|
|
1558
1659
|
}, z.core.$strip>]>>>;
|
|
1660
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1661
|
+
ok: "ok";
|
|
1662
|
+
no: "no";
|
|
1663
|
+
warn: "warn";
|
|
1664
|
+
}>>;
|
|
1559
1665
|
}, z.core.$strip>]>>;
|
|
1560
1666
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1561
1667
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1689,6 +1795,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1689
1795
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1690
1796
|
text: z.ZodString;
|
|
1691
1797
|
}, z.core.$strip>]>>>;
|
|
1798
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1799
|
+
ok: "ok";
|
|
1800
|
+
no: "no";
|
|
1801
|
+
warn: "warn";
|
|
1802
|
+
}>>;
|
|
1692
1803
|
}, z.core.$strip>]>>;
|
|
1693
1804
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1694
1805
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1827,6 +1938,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1827
1938
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1828
1939
|
text: z.ZodString;
|
|
1829
1940
|
}, z.core.$strip>]>>>;
|
|
1941
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
1942
|
+
ok: "ok";
|
|
1943
|
+
no: "no";
|
|
1944
|
+
warn: "warn";
|
|
1945
|
+
}>>;
|
|
1830
1946
|
}, z.core.$strip>]>>;
|
|
1831
1947
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1832
1948
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -1960,6 +2076,11 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
1960
2076
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1961
2077
|
text: z.ZodString;
|
|
1962
2078
|
}, z.core.$strip>]>>>;
|
|
2079
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2080
|
+
ok: "ok";
|
|
2081
|
+
no: "no";
|
|
2082
|
+
warn: "warn";
|
|
2083
|
+
}>>;
|
|
1963
2084
|
}, z.core.$strip>]>>;
|
|
1964
2085
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
1965
2086
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2094,6 +2215,18 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
2094
2215
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2095
2216
|
footer: z.ZodOptional<z.ZodString>;
|
|
2096
2217
|
}, z.core.$strip>>;
|
|
2218
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
2219
|
+
label: z.ZodString;
|
|
2220
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2221
|
+
primary: "primary";
|
|
2222
|
+
accent: "accent";
|
|
2223
|
+
success: "success";
|
|
2224
|
+
warning: "warning";
|
|
2225
|
+
danger: "danger";
|
|
2226
|
+
info: "info";
|
|
2227
|
+
highlight: "highlight";
|
|
2228
|
+
}>>;
|
|
2229
|
+
}, z.core.$strip>>;
|
|
2097
2230
|
layout: z.ZodLiteral<"comparison">;
|
|
2098
2231
|
}, z.core.$strip>;
|
|
2099
2232
|
export declare const gridItemSchema: z.ZodObject<{
|
|
@@ -2137,6 +2270,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2137
2270
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2138
2271
|
text: z.ZodString;
|
|
2139
2272
|
}, z.core.$strip>]>>>;
|
|
2273
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2274
|
+
ok: "ok";
|
|
2275
|
+
no: "no";
|
|
2276
|
+
warn: "warn";
|
|
2277
|
+
}>>;
|
|
2140
2278
|
}, z.core.$strip>]>>;
|
|
2141
2279
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2280
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2270,6 +2408,11 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
2270
2408
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2271
2409
|
text: z.ZodString;
|
|
2272
2410
|
}, z.core.$strip>]>>>;
|
|
2411
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2412
|
+
ok: "ok";
|
|
2413
|
+
no: "no";
|
|
2414
|
+
warn: "warn";
|
|
2415
|
+
}>>;
|
|
2273
2416
|
}, z.core.$strip>]>>;
|
|
2274
2417
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2275
2418
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2414,6 +2557,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2414
2557
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2415
2558
|
text: z.ZodString;
|
|
2416
2559
|
}, z.core.$strip>]>>>;
|
|
2560
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2561
|
+
ok: "ok";
|
|
2562
|
+
no: "no";
|
|
2563
|
+
warn: "warn";
|
|
2564
|
+
}>>;
|
|
2417
2565
|
}, z.core.$strip>]>>;
|
|
2418
2566
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2419
2567
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2547,6 +2695,11 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2547
2695
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2548
2696
|
text: z.ZodString;
|
|
2549
2697
|
}, z.core.$strip>]>>>;
|
|
2698
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
2699
|
+
ok: "ok";
|
|
2700
|
+
no: "no";
|
|
2701
|
+
warn: "warn";
|
|
2702
|
+
}>>;
|
|
2550
2703
|
}, z.core.$strip>]>>;
|
|
2551
2704
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2552
2705
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2663,6 +2816,18 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
2663
2816
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2664
2817
|
footer: z.ZodOptional<z.ZodString>;
|
|
2665
2818
|
}, z.core.$strip>>;
|
|
2819
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
2820
|
+
label: z.ZodString;
|
|
2821
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2822
|
+
primary: "primary";
|
|
2823
|
+
accent: "accent";
|
|
2824
|
+
success: "success";
|
|
2825
|
+
warning: "warning";
|
|
2826
|
+
danger: "danger";
|
|
2827
|
+
info: "info";
|
|
2828
|
+
highlight: "highlight";
|
|
2829
|
+
}>>;
|
|
2830
|
+
}, z.core.$strip>>;
|
|
2666
2831
|
layout: z.ZodLiteral<"grid">;
|
|
2667
2832
|
}, z.core.$strip>;
|
|
2668
2833
|
export declare const bigQuoteSlideSchema: z.ZodObject<{
|
|
@@ -2685,6 +2850,18 @@ export declare const bigQuoteSlideSchema: z.ZodObject<{
|
|
|
2685
2850
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2686
2851
|
footer: z.ZodOptional<z.ZodString>;
|
|
2687
2852
|
}, z.core.$strip>>;
|
|
2853
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
2854
|
+
label: z.ZodString;
|
|
2855
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2856
|
+
primary: "primary";
|
|
2857
|
+
accent: "accent";
|
|
2858
|
+
success: "success";
|
|
2859
|
+
warning: "warning";
|
|
2860
|
+
danger: "danger";
|
|
2861
|
+
info: "info";
|
|
2862
|
+
highlight: "highlight";
|
|
2863
|
+
}>>;
|
|
2864
|
+
}, z.core.$strip>>;
|
|
2688
2865
|
layout: z.ZodLiteral<"bigQuote">;
|
|
2689
2866
|
}, z.core.$strip>;
|
|
2690
2867
|
export declare const statItemSchema: z.ZodObject<{
|
|
@@ -2700,6 +2877,7 @@ export declare const statItemSchema: z.ZodObject<{
|
|
|
2700
2877
|
highlight: "highlight";
|
|
2701
2878
|
}>>;
|
|
2702
2879
|
change: z.ZodOptional<z.ZodString>;
|
|
2880
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
2703
2881
|
}, z.core.$strip>;
|
|
2704
2882
|
export declare const statsSlideSchema: z.ZodObject<{
|
|
2705
2883
|
title: z.ZodString;
|
|
@@ -2718,6 +2896,7 @@ export declare const statsSlideSchema: z.ZodObject<{
|
|
|
2718
2896
|
highlight: "highlight";
|
|
2719
2897
|
}>>;
|
|
2720
2898
|
change: z.ZodOptional<z.ZodString>;
|
|
2899
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
2721
2900
|
}, z.core.$strip>>;
|
|
2722
2901
|
callout: z.ZodOptional<z.ZodObject<{
|
|
2723
2902
|
text: z.ZodString;
|
|
@@ -2753,6 +2932,18 @@ export declare const statsSlideSchema: z.ZodObject<{
|
|
|
2753
2932
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2754
2933
|
footer: z.ZodOptional<z.ZodString>;
|
|
2755
2934
|
}, z.core.$strip>>;
|
|
2935
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
2936
|
+
label: z.ZodString;
|
|
2937
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
2938
|
+
primary: "primary";
|
|
2939
|
+
accent: "accent";
|
|
2940
|
+
success: "success";
|
|
2941
|
+
warning: "warning";
|
|
2942
|
+
danger: "danger";
|
|
2943
|
+
info: "info";
|
|
2944
|
+
highlight: "highlight";
|
|
2945
|
+
}>>;
|
|
2946
|
+
}, z.core.$strip>>;
|
|
2756
2947
|
layout: z.ZodLiteral<"stats">;
|
|
2757
2948
|
}, z.core.$strip>;
|
|
2758
2949
|
export declare const timelineItemSchema: z.ZodObject<{
|
|
@@ -2769,6 +2960,7 @@ export declare const timelineItemSchema: z.ZodObject<{
|
|
|
2769
2960
|
highlight: "highlight";
|
|
2770
2961
|
}>>;
|
|
2771
2962
|
done: z.ZodOptional<z.ZodBoolean>;
|
|
2963
|
+
hot: z.ZodOptional<z.ZodBoolean>;
|
|
2772
2964
|
}, z.core.$strip>;
|
|
2773
2965
|
export declare const timelineSlideSchema: z.ZodObject<{
|
|
2774
2966
|
title: z.ZodString;
|
|
@@ -2788,6 +2980,7 @@ export declare const timelineSlideSchema: z.ZodObject<{
|
|
|
2788
2980
|
highlight: "highlight";
|
|
2789
2981
|
}>>;
|
|
2790
2982
|
done: z.ZodOptional<z.ZodBoolean>;
|
|
2983
|
+
hot: z.ZodOptional<z.ZodBoolean>;
|
|
2791
2984
|
}, z.core.$strip>>;
|
|
2792
2985
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
2793
2986
|
primary: "primary";
|
|
@@ -2805,6 +2998,18 @@ export declare const timelineSlideSchema: z.ZodObject<{
|
|
|
2805
2998
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
2806
2999
|
footer: z.ZodOptional<z.ZodString>;
|
|
2807
3000
|
}, z.core.$strip>>;
|
|
3001
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
3002
|
+
label: z.ZodString;
|
|
3003
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3004
|
+
primary: "primary";
|
|
3005
|
+
accent: "accent";
|
|
3006
|
+
success: "success";
|
|
3007
|
+
warning: "warning";
|
|
3008
|
+
danger: "danger";
|
|
3009
|
+
info: "info";
|
|
3010
|
+
highlight: "highlight";
|
|
3011
|
+
}>>;
|
|
3012
|
+
}, z.core.$strip>>;
|
|
2808
3013
|
layout: z.ZodLiteral<"timeline">;
|
|
2809
3014
|
}, z.core.$strip>;
|
|
2810
3015
|
export declare const splitPanelSchema: z.ZodObject<{
|
|
@@ -2848,6 +3053,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
2848
3053
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2849
3054
|
text: z.ZodString;
|
|
2850
3055
|
}, z.core.$strip>]>>>;
|
|
3056
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3057
|
+
ok: "ok";
|
|
3058
|
+
no: "no";
|
|
3059
|
+
warn: "warn";
|
|
3060
|
+
}>>;
|
|
2851
3061
|
}, z.core.$strip>]>>;
|
|
2852
3062
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2853
3063
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -2981,6 +3191,11 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
2981
3191
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2982
3192
|
text: z.ZodString;
|
|
2983
3193
|
}, z.core.$strip>]>>>;
|
|
3194
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3195
|
+
ok: "ok";
|
|
3196
|
+
no: "no";
|
|
3197
|
+
warn: "warn";
|
|
3198
|
+
}>>;
|
|
2984
3199
|
}, z.core.$strip>]>>;
|
|
2985
3200
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
2986
3201
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3129,6 +3344,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3129
3344
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3130
3345
|
text: z.ZodString;
|
|
3131
3346
|
}, z.core.$strip>]>>>;
|
|
3347
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3348
|
+
ok: "ok";
|
|
3349
|
+
no: "no";
|
|
3350
|
+
warn: "warn";
|
|
3351
|
+
}>>;
|
|
3132
3352
|
}, z.core.$strip>]>>;
|
|
3133
3353
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3134
3354
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3262,6 +3482,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3262
3482
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3263
3483
|
text: z.ZodString;
|
|
3264
3484
|
}, z.core.$strip>]>>>;
|
|
3485
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3486
|
+
ok: "ok";
|
|
3487
|
+
no: "no";
|
|
3488
|
+
warn: "warn";
|
|
3489
|
+
}>>;
|
|
3265
3490
|
}, z.core.$strip>]>>;
|
|
3266
3491
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3267
3492
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3409,6 +3634,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3409
3634
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3410
3635
|
text: z.ZodString;
|
|
3411
3636
|
}, z.core.$strip>]>>>;
|
|
3637
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3638
|
+
ok: "ok";
|
|
3639
|
+
no: "no";
|
|
3640
|
+
warn: "warn";
|
|
3641
|
+
}>>;
|
|
3412
3642
|
}, z.core.$strip>]>>;
|
|
3413
3643
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3414
3644
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3542,6 +3772,11 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3542
3772
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3543
3773
|
text: z.ZodString;
|
|
3544
3774
|
}, z.core.$strip>]>>>;
|
|
3775
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3776
|
+
ok: "ok";
|
|
3777
|
+
no: "no";
|
|
3778
|
+
warn: "warn";
|
|
3779
|
+
}>>;
|
|
3545
3780
|
}, z.core.$strip>]>>;
|
|
3546
3781
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3547
3782
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3664,6 +3899,18 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
3664
3899
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
3665
3900
|
footer: z.ZodOptional<z.ZodString>;
|
|
3666
3901
|
}, z.core.$strip>>;
|
|
3902
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
3903
|
+
label: z.ZodString;
|
|
3904
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
3905
|
+
primary: "primary";
|
|
3906
|
+
accent: "accent";
|
|
3907
|
+
success: "success";
|
|
3908
|
+
warning: "warning";
|
|
3909
|
+
danger: "danger";
|
|
3910
|
+
info: "info";
|
|
3911
|
+
highlight: "highlight";
|
|
3912
|
+
}>>;
|
|
3913
|
+
}, z.core.$strip>>;
|
|
3667
3914
|
layout: z.ZodLiteral<"split">;
|
|
3668
3915
|
}, z.core.$strip>;
|
|
3669
3916
|
export declare const matrixCellSchema: z.ZodObject<{
|
|
@@ -3696,6 +3943,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
3696
3943
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3697
3944
|
text: z.ZodString;
|
|
3698
3945
|
}, z.core.$strip>]>>>;
|
|
3946
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
3947
|
+
ok: "ok";
|
|
3948
|
+
no: "no";
|
|
3949
|
+
warn: "warn";
|
|
3950
|
+
}>>;
|
|
3699
3951
|
}, z.core.$strip>]>>;
|
|
3700
3952
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3701
3953
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3829,6 +4081,11 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
3829
4081
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3830
4082
|
text: z.ZodString;
|
|
3831
4083
|
}, z.core.$strip>]>>>;
|
|
4084
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
4085
|
+
ok: "ok";
|
|
4086
|
+
no: "no";
|
|
4087
|
+
warn: "warn";
|
|
4088
|
+
}>>;
|
|
3832
4089
|
}, z.core.$strip>]>>;
|
|
3833
4090
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3834
4091
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -3983,6 +4240,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
3983
4240
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3984
4241
|
text: z.ZodString;
|
|
3985
4242
|
}, z.core.$strip>]>>>;
|
|
4243
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
4244
|
+
ok: "ok";
|
|
4245
|
+
no: "no";
|
|
4246
|
+
warn: "warn";
|
|
4247
|
+
}>>;
|
|
3986
4248
|
}, z.core.$strip>]>>;
|
|
3987
4249
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
3988
4250
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4116,6 +4378,11 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4116
4378
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4117
4379
|
text: z.ZodString;
|
|
4118
4380
|
}, z.core.$strip>]>>>;
|
|
4381
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
4382
|
+
ok: "ok";
|
|
4383
|
+
no: "no";
|
|
4384
|
+
warn: "warn";
|
|
4385
|
+
}>>;
|
|
4119
4386
|
}, z.core.$strip>]>>;
|
|
4120
4387
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4121
4388
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4240,6 +4507,18 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
4240
4507
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4241
4508
|
footer: z.ZodOptional<z.ZodString>;
|
|
4242
4509
|
}, z.core.$strip>>;
|
|
4510
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4511
|
+
label: z.ZodString;
|
|
4512
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4513
|
+
primary: "primary";
|
|
4514
|
+
accent: "accent";
|
|
4515
|
+
success: "success";
|
|
4516
|
+
warning: "warning";
|
|
4517
|
+
danger: "danger";
|
|
4518
|
+
info: "info";
|
|
4519
|
+
highlight: "highlight";
|
|
4520
|
+
}>>;
|
|
4521
|
+
}, z.core.$strip>>;
|
|
4243
4522
|
layout: z.ZodLiteral<"matrix">;
|
|
4244
4523
|
}, z.core.$strip>;
|
|
4245
4524
|
export declare const tableSlideSchema: z.ZodObject<{
|
|
@@ -4297,6 +4576,18 @@ export declare const tableSlideSchema: z.ZodObject<{
|
|
|
4297
4576
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4298
4577
|
footer: z.ZodOptional<z.ZodString>;
|
|
4299
4578
|
}, z.core.$strip>>;
|
|
4579
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4580
|
+
label: z.ZodString;
|
|
4581
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4582
|
+
primary: "primary";
|
|
4583
|
+
accent: "accent";
|
|
4584
|
+
success: "success";
|
|
4585
|
+
warning: "warning";
|
|
4586
|
+
danger: "danger";
|
|
4587
|
+
info: "info";
|
|
4588
|
+
highlight: "highlight";
|
|
4589
|
+
}>>;
|
|
4590
|
+
}, z.core.$strip>>;
|
|
4300
4591
|
layout: z.ZodLiteral<"table">;
|
|
4301
4592
|
}, z.core.$strip>;
|
|
4302
4593
|
export declare const waterfallItemSchema: z.ZodObject<{
|
|
@@ -4366,6 +4657,18 @@ export declare const waterfallSlideSchema: z.ZodObject<{
|
|
|
4366
4657
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4367
4658
|
footer: z.ZodOptional<z.ZodString>;
|
|
4368
4659
|
}, z.core.$strip>>;
|
|
4660
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4661
|
+
label: z.ZodString;
|
|
4662
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4663
|
+
primary: "primary";
|
|
4664
|
+
accent: "accent";
|
|
4665
|
+
success: "success";
|
|
4666
|
+
warning: "warning";
|
|
4667
|
+
danger: "danger";
|
|
4668
|
+
info: "info";
|
|
4669
|
+
highlight: "highlight";
|
|
4670
|
+
}>>;
|
|
4671
|
+
}, z.core.$strip>>;
|
|
4369
4672
|
layout: z.ZodLiteral<"waterfall">;
|
|
4370
4673
|
}, z.core.$strip>;
|
|
4371
4674
|
export declare const funnelStageSchema: z.ZodObject<{
|
|
@@ -4434,8 +4737,104 @@ export declare const funnelSlideSchema: z.ZodObject<{
|
|
|
4434
4737
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4435
4738
|
footer: z.ZodOptional<z.ZodString>;
|
|
4436
4739
|
}, z.core.$strip>>;
|
|
4740
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4741
|
+
label: z.ZodString;
|
|
4742
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4743
|
+
primary: "primary";
|
|
4744
|
+
accent: "accent";
|
|
4745
|
+
success: "success";
|
|
4746
|
+
warning: "warning";
|
|
4747
|
+
danger: "danger";
|
|
4748
|
+
info: "info";
|
|
4749
|
+
highlight: "highlight";
|
|
4750
|
+
}>>;
|
|
4751
|
+
}, z.core.$strip>>;
|
|
4437
4752
|
layout: z.ZodLiteral<"funnel">;
|
|
4438
4753
|
}, z.core.$strip>;
|
|
4754
|
+
/** A single line in a manifesto / creed grid. */
|
|
4755
|
+
export declare const manifestoLineSchema: z.ZodObject<{
|
|
4756
|
+
title: z.ZodString;
|
|
4757
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4758
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
4759
|
+
primary: "primary";
|
|
4760
|
+
accent: "accent";
|
|
4761
|
+
success: "success";
|
|
4762
|
+
warning: "warning";
|
|
4763
|
+
danger: "danger";
|
|
4764
|
+
info: "info";
|
|
4765
|
+
highlight: "highlight";
|
|
4766
|
+
}>>;
|
|
4767
|
+
}, z.core.$strip>;
|
|
4768
|
+
/**
|
|
4769
|
+
* Grid of short bordered cards, each with a colored left accent — useful for manifestos,
|
|
4770
|
+
* principles, "what we believe" lists, etc.
|
|
4771
|
+
*/
|
|
4772
|
+
export declare const manifestoSlideSchema: z.ZodObject<{
|
|
4773
|
+
title: z.ZodString;
|
|
4774
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
4775
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
4776
|
+
items: z.ZodArray<z.ZodObject<{
|
|
4777
|
+
title: z.ZodString;
|
|
4778
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4779
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
4780
|
+
primary: "primary";
|
|
4781
|
+
accent: "accent";
|
|
4782
|
+
success: "success";
|
|
4783
|
+
warning: "warning";
|
|
4784
|
+
danger: "danger";
|
|
4785
|
+
info: "info";
|
|
4786
|
+
highlight: "highlight";
|
|
4787
|
+
}>>;
|
|
4788
|
+
}, z.core.$strip>>;
|
|
4789
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
4790
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
4791
|
+
text: z.ZodString;
|
|
4792
|
+
label: z.ZodOptional<z.ZodString>;
|
|
4793
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4794
|
+
primary: "primary";
|
|
4795
|
+
accent: "accent";
|
|
4796
|
+
success: "success";
|
|
4797
|
+
warning: "warning";
|
|
4798
|
+
danger: "danger";
|
|
4799
|
+
info: "info";
|
|
4800
|
+
highlight: "highlight";
|
|
4801
|
+
}>>;
|
|
4802
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
4803
|
+
left: "left";
|
|
4804
|
+
center: "center";
|
|
4805
|
+
}>>;
|
|
4806
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
4807
|
+
}, z.core.$strip>>;
|
|
4808
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
4809
|
+
primary: "primary";
|
|
4810
|
+
accent: "accent";
|
|
4811
|
+
success: "success";
|
|
4812
|
+
warning: "warning";
|
|
4813
|
+
danger: "danger";
|
|
4814
|
+
info: "info";
|
|
4815
|
+
highlight: "highlight";
|
|
4816
|
+
}>>;
|
|
4817
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
4818
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
4819
|
+
bgGradient: z.ZodOptional<z.ZodString>;
|
|
4820
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
4821
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4822
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
4823
|
+
}, z.core.$strip>>;
|
|
4824
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4825
|
+
label: z.ZodString;
|
|
4826
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4827
|
+
primary: "primary";
|
|
4828
|
+
accent: "accent";
|
|
4829
|
+
success: "success";
|
|
4830
|
+
warning: "warning";
|
|
4831
|
+
danger: "danger";
|
|
4832
|
+
info: "info";
|
|
4833
|
+
highlight: "highlight";
|
|
4834
|
+
}>>;
|
|
4835
|
+
}, z.core.$strip>>;
|
|
4836
|
+
layout: z.ZodLiteral<"manifesto">;
|
|
4837
|
+
}, z.core.$strip>;
|
|
4439
4838
|
export declare const slideBrandingLogoSchema: z.ZodObject<{
|
|
4440
4839
|
source: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4441
4840
|
kind: z.ZodLiteral<"url">;
|
|
@@ -4501,6 +4900,7 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4501
4900
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
4502
4901
|
author: z.ZodOptional<z.ZodString>;
|
|
4503
4902
|
note: z.ZodOptional<z.ZodString>;
|
|
4903
|
+
chips: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4504
4904
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
4505
4905
|
primary: "primary";
|
|
4506
4906
|
accent: "accent";
|
|
@@ -4517,15 +4917,27 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4517
4917
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4518
4918
|
footer: z.ZodOptional<z.ZodString>;
|
|
4519
4919
|
}, z.core.$strip>>;
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4920
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
4921
|
+
label: z.ZodString;
|
|
4922
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
4923
|
+
primary: "primary";
|
|
4924
|
+
accent: "accent";
|
|
4925
|
+
success: "success";
|
|
4926
|
+
warning: "warning";
|
|
4927
|
+
danger: "danger";
|
|
4928
|
+
info: "info";
|
|
4929
|
+
highlight: "highlight";
|
|
4930
|
+
}>>;
|
|
4931
|
+
}, z.core.$strip>>;
|
|
4932
|
+
layout: z.ZodLiteral<"title">;
|
|
4933
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4934
|
+
title: z.ZodString;
|
|
4935
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
4936
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
4937
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
4938
|
+
title: z.ZodString;
|
|
4939
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
4940
|
+
primary: "primary";
|
|
4529
4941
|
accent: "accent";
|
|
4530
4942
|
success: "success";
|
|
4531
4943
|
warning: "warning";
|
|
@@ -4560,6 +4972,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4560
4972
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4561
4973
|
text: z.ZodString;
|
|
4562
4974
|
}, z.core.$strip>]>>>;
|
|
4975
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
4976
|
+
ok: "ok";
|
|
4977
|
+
no: "no";
|
|
4978
|
+
warn: "warn";
|
|
4979
|
+
}>>;
|
|
4563
4980
|
}, z.core.$strip>]>>;
|
|
4564
4981
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4565
4982
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4693,6 +5110,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4693
5110
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4694
5111
|
text: z.ZodString;
|
|
4695
5112
|
}, z.core.$strip>]>>>;
|
|
5113
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5114
|
+
ok: "ok";
|
|
5115
|
+
no: "no";
|
|
5116
|
+
warn: "warn";
|
|
5117
|
+
}>>;
|
|
4696
5118
|
}, z.core.$strip>]>>;
|
|
4697
5119
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4698
5120
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -4794,6 +5216,7 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4794
5216
|
footer: z.ZodOptional<z.ZodString>;
|
|
4795
5217
|
label: z.ZodOptional<z.ZodString>;
|
|
4796
5218
|
num: z.ZodOptional<z.ZodNumber>;
|
|
5219
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
4797
5220
|
icon: z.ZodOptional<z.ZodString>;
|
|
4798
5221
|
}, z.core.$strip>>;
|
|
4799
5222
|
showArrows: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4832,6 +5255,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4832
5255
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
4833
5256
|
footer: z.ZodOptional<z.ZodString>;
|
|
4834
5257
|
}, z.core.$strip>>;
|
|
5258
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
5259
|
+
label: z.ZodString;
|
|
5260
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5261
|
+
primary: "primary";
|
|
5262
|
+
accent: "accent";
|
|
5263
|
+
success: "success";
|
|
5264
|
+
warning: "warning";
|
|
5265
|
+
danger: "danger";
|
|
5266
|
+
info: "info";
|
|
5267
|
+
highlight: "highlight";
|
|
5268
|
+
}>>;
|
|
5269
|
+
}, z.core.$strip>>;
|
|
4835
5270
|
layout: z.ZodLiteral<"columns">;
|
|
4836
5271
|
}, z.core.$strip>, z.ZodObject<{
|
|
4837
5272
|
title: z.ZodString;
|
|
@@ -4875,6 +5310,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
4875
5310
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4876
5311
|
text: z.ZodString;
|
|
4877
5312
|
}, z.core.$strip>]>>>;
|
|
5313
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5314
|
+
ok: "ok";
|
|
5315
|
+
no: "no";
|
|
5316
|
+
warn: "warn";
|
|
5317
|
+
}>>;
|
|
4878
5318
|
}, z.core.$strip>]>>;
|
|
4879
5319
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
4880
5320
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5008,6 +5448,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5008
5448
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5009
5449
|
text: z.ZodString;
|
|
5010
5450
|
}, z.core.$strip>]>>>;
|
|
5451
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5452
|
+
ok: "ok";
|
|
5453
|
+
no: "no";
|
|
5454
|
+
warn: "warn";
|
|
5455
|
+
}>>;
|
|
5011
5456
|
}, z.core.$strip>]>>;
|
|
5012
5457
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5013
5458
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5146,6 +5591,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5146
5591
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5147
5592
|
text: z.ZodString;
|
|
5148
5593
|
}, z.core.$strip>]>>>;
|
|
5594
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5595
|
+
ok: "ok";
|
|
5596
|
+
no: "no";
|
|
5597
|
+
warn: "warn";
|
|
5598
|
+
}>>;
|
|
5149
5599
|
}, z.core.$strip>]>>;
|
|
5150
5600
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5151
5601
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5279,6 +5729,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5279
5729
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5280
5730
|
text: z.ZodString;
|
|
5281
5731
|
}, z.core.$strip>]>>>;
|
|
5732
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5733
|
+
ok: "ok";
|
|
5734
|
+
no: "no";
|
|
5735
|
+
warn: "warn";
|
|
5736
|
+
}>>;
|
|
5282
5737
|
}, z.core.$strip>]>>;
|
|
5283
5738
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5284
5739
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5413,6 +5868,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5413
5868
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
5414
5869
|
footer: z.ZodOptional<z.ZodString>;
|
|
5415
5870
|
}, z.core.$strip>>;
|
|
5871
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
5872
|
+
label: z.ZodString;
|
|
5873
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
5874
|
+
primary: "primary";
|
|
5875
|
+
accent: "accent";
|
|
5876
|
+
success: "success";
|
|
5877
|
+
warning: "warning";
|
|
5878
|
+
danger: "danger";
|
|
5879
|
+
info: "info";
|
|
5880
|
+
highlight: "highlight";
|
|
5881
|
+
}>>;
|
|
5882
|
+
}, z.core.$strip>>;
|
|
5416
5883
|
layout: z.ZodLiteral<"comparison">;
|
|
5417
5884
|
}, z.core.$strip>, z.ZodObject<{
|
|
5418
5885
|
title: z.ZodString;
|
|
@@ -5459,6 +5926,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5459
5926
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5460
5927
|
text: z.ZodString;
|
|
5461
5928
|
}, z.core.$strip>]>>>;
|
|
5929
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
5930
|
+
ok: "ok";
|
|
5931
|
+
no: "no";
|
|
5932
|
+
warn: "warn";
|
|
5933
|
+
}>>;
|
|
5462
5934
|
}, z.core.$strip>]>>;
|
|
5463
5935
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5464
5936
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5592,6 +6064,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5592
6064
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5593
6065
|
text: z.ZodString;
|
|
5594
6066
|
}, z.core.$strip>]>>>;
|
|
6067
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6068
|
+
ok: "ok";
|
|
6069
|
+
no: "no";
|
|
6070
|
+
warn: "warn";
|
|
6071
|
+
}>>;
|
|
5595
6072
|
}, z.core.$strip>]>>;
|
|
5596
6073
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5597
6074
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5708,6 +6185,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5708
6185
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
5709
6186
|
footer: z.ZodOptional<z.ZodString>;
|
|
5710
6187
|
}, z.core.$strip>>;
|
|
6188
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
6189
|
+
label: z.ZodString;
|
|
6190
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6191
|
+
primary: "primary";
|
|
6192
|
+
accent: "accent";
|
|
6193
|
+
success: "success";
|
|
6194
|
+
warning: "warning";
|
|
6195
|
+
danger: "danger";
|
|
6196
|
+
info: "info";
|
|
6197
|
+
highlight: "highlight";
|
|
6198
|
+
}>>;
|
|
6199
|
+
}, z.core.$strip>>;
|
|
5711
6200
|
layout: z.ZodLiteral<"grid">;
|
|
5712
6201
|
}, z.core.$strip>, z.ZodObject<{
|
|
5713
6202
|
quote: z.ZodString;
|
|
@@ -5729,6 +6218,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5729
6218
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
5730
6219
|
footer: z.ZodOptional<z.ZodString>;
|
|
5731
6220
|
}, z.core.$strip>>;
|
|
6221
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
6222
|
+
label: z.ZodString;
|
|
6223
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6224
|
+
primary: "primary";
|
|
6225
|
+
accent: "accent";
|
|
6226
|
+
success: "success";
|
|
6227
|
+
warning: "warning";
|
|
6228
|
+
danger: "danger";
|
|
6229
|
+
info: "info";
|
|
6230
|
+
highlight: "highlight";
|
|
6231
|
+
}>>;
|
|
6232
|
+
}, z.core.$strip>>;
|
|
5732
6233
|
layout: z.ZodLiteral<"bigQuote">;
|
|
5733
6234
|
}, z.core.$strip>, z.ZodObject<{
|
|
5734
6235
|
title: z.ZodString;
|
|
@@ -5747,6 +6248,7 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5747
6248
|
highlight: "highlight";
|
|
5748
6249
|
}>>;
|
|
5749
6250
|
change: z.ZodOptional<z.ZodString>;
|
|
6251
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
5750
6252
|
}, z.core.$strip>>;
|
|
5751
6253
|
callout: z.ZodOptional<z.ZodObject<{
|
|
5752
6254
|
text: z.ZodString;
|
|
@@ -5782,6 +6284,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5782
6284
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
5783
6285
|
footer: z.ZodOptional<z.ZodString>;
|
|
5784
6286
|
}, z.core.$strip>>;
|
|
6287
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
6288
|
+
label: z.ZodString;
|
|
6289
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6290
|
+
primary: "primary";
|
|
6291
|
+
accent: "accent";
|
|
6292
|
+
success: "success";
|
|
6293
|
+
warning: "warning";
|
|
6294
|
+
danger: "danger";
|
|
6295
|
+
info: "info";
|
|
6296
|
+
highlight: "highlight";
|
|
6297
|
+
}>>;
|
|
6298
|
+
}, z.core.$strip>>;
|
|
5785
6299
|
layout: z.ZodLiteral<"stats">;
|
|
5786
6300
|
}, z.core.$strip>, z.ZodObject<{
|
|
5787
6301
|
title: z.ZodString;
|
|
@@ -5801,6 +6315,7 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5801
6315
|
highlight: "highlight";
|
|
5802
6316
|
}>>;
|
|
5803
6317
|
done: z.ZodOptional<z.ZodBoolean>;
|
|
6318
|
+
hot: z.ZodOptional<z.ZodBoolean>;
|
|
5804
6319
|
}, z.core.$strip>>;
|
|
5805
6320
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
5806
6321
|
primary: "primary";
|
|
@@ -5818,6 +6333,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5818
6333
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
5819
6334
|
footer: z.ZodOptional<z.ZodString>;
|
|
5820
6335
|
}, z.core.$strip>>;
|
|
6336
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
6337
|
+
label: z.ZodString;
|
|
6338
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6339
|
+
primary: "primary";
|
|
6340
|
+
accent: "accent";
|
|
6341
|
+
success: "success";
|
|
6342
|
+
warning: "warning";
|
|
6343
|
+
danger: "danger";
|
|
6344
|
+
info: "info";
|
|
6345
|
+
highlight: "highlight";
|
|
6346
|
+
}>>;
|
|
6347
|
+
}, z.core.$strip>>;
|
|
5821
6348
|
layout: z.ZodLiteral<"timeline">;
|
|
5822
6349
|
}, z.core.$strip>, z.ZodObject<{
|
|
5823
6350
|
left: z.ZodOptional<z.ZodObject<{
|
|
@@ -5861,6 +6388,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5861
6388
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5862
6389
|
text: z.ZodString;
|
|
5863
6390
|
}, z.core.$strip>]>>>;
|
|
6391
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6392
|
+
ok: "ok";
|
|
6393
|
+
no: "no";
|
|
6394
|
+
warn: "warn";
|
|
6395
|
+
}>>;
|
|
5864
6396
|
}, z.core.$strip>]>>;
|
|
5865
6397
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5866
6398
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -5994,6 +6526,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
5994
6526
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5995
6527
|
text: z.ZodString;
|
|
5996
6528
|
}, z.core.$strip>]>>>;
|
|
6529
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6530
|
+
ok: "ok";
|
|
6531
|
+
no: "no";
|
|
6532
|
+
warn: "warn";
|
|
6533
|
+
}>>;
|
|
5997
6534
|
}, z.core.$strip>]>>;
|
|
5998
6535
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
5999
6536
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -6141,6 +6678,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6141
6678
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6142
6679
|
text: z.ZodString;
|
|
6143
6680
|
}, z.core.$strip>]>>>;
|
|
6681
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6682
|
+
ok: "ok";
|
|
6683
|
+
no: "no";
|
|
6684
|
+
warn: "warn";
|
|
6685
|
+
}>>;
|
|
6144
6686
|
}, z.core.$strip>]>>;
|
|
6145
6687
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6146
6688
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -6274,6 +6816,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6274
6816
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6275
6817
|
text: z.ZodString;
|
|
6276
6818
|
}, z.core.$strip>]>>>;
|
|
6819
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
6820
|
+
ok: "ok";
|
|
6821
|
+
no: "no";
|
|
6822
|
+
warn: "warn";
|
|
6823
|
+
}>>;
|
|
6277
6824
|
}, z.core.$strip>]>>;
|
|
6278
6825
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6279
6826
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -6396,6 +6943,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6396
6943
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6397
6944
|
footer: z.ZodOptional<z.ZodString>;
|
|
6398
6945
|
}, z.core.$strip>>;
|
|
6946
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
6947
|
+
label: z.ZodString;
|
|
6948
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
6949
|
+
primary: "primary";
|
|
6950
|
+
accent: "accent";
|
|
6951
|
+
success: "success";
|
|
6952
|
+
warning: "warning";
|
|
6953
|
+
danger: "danger";
|
|
6954
|
+
info: "info";
|
|
6955
|
+
highlight: "highlight";
|
|
6956
|
+
}>>;
|
|
6957
|
+
}, z.core.$strip>>;
|
|
6399
6958
|
layout: z.ZodLiteral<"split">;
|
|
6400
6959
|
}, z.core.$strip>, z.ZodObject<{
|
|
6401
6960
|
title: z.ZodString;
|
|
@@ -6443,6 +7002,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6443
7002
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6444
7003
|
text: z.ZodString;
|
|
6445
7004
|
}, z.core.$strip>]>>>;
|
|
7005
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
7006
|
+
ok: "ok";
|
|
7007
|
+
no: "no";
|
|
7008
|
+
warn: "warn";
|
|
7009
|
+
}>>;
|
|
6446
7010
|
}, z.core.$strip>]>>;
|
|
6447
7011
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6448
7012
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -6576,6 +7140,11 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6576
7140
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6577
7141
|
text: z.ZodString;
|
|
6578
7142
|
}, z.core.$strip>]>>>;
|
|
7143
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
7144
|
+
ok: "ok";
|
|
7145
|
+
no: "no";
|
|
7146
|
+
warn: "warn";
|
|
7147
|
+
}>>;
|
|
6579
7148
|
}, z.core.$strip>]>>;
|
|
6580
7149
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6581
7150
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -6700,6 +7269,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6700
7269
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6701
7270
|
footer: z.ZodOptional<z.ZodString>;
|
|
6702
7271
|
}, z.core.$strip>>;
|
|
7272
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7273
|
+
label: z.ZodString;
|
|
7274
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7275
|
+
primary: "primary";
|
|
7276
|
+
accent: "accent";
|
|
7277
|
+
success: "success";
|
|
7278
|
+
warning: "warning";
|
|
7279
|
+
danger: "danger";
|
|
7280
|
+
info: "info";
|
|
7281
|
+
highlight: "highlight";
|
|
7282
|
+
}>>;
|
|
7283
|
+
}, z.core.$strip>>;
|
|
6703
7284
|
layout: z.ZodLiteral<"matrix">;
|
|
6704
7285
|
}, z.core.$strip>, z.ZodObject<{
|
|
6705
7286
|
title: z.ZodString;
|
|
@@ -6756,6 +7337,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6756
7337
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6757
7338
|
footer: z.ZodOptional<z.ZodString>;
|
|
6758
7339
|
}, z.core.$strip>>;
|
|
7340
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7341
|
+
label: z.ZodString;
|
|
7342
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7343
|
+
primary: "primary";
|
|
7344
|
+
accent: "accent";
|
|
7345
|
+
success: "success";
|
|
7346
|
+
warning: "warning";
|
|
7347
|
+
danger: "danger";
|
|
7348
|
+
info: "info";
|
|
7349
|
+
highlight: "highlight";
|
|
7350
|
+
}>>;
|
|
7351
|
+
}, z.core.$strip>>;
|
|
6759
7352
|
layout: z.ZodLiteral<"table">;
|
|
6760
7353
|
}, z.core.$strip>, z.ZodObject<{
|
|
6761
7354
|
title: z.ZodString;
|
|
@@ -6809,6 +7402,18 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6809
7402
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6810
7403
|
footer: z.ZodOptional<z.ZodString>;
|
|
6811
7404
|
}, z.core.$strip>>;
|
|
7405
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7406
|
+
label: z.ZodString;
|
|
7407
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7408
|
+
primary: "primary";
|
|
7409
|
+
accent: "accent";
|
|
7410
|
+
success: "success";
|
|
7411
|
+
warning: "warning";
|
|
7412
|
+
danger: "danger";
|
|
7413
|
+
info: "info";
|
|
7414
|
+
highlight: "highlight";
|
|
7415
|
+
}>>;
|
|
7416
|
+
}, z.core.$strip>>;
|
|
6812
7417
|
layout: z.ZodLiteral<"funnel">;
|
|
6813
7418
|
}, z.core.$strip>, z.ZodObject<{
|
|
6814
7419
|
title: z.ZodString;
|
|
@@ -6863,7 +7468,84 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
6863
7468
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6864
7469
|
footer: z.ZodOptional<z.ZodString>;
|
|
6865
7470
|
}, z.core.$strip>>;
|
|
7471
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7472
|
+
label: z.ZodString;
|
|
7473
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7474
|
+
primary: "primary";
|
|
7475
|
+
accent: "accent";
|
|
7476
|
+
success: "success";
|
|
7477
|
+
warning: "warning";
|
|
7478
|
+
danger: "danger";
|
|
7479
|
+
info: "info";
|
|
7480
|
+
highlight: "highlight";
|
|
7481
|
+
}>>;
|
|
7482
|
+
}, z.core.$strip>>;
|
|
6866
7483
|
layout: z.ZodLiteral<"waterfall">;
|
|
7484
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7485
|
+
title: z.ZodString;
|
|
7486
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
7487
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
7488
|
+
items: z.ZodArray<z.ZodObject<{
|
|
7489
|
+
title: z.ZodString;
|
|
7490
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7491
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
7492
|
+
primary: "primary";
|
|
7493
|
+
accent: "accent";
|
|
7494
|
+
success: "success";
|
|
7495
|
+
warning: "warning";
|
|
7496
|
+
danger: "danger";
|
|
7497
|
+
info: "info";
|
|
7498
|
+
highlight: "highlight";
|
|
7499
|
+
}>>;
|
|
7500
|
+
}, z.core.$strip>>;
|
|
7501
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
7502
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
7503
|
+
text: z.ZodString;
|
|
7504
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7505
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7506
|
+
primary: "primary";
|
|
7507
|
+
accent: "accent";
|
|
7508
|
+
success: "success";
|
|
7509
|
+
warning: "warning";
|
|
7510
|
+
danger: "danger";
|
|
7511
|
+
info: "info";
|
|
7512
|
+
highlight: "highlight";
|
|
7513
|
+
}>>;
|
|
7514
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
7515
|
+
left: "left";
|
|
7516
|
+
center: "center";
|
|
7517
|
+
}>>;
|
|
7518
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
7519
|
+
}, z.core.$strip>>;
|
|
7520
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
7521
|
+
primary: "primary";
|
|
7522
|
+
accent: "accent";
|
|
7523
|
+
success: "success";
|
|
7524
|
+
warning: "warning";
|
|
7525
|
+
danger: "danger";
|
|
7526
|
+
info: "info";
|
|
7527
|
+
highlight: "highlight";
|
|
7528
|
+
}>>;
|
|
7529
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
7530
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
7531
|
+
bgGradient: z.ZodOptional<z.ZodString>;
|
|
7532
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
7533
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
7534
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
7535
|
+
}, z.core.$strip>>;
|
|
7536
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7537
|
+
label: z.ZodString;
|
|
7538
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7539
|
+
primary: "primary";
|
|
7540
|
+
accent: "accent";
|
|
7541
|
+
success: "success";
|
|
7542
|
+
warning: "warning";
|
|
7543
|
+
danger: "danger";
|
|
7544
|
+
info: "info";
|
|
7545
|
+
highlight: "highlight";
|
|
7546
|
+
}>>;
|
|
7547
|
+
}, z.core.$strip>>;
|
|
7548
|
+
layout: z.ZodLiteral<"manifesto">;
|
|
6867
7549
|
}, z.core.$strip>], "layout">;
|
|
6868
7550
|
/** Media schema registered in mulmoImageAssetSchema */
|
|
6869
7551
|
export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
@@ -6898,6 +7580,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
6898
7580
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
6899
7581
|
author: z.ZodOptional<z.ZodString>;
|
|
6900
7582
|
note: z.ZodOptional<z.ZodString>;
|
|
7583
|
+
chips: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6901
7584
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
6902
7585
|
primary: "primary";
|
|
6903
7586
|
accent: "accent";
|
|
@@ -6914,6 +7597,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
6914
7597
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
6915
7598
|
footer: z.ZodOptional<z.ZodString>;
|
|
6916
7599
|
}, z.core.$strip>>;
|
|
7600
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7601
|
+
label: z.ZodString;
|
|
7602
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7603
|
+
primary: "primary";
|
|
7604
|
+
accent: "accent";
|
|
7605
|
+
success: "success";
|
|
7606
|
+
warning: "warning";
|
|
7607
|
+
danger: "danger";
|
|
7608
|
+
info: "info";
|
|
7609
|
+
highlight: "highlight";
|
|
7610
|
+
}>>;
|
|
7611
|
+
}, z.core.$strip>>;
|
|
6917
7612
|
layout: z.ZodLiteral<"title">;
|
|
6918
7613
|
}, z.core.$strip>, z.ZodObject<{
|
|
6919
7614
|
title: z.ZodString;
|
|
@@ -6957,6 +7652,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
6957
7652
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6958
7653
|
text: z.ZodString;
|
|
6959
7654
|
}, z.core.$strip>]>>>;
|
|
7655
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
7656
|
+
ok: "ok";
|
|
7657
|
+
no: "no";
|
|
7658
|
+
warn: "warn";
|
|
7659
|
+
}>>;
|
|
6960
7660
|
}, z.core.$strip>]>>;
|
|
6961
7661
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
6962
7662
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7090,6 +7790,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7090
7790
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7091
7791
|
text: z.ZodString;
|
|
7092
7792
|
}, z.core.$strip>]>>>;
|
|
7793
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
7794
|
+
ok: "ok";
|
|
7795
|
+
no: "no";
|
|
7796
|
+
warn: "warn";
|
|
7797
|
+
}>>;
|
|
7093
7798
|
}, z.core.$strip>]>>;
|
|
7094
7799
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7095
7800
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7191,6 +7896,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7191
7896
|
footer: z.ZodOptional<z.ZodString>;
|
|
7192
7897
|
label: z.ZodOptional<z.ZodString>;
|
|
7193
7898
|
num: z.ZodOptional<z.ZodNumber>;
|
|
7899
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
7194
7900
|
icon: z.ZodOptional<z.ZodString>;
|
|
7195
7901
|
}, z.core.$strip>>;
|
|
7196
7902
|
showArrows: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7229,6 +7935,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7229
7935
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
7230
7936
|
footer: z.ZodOptional<z.ZodString>;
|
|
7231
7937
|
}, z.core.$strip>>;
|
|
7938
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
7939
|
+
label: z.ZodString;
|
|
7940
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
7941
|
+
primary: "primary";
|
|
7942
|
+
accent: "accent";
|
|
7943
|
+
success: "success";
|
|
7944
|
+
warning: "warning";
|
|
7945
|
+
danger: "danger";
|
|
7946
|
+
info: "info";
|
|
7947
|
+
highlight: "highlight";
|
|
7948
|
+
}>>;
|
|
7949
|
+
}, z.core.$strip>>;
|
|
7232
7950
|
layout: z.ZodLiteral<"columns">;
|
|
7233
7951
|
}, z.core.$strip>, z.ZodObject<{
|
|
7234
7952
|
title: z.ZodString;
|
|
@@ -7272,6 +7990,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7272
7990
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7273
7991
|
text: z.ZodString;
|
|
7274
7992
|
}, z.core.$strip>]>>>;
|
|
7993
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
7994
|
+
ok: "ok";
|
|
7995
|
+
no: "no";
|
|
7996
|
+
warn: "warn";
|
|
7997
|
+
}>>;
|
|
7275
7998
|
}, z.core.$strip>]>>;
|
|
7276
7999
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7277
8000
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7405,6 +8128,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7405
8128
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7406
8129
|
text: z.ZodString;
|
|
7407
8130
|
}, z.core.$strip>]>>>;
|
|
8131
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
8132
|
+
ok: "ok";
|
|
8133
|
+
no: "no";
|
|
8134
|
+
warn: "warn";
|
|
8135
|
+
}>>;
|
|
7408
8136
|
}, z.core.$strip>]>>;
|
|
7409
8137
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7410
8138
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7543,6 +8271,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7543
8271
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7544
8272
|
text: z.ZodString;
|
|
7545
8273
|
}, z.core.$strip>]>>>;
|
|
8274
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
8275
|
+
ok: "ok";
|
|
8276
|
+
no: "no";
|
|
8277
|
+
warn: "warn";
|
|
8278
|
+
}>>;
|
|
7546
8279
|
}, z.core.$strip>]>>;
|
|
7547
8280
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7548
8281
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7676,6 +8409,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7676
8409
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7677
8410
|
text: z.ZodString;
|
|
7678
8411
|
}, z.core.$strip>]>>>;
|
|
8412
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
8413
|
+
ok: "ok";
|
|
8414
|
+
no: "no";
|
|
8415
|
+
warn: "warn";
|
|
8416
|
+
}>>;
|
|
7679
8417
|
}, z.core.$strip>]>>;
|
|
7680
8418
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7681
8419
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7810,6 +8548,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7810
8548
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
7811
8549
|
footer: z.ZodOptional<z.ZodString>;
|
|
7812
8550
|
}, z.core.$strip>>;
|
|
8551
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
8552
|
+
label: z.ZodString;
|
|
8553
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8554
|
+
primary: "primary";
|
|
8555
|
+
accent: "accent";
|
|
8556
|
+
success: "success";
|
|
8557
|
+
warning: "warning";
|
|
8558
|
+
danger: "danger";
|
|
8559
|
+
info: "info";
|
|
8560
|
+
highlight: "highlight";
|
|
8561
|
+
}>>;
|
|
8562
|
+
}, z.core.$strip>>;
|
|
7813
8563
|
layout: z.ZodLiteral<"comparison">;
|
|
7814
8564
|
}, z.core.$strip>, z.ZodObject<{
|
|
7815
8565
|
title: z.ZodString;
|
|
@@ -7856,6 +8606,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7856
8606
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7857
8607
|
text: z.ZodString;
|
|
7858
8608
|
}, z.core.$strip>]>>>;
|
|
8609
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
8610
|
+
ok: "ok";
|
|
8611
|
+
no: "no";
|
|
8612
|
+
warn: "warn";
|
|
8613
|
+
}>>;
|
|
7859
8614
|
}, z.core.$strip>]>>;
|
|
7860
8615
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7861
8616
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -7989,6 +8744,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
7989
8744
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7990
8745
|
text: z.ZodString;
|
|
7991
8746
|
}, z.core.$strip>]>>>;
|
|
8747
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
8748
|
+
ok: "ok";
|
|
8749
|
+
no: "no";
|
|
8750
|
+
warn: "warn";
|
|
8751
|
+
}>>;
|
|
7992
8752
|
}, z.core.$strip>]>>;
|
|
7993
8753
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
7994
8754
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8105,6 +8865,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8105
8865
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
8106
8866
|
footer: z.ZodOptional<z.ZodString>;
|
|
8107
8867
|
}, z.core.$strip>>;
|
|
8868
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
8869
|
+
label: z.ZodString;
|
|
8870
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8871
|
+
primary: "primary";
|
|
8872
|
+
accent: "accent";
|
|
8873
|
+
success: "success";
|
|
8874
|
+
warning: "warning";
|
|
8875
|
+
danger: "danger";
|
|
8876
|
+
info: "info";
|
|
8877
|
+
highlight: "highlight";
|
|
8878
|
+
}>>;
|
|
8879
|
+
}, z.core.$strip>>;
|
|
8108
8880
|
layout: z.ZodLiteral<"grid">;
|
|
8109
8881
|
}, z.core.$strip>, z.ZodObject<{
|
|
8110
8882
|
quote: z.ZodString;
|
|
@@ -8126,6 +8898,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8126
8898
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
8127
8899
|
footer: z.ZodOptional<z.ZodString>;
|
|
8128
8900
|
}, z.core.$strip>>;
|
|
8901
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
8902
|
+
label: z.ZodString;
|
|
8903
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8904
|
+
primary: "primary";
|
|
8905
|
+
accent: "accent";
|
|
8906
|
+
success: "success";
|
|
8907
|
+
warning: "warning";
|
|
8908
|
+
danger: "danger";
|
|
8909
|
+
info: "info";
|
|
8910
|
+
highlight: "highlight";
|
|
8911
|
+
}>>;
|
|
8912
|
+
}, z.core.$strip>>;
|
|
8129
8913
|
layout: z.ZodLiteral<"bigQuote">;
|
|
8130
8914
|
}, z.core.$strip>, z.ZodObject<{
|
|
8131
8915
|
title: z.ZodString;
|
|
@@ -8144,6 +8928,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8144
8928
|
highlight: "highlight";
|
|
8145
8929
|
}>>;
|
|
8146
8930
|
change: z.ZodOptional<z.ZodString>;
|
|
8931
|
+
numLabel: z.ZodOptional<z.ZodString>;
|
|
8147
8932
|
}, z.core.$strip>>;
|
|
8148
8933
|
callout: z.ZodOptional<z.ZodObject<{
|
|
8149
8934
|
text: z.ZodString;
|
|
@@ -8179,6 +8964,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8179
8964
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
8180
8965
|
footer: z.ZodOptional<z.ZodString>;
|
|
8181
8966
|
}, z.core.$strip>>;
|
|
8967
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
8968
|
+
label: z.ZodString;
|
|
8969
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
8970
|
+
primary: "primary";
|
|
8971
|
+
accent: "accent";
|
|
8972
|
+
success: "success";
|
|
8973
|
+
warning: "warning";
|
|
8974
|
+
danger: "danger";
|
|
8975
|
+
info: "info";
|
|
8976
|
+
highlight: "highlight";
|
|
8977
|
+
}>>;
|
|
8978
|
+
}, z.core.$strip>>;
|
|
8182
8979
|
layout: z.ZodLiteral<"stats">;
|
|
8183
8980
|
}, z.core.$strip>, z.ZodObject<{
|
|
8184
8981
|
title: z.ZodString;
|
|
@@ -8198,6 +8995,7 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8198
8995
|
highlight: "highlight";
|
|
8199
8996
|
}>>;
|
|
8200
8997
|
done: z.ZodOptional<z.ZodBoolean>;
|
|
8998
|
+
hot: z.ZodOptional<z.ZodBoolean>;
|
|
8201
8999
|
}, z.core.$strip>>;
|
|
8202
9000
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
8203
9001
|
primary: "primary";
|
|
@@ -8215,6 +9013,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8215
9013
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
8216
9014
|
footer: z.ZodOptional<z.ZodString>;
|
|
8217
9015
|
}, z.core.$strip>>;
|
|
9016
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
9017
|
+
label: z.ZodString;
|
|
9018
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
9019
|
+
primary: "primary";
|
|
9020
|
+
accent: "accent";
|
|
9021
|
+
success: "success";
|
|
9022
|
+
warning: "warning";
|
|
9023
|
+
danger: "danger";
|
|
9024
|
+
info: "info";
|
|
9025
|
+
highlight: "highlight";
|
|
9026
|
+
}>>;
|
|
9027
|
+
}, z.core.$strip>>;
|
|
8218
9028
|
layout: z.ZodLiteral<"timeline">;
|
|
8219
9029
|
}, z.core.$strip>, z.ZodObject<{
|
|
8220
9030
|
left: z.ZodOptional<z.ZodObject<{
|
|
@@ -8258,6 +9068,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8258
9068
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8259
9069
|
text: z.ZodString;
|
|
8260
9070
|
}, z.core.$strip>]>>>;
|
|
9071
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9072
|
+
ok: "ok";
|
|
9073
|
+
no: "no";
|
|
9074
|
+
warn: "warn";
|
|
9075
|
+
}>>;
|
|
8261
9076
|
}, z.core.$strip>]>>;
|
|
8262
9077
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8263
9078
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8391,6 +9206,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8391
9206
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8392
9207
|
text: z.ZodString;
|
|
8393
9208
|
}, z.core.$strip>]>>>;
|
|
9209
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9210
|
+
ok: "ok";
|
|
9211
|
+
no: "no";
|
|
9212
|
+
warn: "warn";
|
|
9213
|
+
}>>;
|
|
8394
9214
|
}, z.core.$strip>]>>;
|
|
8395
9215
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8396
9216
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8538,6 +9358,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8538
9358
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8539
9359
|
text: z.ZodString;
|
|
8540
9360
|
}, z.core.$strip>]>>>;
|
|
9361
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9362
|
+
ok: "ok";
|
|
9363
|
+
no: "no";
|
|
9364
|
+
warn: "warn";
|
|
9365
|
+
}>>;
|
|
8541
9366
|
}, z.core.$strip>]>>;
|
|
8542
9367
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8543
9368
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8671,6 +9496,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8671
9496
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8672
9497
|
text: z.ZodString;
|
|
8673
9498
|
}, z.core.$strip>]>>>;
|
|
9499
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9500
|
+
ok: "ok";
|
|
9501
|
+
no: "no";
|
|
9502
|
+
warn: "warn";
|
|
9503
|
+
}>>;
|
|
8674
9504
|
}, z.core.$strip>]>>;
|
|
8675
9505
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8676
9506
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8793,6 +9623,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8793
9623
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
8794
9624
|
footer: z.ZodOptional<z.ZodString>;
|
|
8795
9625
|
}, z.core.$strip>>;
|
|
9626
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
9627
|
+
label: z.ZodString;
|
|
9628
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
9629
|
+
primary: "primary";
|
|
9630
|
+
accent: "accent";
|
|
9631
|
+
success: "success";
|
|
9632
|
+
warning: "warning";
|
|
9633
|
+
danger: "danger";
|
|
9634
|
+
info: "info";
|
|
9635
|
+
highlight: "highlight";
|
|
9636
|
+
}>>;
|
|
9637
|
+
}, z.core.$strip>>;
|
|
8796
9638
|
layout: z.ZodLiteral<"split">;
|
|
8797
9639
|
}, z.core.$strip>, z.ZodObject<{
|
|
8798
9640
|
title: z.ZodString;
|
|
@@ -8840,6 +9682,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8840
9682
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8841
9683
|
text: z.ZodString;
|
|
8842
9684
|
}, z.core.$strip>]>>>;
|
|
9685
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9686
|
+
ok: "ok";
|
|
9687
|
+
no: "no";
|
|
9688
|
+
warn: "warn";
|
|
9689
|
+
}>>;
|
|
8843
9690
|
}, z.core.$strip>]>>;
|
|
8844
9691
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8845
9692
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -8973,6 +9820,11 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
8973
9820
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8974
9821
|
text: z.ZodString;
|
|
8975
9822
|
}, z.core.$strip>]>>>;
|
|
9823
|
+
icon: z.ZodOptional<z.ZodEnum<{
|
|
9824
|
+
ok: "ok";
|
|
9825
|
+
no: "no";
|
|
9826
|
+
warn: "warn";
|
|
9827
|
+
}>>;
|
|
8976
9828
|
}, z.core.$strip>]>>;
|
|
8977
9829
|
ordered: z.ZodOptional<z.ZodBoolean>;
|
|
8978
9830
|
icon: z.ZodOptional<z.ZodString>;
|
|
@@ -9097,6 +9949,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9097
9949
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
9098
9950
|
footer: z.ZodOptional<z.ZodString>;
|
|
9099
9951
|
}, z.core.$strip>>;
|
|
9952
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
9953
|
+
label: z.ZodString;
|
|
9954
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
9955
|
+
primary: "primary";
|
|
9956
|
+
accent: "accent";
|
|
9957
|
+
success: "success";
|
|
9958
|
+
warning: "warning";
|
|
9959
|
+
danger: "danger";
|
|
9960
|
+
info: "info";
|
|
9961
|
+
highlight: "highlight";
|
|
9962
|
+
}>>;
|
|
9963
|
+
}, z.core.$strip>>;
|
|
9100
9964
|
layout: z.ZodLiteral<"matrix">;
|
|
9101
9965
|
}, z.core.$strip>, z.ZodObject<{
|
|
9102
9966
|
title: z.ZodString;
|
|
@@ -9153,6 +10017,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9153
10017
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
9154
10018
|
footer: z.ZodOptional<z.ZodString>;
|
|
9155
10019
|
}, z.core.$strip>>;
|
|
10020
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
10021
|
+
label: z.ZodString;
|
|
10022
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10023
|
+
primary: "primary";
|
|
10024
|
+
accent: "accent";
|
|
10025
|
+
success: "success";
|
|
10026
|
+
warning: "warning";
|
|
10027
|
+
danger: "danger";
|
|
10028
|
+
info: "info";
|
|
10029
|
+
highlight: "highlight";
|
|
10030
|
+
}>>;
|
|
10031
|
+
}, z.core.$strip>>;
|
|
9156
10032
|
layout: z.ZodLiteral<"table">;
|
|
9157
10033
|
}, z.core.$strip>, z.ZodObject<{
|
|
9158
10034
|
title: z.ZodString;
|
|
@@ -9206,6 +10082,18 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9206
10082
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
9207
10083
|
footer: z.ZodOptional<z.ZodString>;
|
|
9208
10084
|
}, z.core.$strip>>;
|
|
10085
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
10086
|
+
label: z.ZodString;
|
|
10087
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10088
|
+
primary: "primary";
|
|
10089
|
+
accent: "accent";
|
|
10090
|
+
success: "success";
|
|
10091
|
+
warning: "warning";
|
|
10092
|
+
danger: "danger";
|
|
10093
|
+
info: "info";
|
|
10094
|
+
highlight: "highlight";
|
|
10095
|
+
}>>;
|
|
10096
|
+
}, z.core.$strip>>;
|
|
9209
10097
|
layout: z.ZodLiteral<"funnel">;
|
|
9210
10098
|
}, z.core.$strip>, z.ZodObject<{
|
|
9211
10099
|
title: z.ZodString;
|
|
@@ -9260,7 +10148,84 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
9260
10148
|
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
9261
10149
|
footer: z.ZodOptional<z.ZodString>;
|
|
9262
10150
|
}, z.core.$strip>>;
|
|
10151
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
10152
|
+
label: z.ZodString;
|
|
10153
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10154
|
+
primary: "primary";
|
|
10155
|
+
accent: "accent";
|
|
10156
|
+
success: "success";
|
|
10157
|
+
warning: "warning";
|
|
10158
|
+
danger: "danger";
|
|
10159
|
+
info: "info";
|
|
10160
|
+
highlight: "highlight";
|
|
10161
|
+
}>>;
|
|
10162
|
+
}, z.core.$strip>>;
|
|
9263
10163
|
layout: z.ZodLiteral<"waterfall">;
|
|
10164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10165
|
+
title: z.ZodString;
|
|
10166
|
+
stepLabel: z.ZodOptional<z.ZodString>;
|
|
10167
|
+
subtitle: z.ZodOptional<z.ZodString>;
|
|
10168
|
+
items: z.ZodArray<z.ZodObject<{
|
|
10169
|
+
title: z.ZodString;
|
|
10170
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10171
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
10172
|
+
primary: "primary";
|
|
10173
|
+
accent: "accent";
|
|
10174
|
+
success: "success";
|
|
10175
|
+
warning: "warning";
|
|
10176
|
+
danger: "danger";
|
|
10177
|
+
info: "info";
|
|
10178
|
+
highlight: "highlight";
|
|
10179
|
+
}>>;
|
|
10180
|
+
}, z.core.$strip>>;
|
|
10181
|
+
columns: z.ZodOptional<z.ZodNumber>;
|
|
10182
|
+
callout: z.ZodOptional<z.ZodObject<{
|
|
10183
|
+
text: z.ZodString;
|
|
10184
|
+
label: z.ZodOptional<z.ZodString>;
|
|
10185
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10186
|
+
primary: "primary";
|
|
10187
|
+
accent: "accent";
|
|
10188
|
+
success: "success";
|
|
10189
|
+
warning: "warning";
|
|
10190
|
+
danger: "danger";
|
|
10191
|
+
info: "info";
|
|
10192
|
+
highlight: "highlight";
|
|
10193
|
+
}>>;
|
|
10194
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
10195
|
+
left: "left";
|
|
10196
|
+
center: "center";
|
|
10197
|
+
}>>;
|
|
10198
|
+
leftBar: z.ZodOptional<z.ZodBoolean>;
|
|
10199
|
+
}, z.core.$strip>>;
|
|
10200
|
+
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
10201
|
+
primary: "primary";
|
|
10202
|
+
accent: "accent";
|
|
10203
|
+
success: "success";
|
|
10204
|
+
warning: "warning";
|
|
10205
|
+
danger: "danger";
|
|
10206
|
+
info: "info";
|
|
10207
|
+
highlight: "highlight";
|
|
10208
|
+
}>>;
|
|
10209
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
10210
|
+
bgColor: z.ZodOptional<z.ZodString>;
|
|
10211
|
+
bgGradient: z.ZodOptional<z.ZodString>;
|
|
10212
|
+
decorations: z.ZodOptional<z.ZodBoolean>;
|
|
10213
|
+
bgOpacity: z.ZodOptional<z.ZodNumber>;
|
|
10214
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
10215
|
+
}, z.core.$strip>>;
|
|
10216
|
+
eyebrow: z.ZodOptional<z.ZodObject<{
|
|
10217
|
+
label: z.ZodString;
|
|
10218
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
10219
|
+
primary: "primary";
|
|
10220
|
+
accent: "accent";
|
|
10221
|
+
success: "success";
|
|
10222
|
+
warning: "warning";
|
|
10223
|
+
danger: "danger";
|
|
10224
|
+
info: "info";
|
|
10225
|
+
highlight: "highlight";
|
|
10226
|
+
}>>;
|
|
10227
|
+
}, z.core.$strip>>;
|
|
10228
|
+
layout: z.ZodLiteral<"manifesto">;
|
|
9264
10229
|
}, z.core.$strip>], "layout">;
|
|
9265
10230
|
reference: z.ZodOptional<z.ZodString>;
|
|
9266
10231
|
branding: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -9348,6 +10313,9 @@ export type FunnelStage = z.infer<typeof funnelStageSchema>;
|
|
|
9348
10313
|
export type FunnelSlide = z.infer<typeof funnelSlideSchema>;
|
|
9349
10314
|
export type WaterfallItem = z.infer<typeof waterfallItemSchema>;
|
|
9350
10315
|
export type WaterfallSlide = z.infer<typeof waterfallSlideSchema>;
|
|
10316
|
+
export type ManifestoLine = z.infer<typeof manifestoLineSchema>;
|
|
10317
|
+
export type ManifestoSlide = z.infer<typeof manifestoSlideSchema>;
|
|
10318
|
+
export type BulletIcon = z.infer<typeof bulletIconSchema>;
|
|
9351
10319
|
export type SlideBrandingLogo = z.infer<typeof slideBrandingLogoSchema>;
|
|
9352
10320
|
export type SlideBranding = z.infer<typeof slideBrandingSchema>;
|
|
9353
10321
|
export type MulmoSlideMedia = z.infer<typeof mulmoSlideMediaSchema>;
|