@mulmocast/types 2.1.40 → 2.2.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/schema.d.ts +448 -0
- package/lib/schema.d.ts.map +1 -1
- package/lib/slide.d.ts +454 -0
- package/lib/slide.d.ts.map +1 -1
- package/lib/slide.js +19 -0
- package/lib/slide.js.map +1 -1
- package/lib/type.d.ts +1 -0
- package/lib/type.d.ts.map +1 -1
- package/package.json +1 -1
package/lib/slide.d.ts
CHANGED
|
@@ -138,6 +138,25 @@ export declare const imageBlockSchema: z.ZodObject<{
|
|
|
138
138
|
cover: "cover";
|
|
139
139
|
}>>;
|
|
140
140
|
}, z.core.$strip>;
|
|
141
|
+
export declare const imageRefBlockSchema: z.ZodObject<{
|
|
142
|
+
type: z.ZodLiteral<"imageRef">;
|
|
143
|
+
ref: z.ZodString;
|
|
144
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
145
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
146
|
+
contain: "contain";
|
|
147
|
+
cover: "cover";
|
|
148
|
+
}>>;
|
|
149
|
+
}, z.core.$strip>;
|
|
150
|
+
export declare const chartBlockSchema: z.ZodObject<{
|
|
151
|
+
type: z.ZodLiteral<"chart">;
|
|
152
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
153
|
+
title: z.ZodOptional<z.ZodString>;
|
|
154
|
+
}, z.core.$strip>;
|
|
155
|
+
export declare const mermaidBlockSchema: z.ZodObject<{
|
|
156
|
+
type: z.ZodLiteral<"mermaid">;
|
|
157
|
+
code: z.ZodString;
|
|
158
|
+
title: z.ZodOptional<z.ZodString>;
|
|
159
|
+
}, z.core.$strip>;
|
|
141
160
|
export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
142
161
|
type: z.ZodLiteral<"text">;
|
|
143
162
|
value: z.ZodString;
|
|
@@ -218,6 +237,22 @@ export declare const contentBlockSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
218
237
|
contain: "contain";
|
|
219
238
|
cover: "cover";
|
|
220
239
|
}>>;
|
|
240
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
241
|
+
type: z.ZodLiteral<"imageRef">;
|
|
242
|
+
ref: z.ZodString;
|
|
243
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
244
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
245
|
+
contain: "contain";
|
|
246
|
+
cover: "cover";
|
|
247
|
+
}>>;
|
|
248
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
249
|
+
type: z.ZodLiteral<"chart">;
|
|
250
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
251
|
+
title: z.ZodOptional<z.ZodString>;
|
|
252
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
253
|
+
type: z.ZodLiteral<"mermaid">;
|
|
254
|
+
code: z.ZodString;
|
|
255
|
+
title: z.ZodOptional<z.ZodString>;
|
|
221
256
|
}, z.core.$strip>], "type">;
|
|
222
257
|
/** Bottom-of-slide callout bar */
|
|
223
258
|
export declare const calloutBarSchema: z.ZodObject<{
|
|
@@ -330,6 +365,22 @@ export declare const cardSchema: z.ZodObject<{
|
|
|
330
365
|
contain: "contain";
|
|
331
366
|
cover: "cover";
|
|
332
367
|
}>>;
|
|
368
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
369
|
+
type: z.ZodLiteral<"imageRef">;
|
|
370
|
+
ref: z.ZodString;
|
|
371
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
372
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
373
|
+
contain: "contain";
|
|
374
|
+
cover: "cover";
|
|
375
|
+
}>>;
|
|
376
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
377
|
+
type: z.ZodLiteral<"chart">;
|
|
378
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
379
|
+
title: z.ZodOptional<z.ZodString>;
|
|
380
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
381
|
+
type: z.ZodLiteral<"mermaid">;
|
|
382
|
+
code: z.ZodString;
|
|
383
|
+
title: z.ZodOptional<z.ZodString>;
|
|
333
384
|
}, z.core.$strip>], "type">>>;
|
|
334
385
|
footer: z.ZodOptional<z.ZodString>;
|
|
335
386
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -459,6 +510,22 @@ export declare const columnsSlideSchema: z.ZodObject<{
|
|
|
459
510
|
contain: "contain";
|
|
460
511
|
cover: "cover";
|
|
461
512
|
}>>;
|
|
513
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
514
|
+
type: z.ZodLiteral<"imageRef">;
|
|
515
|
+
ref: z.ZodString;
|
|
516
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
517
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
518
|
+
contain: "contain";
|
|
519
|
+
cover: "cover";
|
|
520
|
+
}>>;
|
|
521
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
522
|
+
type: z.ZodLiteral<"chart">;
|
|
523
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
524
|
+
title: z.ZodOptional<z.ZodString>;
|
|
525
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
526
|
+
type: z.ZodLiteral<"mermaid">;
|
|
527
|
+
code: z.ZodString;
|
|
528
|
+
title: z.ZodOptional<z.ZodString>;
|
|
462
529
|
}, z.core.$strip>], "type">>>;
|
|
463
530
|
footer: z.ZodOptional<z.ZodString>;
|
|
464
531
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -593,6 +660,22 @@ export declare const comparisonPanelSchema: z.ZodObject<{
|
|
|
593
660
|
contain: "contain";
|
|
594
661
|
cover: "cover";
|
|
595
662
|
}>>;
|
|
663
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
664
|
+
type: z.ZodLiteral<"imageRef">;
|
|
665
|
+
ref: z.ZodString;
|
|
666
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
667
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
668
|
+
contain: "contain";
|
|
669
|
+
cover: "cover";
|
|
670
|
+
}>>;
|
|
671
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
672
|
+
type: z.ZodLiteral<"chart">;
|
|
673
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
674
|
+
title: z.ZodOptional<z.ZodString>;
|
|
675
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
676
|
+
type: z.ZodLiteral<"mermaid">;
|
|
677
|
+
code: z.ZodString;
|
|
678
|
+
title: z.ZodOptional<z.ZodString>;
|
|
596
679
|
}, z.core.$strip>], "type">>>;
|
|
597
680
|
footer: z.ZodOptional<z.ZodString>;
|
|
598
681
|
}, z.core.$strip>;
|
|
@@ -691,6 +774,22 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
691
774
|
contain: "contain";
|
|
692
775
|
cover: "cover";
|
|
693
776
|
}>>;
|
|
777
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
778
|
+
type: z.ZodLiteral<"imageRef">;
|
|
779
|
+
ref: z.ZodString;
|
|
780
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
781
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
782
|
+
contain: "contain";
|
|
783
|
+
cover: "cover";
|
|
784
|
+
}>>;
|
|
785
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
786
|
+
type: z.ZodLiteral<"chart">;
|
|
787
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
788
|
+
title: z.ZodOptional<z.ZodString>;
|
|
789
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
790
|
+
type: z.ZodLiteral<"mermaid">;
|
|
791
|
+
code: z.ZodString;
|
|
792
|
+
title: z.ZodOptional<z.ZodString>;
|
|
694
793
|
}, z.core.$strip>], "type">>>;
|
|
695
794
|
footer: z.ZodOptional<z.ZodString>;
|
|
696
795
|
}, z.core.$strip>;
|
|
@@ -785,6 +884,22 @@ export declare const comparisonSlideSchema: z.ZodObject<{
|
|
|
785
884
|
contain: "contain";
|
|
786
885
|
cover: "cover";
|
|
787
886
|
}>>;
|
|
887
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
888
|
+
type: z.ZodLiteral<"imageRef">;
|
|
889
|
+
ref: z.ZodString;
|
|
890
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
891
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
892
|
+
contain: "contain";
|
|
893
|
+
cover: "cover";
|
|
894
|
+
}>>;
|
|
895
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
896
|
+
type: z.ZodLiteral<"chart">;
|
|
897
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
898
|
+
title: z.ZodOptional<z.ZodString>;
|
|
899
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
900
|
+
type: z.ZodLiteral<"mermaid">;
|
|
901
|
+
code: z.ZodString;
|
|
902
|
+
title: z.ZodOptional<z.ZodString>;
|
|
788
903
|
}, z.core.$strip>], "type">>>;
|
|
789
904
|
footer: z.ZodOptional<z.ZodString>;
|
|
790
905
|
}, z.core.$strip>;
|
|
@@ -917,6 +1032,22 @@ export declare const gridItemSchema: z.ZodObject<{
|
|
|
917
1032
|
contain: "contain";
|
|
918
1033
|
cover: "cover";
|
|
919
1034
|
}>>;
|
|
1035
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1036
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1037
|
+
ref: z.ZodString;
|
|
1038
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1039
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1040
|
+
contain: "contain";
|
|
1041
|
+
cover: "cover";
|
|
1042
|
+
}>>;
|
|
1043
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1044
|
+
type: z.ZodLiteral<"chart">;
|
|
1045
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1046
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1048
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1049
|
+
code: z.ZodString;
|
|
1050
|
+
title: z.ZodOptional<z.ZodString>;
|
|
920
1051
|
}, z.core.$strip>], "type">>>;
|
|
921
1052
|
}, z.core.$strip>;
|
|
922
1053
|
export declare const gridSlideSchema: z.ZodObject<{
|
|
@@ -1017,6 +1148,22 @@ export declare const gridSlideSchema: z.ZodObject<{
|
|
|
1017
1148
|
contain: "contain";
|
|
1018
1149
|
cover: "cover";
|
|
1019
1150
|
}>>;
|
|
1151
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1152
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1153
|
+
ref: z.ZodString;
|
|
1154
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1156
|
+
contain: "contain";
|
|
1157
|
+
cover: "cover";
|
|
1158
|
+
}>>;
|
|
1159
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1160
|
+
type: z.ZodLiteral<"chart">;
|
|
1161
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1162
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1163
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1164
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1165
|
+
code: z.ZodString;
|
|
1166
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1020
1167
|
}, z.core.$strip>], "type">>>;
|
|
1021
1168
|
}, z.core.$strip>>;
|
|
1022
1169
|
footer: z.ZodOptional<z.ZodString>;
|
|
@@ -1269,6 +1416,22 @@ export declare const splitPanelSchema: z.ZodObject<{
|
|
|
1269
1416
|
contain: "contain";
|
|
1270
1417
|
cover: "cover";
|
|
1271
1418
|
}>>;
|
|
1419
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1420
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1421
|
+
ref: z.ZodString;
|
|
1422
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1423
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1424
|
+
contain: "contain";
|
|
1425
|
+
cover: "cover";
|
|
1426
|
+
}>>;
|
|
1427
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1428
|
+
type: z.ZodLiteral<"chart">;
|
|
1429
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1430
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1431
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1432
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1433
|
+
code: z.ZodString;
|
|
1434
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1272
1435
|
}, z.core.$strip>], "type">>>;
|
|
1273
1436
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
1274
1437
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1367,6 +1530,22 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
1367
1530
|
contain: "contain";
|
|
1368
1531
|
cover: "cover";
|
|
1369
1532
|
}>>;
|
|
1533
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1534
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1535
|
+
ref: z.ZodString;
|
|
1536
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1537
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1538
|
+
contain: "contain";
|
|
1539
|
+
cover: "cover";
|
|
1540
|
+
}>>;
|
|
1541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1542
|
+
type: z.ZodLiteral<"chart">;
|
|
1543
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1544
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1545
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1546
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1547
|
+
code: z.ZodString;
|
|
1548
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1370
1549
|
}, z.core.$strip>], "type">>>;
|
|
1371
1550
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
1372
1551
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1464,6 +1643,22 @@ export declare const splitSlideSchema: z.ZodObject<{
|
|
|
1464
1643
|
contain: "contain";
|
|
1465
1644
|
cover: "cover";
|
|
1466
1645
|
}>>;
|
|
1646
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1647
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1648
|
+
ref: z.ZodString;
|
|
1649
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1650
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1651
|
+
contain: "contain";
|
|
1652
|
+
cover: "cover";
|
|
1653
|
+
}>>;
|
|
1654
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1655
|
+
type: z.ZodLiteral<"chart">;
|
|
1656
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1657
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1658
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1659
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1660
|
+
code: z.ZodString;
|
|
1661
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1467
1662
|
}, z.core.$strip>], "type">>>;
|
|
1468
1663
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
1469
1664
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1568,6 +1763,22 @@ export declare const matrixCellSchema: z.ZodObject<{
|
|
|
1568
1763
|
contain: "contain";
|
|
1569
1764
|
cover: "cover";
|
|
1570
1765
|
}>>;
|
|
1766
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1767
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1768
|
+
ref: z.ZodString;
|
|
1769
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1770
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1771
|
+
contain: "contain";
|
|
1772
|
+
cover: "cover";
|
|
1773
|
+
}>>;
|
|
1774
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1775
|
+
type: z.ZodLiteral<"chart">;
|
|
1776
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1777
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1778
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1779
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1780
|
+
code: z.ZodString;
|
|
1781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1571
1782
|
}, z.core.$strip>], "type">>>;
|
|
1572
1783
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
1573
1784
|
success: "success";
|
|
@@ -1678,6 +1889,22 @@ export declare const matrixSlideSchema: z.ZodObject<{
|
|
|
1678
1889
|
contain: "contain";
|
|
1679
1890
|
cover: "cover";
|
|
1680
1891
|
}>>;
|
|
1892
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1893
|
+
type: z.ZodLiteral<"imageRef">;
|
|
1894
|
+
ref: z.ZodString;
|
|
1895
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1896
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
1897
|
+
contain: "contain";
|
|
1898
|
+
cover: "cover";
|
|
1899
|
+
}>>;
|
|
1900
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1901
|
+
type: z.ZodLiteral<"chart">;
|
|
1902
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1903
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1904
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1905
|
+
type: z.ZodLiteral<"mermaid">;
|
|
1906
|
+
code: z.ZodString;
|
|
1907
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1681
1908
|
}, z.core.$strip>], "type">>>;
|
|
1682
1909
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
1683
1910
|
success: "success";
|
|
@@ -1957,6 +2184,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1957
2184
|
contain: "contain";
|
|
1958
2185
|
cover: "cover";
|
|
1959
2186
|
}>>;
|
|
2187
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2188
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2189
|
+
ref: z.ZodString;
|
|
2190
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2191
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2192
|
+
contain: "contain";
|
|
2193
|
+
cover: "cover";
|
|
2194
|
+
}>>;
|
|
2195
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2196
|
+
type: z.ZodLiteral<"chart">;
|
|
2197
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2198
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2199
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2200
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2201
|
+
code: z.ZodString;
|
|
2202
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1960
2203
|
}, z.core.$strip>], "type">>>;
|
|
1961
2204
|
footer: z.ZodOptional<z.ZodString>;
|
|
1962
2205
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2094,6 +2337,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2094
2337
|
contain: "contain";
|
|
2095
2338
|
cover: "cover";
|
|
2096
2339
|
}>>;
|
|
2340
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2341
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2342
|
+
ref: z.ZodString;
|
|
2343
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2344
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2345
|
+
contain: "contain";
|
|
2346
|
+
cover: "cover";
|
|
2347
|
+
}>>;
|
|
2348
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2349
|
+
type: z.ZodLiteral<"chart">;
|
|
2350
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2351
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2352
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2353
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2354
|
+
code: z.ZodString;
|
|
2355
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2097
2356
|
}, z.core.$strip>], "type">>>;
|
|
2098
2357
|
footer: z.ZodOptional<z.ZodString>;
|
|
2099
2358
|
}, z.core.$strip>;
|
|
@@ -2188,6 +2447,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2188
2447
|
contain: "contain";
|
|
2189
2448
|
cover: "cover";
|
|
2190
2449
|
}>>;
|
|
2450
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2451
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2452
|
+
ref: z.ZodString;
|
|
2453
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2454
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2455
|
+
contain: "contain";
|
|
2456
|
+
cover: "cover";
|
|
2457
|
+
}>>;
|
|
2458
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2459
|
+
type: z.ZodLiteral<"chart">;
|
|
2460
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2461
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2462
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2463
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2464
|
+
code: z.ZodString;
|
|
2465
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2191
2466
|
}, z.core.$strip>], "type">>>;
|
|
2192
2467
|
footer: z.ZodOptional<z.ZodString>;
|
|
2193
2468
|
}, z.core.$strip>;
|
|
@@ -2323,6 +2598,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2323
2598
|
contain: "contain";
|
|
2324
2599
|
cover: "cover";
|
|
2325
2600
|
}>>;
|
|
2601
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2602
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2603
|
+
ref: z.ZodString;
|
|
2604
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2605
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2606
|
+
contain: "contain";
|
|
2607
|
+
cover: "cover";
|
|
2608
|
+
}>>;
|
|
2609
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2610
|
+
type: z.ZodLiteral<"chart">;
|
|
2611
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2612
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2613
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2614
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2615
|
+
code: z.ZodString;
|
|
2616
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2326
2617
|
}, z.core.$strip>], "type">>>;
|
|
2327
2618
|
}, z.core.$strip>>;
|
|
2328
2619
|
footer: z.ZodOptional<z.ZodString>;
|
|
@@ -2543,6 +2834,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2543
2834
|
contain: "contain";
|
|
2544
2835
|
cover: "cover";
|
|
2545
2836
|
}>>;
|
|
2837
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2838
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2839
|
+
ref: z.ZodString;
|
|
2840
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2841
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2842
|
+
contain: "contain";
|
|
2843
|
+
cover: "cover";
|
|
2844
|
+
}>>;
|
|
2845
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2846
|
+
type: z.ZodLiteral<"chart">;
|
|
2847
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2848
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2849
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2850
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2851
|
+
code: z.ZodString;
|
|
2852
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2546
2853
|
}, z.core.$strip>], "type">>>;
|
|
2547
2854
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
2548
2855
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2640,6 +2947,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2640
2947
|
contain: "contain";
|
|
2641
2948
|
cover: "cover";
|
|
2642
2949
|
}>>;
|
|
2950
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2951
|
+
type: z.ZodLiteral<"imageRef">;
|
|
2952
|
+
ref: z.ZodString;
|
|
2953
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
2954
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
2955
|
+
contain: "contain";
|
|
2956
|
+
cover: "cover";
|
|
2957
|
+
}>>;
|
|
2958
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2959
|
+
type: z.ZodLiteral<"chart">;
|
|
2960
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2961
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2962
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2963
|
+
type: z.ZodLiteral<"mermaid">;
|
|
2964
|
+
code: z.ZodString;
|
|
2965
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2643
2966
|
}, z.core.$strip>], "type">>>;
|
|
2644
2967
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
2645
2968
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2759,6 +3082,22 @@ export declare const slideLayoutSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2759
3082
|
contain: "contain";
|
|
2760
3083
|
cover: "cover";
|
|
2761
3084
|
}>>;
|
|
3085
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3086
|
+
type: z.ZodLiteral<"imageRef">;
|
|
3087
|
+
ref: z.ZodString;
|
|
3088
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
3089
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
3090
|
+
contain: "contain";
|
|
3091
|
+
cover: "cover";
|
|
3092
|
+
}>>;
|
|
3093
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3094
|
+
type: z.ZodLiteral<"chart">;
|
|
3095
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3096
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3097
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3098
|
+
type: z.ZodLiteral<"mermaid">;
|
|
3099
|
+
code: z.ZodString;
|
|
3100
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2762
3101
|
}, z.core.$strip>], "type">>>;
|
|
2763
3102
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
2764
3103
|
success: "success";
|
|
@@ -3034,6 +3373,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3034
3373
|
contain: "contain";
|
|
3035
3374
|
cover: "cover";
|
|
3036
3375
|
}>>;
|
|
3376
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3377
|
+
type: z.ZodLiteral<"imageRef">;
|
|
3378
|
+
ref: z.ZodString;
|
|
3379
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
3380
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
3381
|
+
contain: "contain";
|
|
3382
|
+
cover: "cover";
|
|
3383
|
+
}>>;
|
|
3384
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3385
|
+
type: z.ZodLiteral<"chart">;
|
|
3386
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3387
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3388
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3389
|
+
type: z.ZodLiteral<"mermaid">;
|
|
3390
|
+
code: z.ZodString;
|
|
3391
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3037
3392
|
}, z.core.$strip>], "type">>>;
|
|
3038
3393
|
footer: z.ZodOptional<z.ZodString>;
|
|
3039
3394
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -3171,6 +3526,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3171
3526
|
contain: "contain";
|
|
3172
3527
|
cover: "cover";
|
|
3173
3528
|
}>>;
|
|
3529
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3530
|
+
type: z.ZodLiteral<"imageRef">;
|
|
3531
|
+
ref: z.ZodString;
|
|
3532
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
3533
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
3534
|
+
contain: "contain";
|
|
3535
|
+
cover: "cover";
|
|
3536
|
+
}>>;
|
|
3537
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3538
|
+
type: z.ZodLiteral<"chart">;
|
|
3539
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3540
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3542
|
+
type: z.ZodLiteral<"mermaid">;
|
|
3543
|
+
code: z.ZodString;
|
|
3544
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3174
3545
|
}, z.core.$strip>], "type">>>;
|
|
3175
3546
|
footer: z.ZodOptional<z.ZodString>;
|
|
3176
3547
|
}, z.core.$strip>;
|
|
@@ -3265,6 +3636,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3265
3636
|
contain: "contain";
|
|
3266
3637
|
cover: "cover";
|
|
3267
3638
|
}>>;
|
|
3639
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3640
|
+
type: z.ZodLiteral<"imageRef">;
|
|
3641
|
+
ref: z.ZodString;
|
|
3642
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
3643
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
3644
|
+
contain: "contain";
|
|
3645
|
+
cover: "cover";
|
|
3646
|
+
}>>;
|
|
3647
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3648
|
+
type: z.ZodLiteral<"chart">;
|
|
3649
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3650
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3651
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3652
|
+
type: z.ZodLiteral<"mermaid">;
|
|
3653
|
+
code: z.ZodString;
|
|
3654
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3268
3655
|
}, z.core.$strip>], "type">>>;
|
|
3269
3656
|
footer: z.ZodOptional<z.ZodString>;
|
|
3270
3657
|
}, z.core.$strip>;
|
|
@@ -3400,6 +3787,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3400
3787
|
contain: "contain";
|
|
3401
3788
|
cover: "cover";
|
|
3402
3789
|
}>>;
|
|
3790
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3791
|
+
type: z.ZodLiteral<"imageRef">;
|
|
3792
|
+
ref: z.ZodString;
|
|
3793
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
3794
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
3795
|
+
contain: "contain";
|
|
3796
|
+
cover: "cover";
|
|
3797
|
+
}>>;
|
|
3798
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3799
|
+
type: z.ZodLiteral<"chart">;
|
|
3800
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3801
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3802
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3803
|
+
type: z.ZodLiteral<"mermaid">;
|
|
3804
|
+
code: z.ZodString;
|
|
3805
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3403
3806
|
}, z.core.$strip>], "type">>>;
|
|
3404
3807
|
}, z.core.$strip>>;
|
|
3405
3808
|
footer: z.ZodOptional<z.ZodString>;
|
|
@@ -3620,6 +4023,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3620
4023
|
contain: "contain";
|
|
3621
4024
|
cover: "cover";
|
|
3622
4025
|
}>>;
|
|
4026
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4027
|
+
type: z.ZodLiteral<"imageRef">;
|
|
4028
|
+
ref: z.ZodString;
|
|
4029
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
4030
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
4031
|
+
contain: "contain";
|
|
4032
|
+
cover: "cover";
|
|
4033
|
+
}>>;
|
|
4034
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4035
|
+
type: z.ZodLiteral<"chart">;
|
|
4036
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4037
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4038
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4039
|
+
type: z.ZodLiteral<"mermaid">;
|
|
4040
|
+
code: z.ZodString;
|
|
4041
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3623
4042
|
}, z.core.$strip>], "type">>>;
|
|
3624
4043
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
3625
4044
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3717,6 +4136,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3717
4136
|
contain: "contain";
|
|
3718
4137
|
cover: "cover";
|
|
3719
4138
|
}>>;
|
|
4139
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4140
|
+
type: z.ZodLiteral<"imageRef">;
|
|
4141
|
+
ref: z.ZodString;
|
|
4142
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
4143
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
4144
|
+
contain: "contain";
|
|
4145
|
+
cover: "cover";
|
|
4146
|
+
}>>;
|
|
4147
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4148
|
+
type: z.ZodLiteral<"chart">;
|
|
4149
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4150
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4151
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4152
|
+
type: z.ZodLiteral<"mermaid">;
|
|
4153
|
+
code: z.ZodString;
|
|
4154
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3720
4155
|
}, z.core.$strip>], "type">>>;
|
|
3721
4156
|
dark: z.ZodOptional<z.ZodBoolean>;
|
|
3722
4157
|
ratio: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3836,6 +4271,22 @@ export declare const mulmoSlideMediaSchema: z.ZodObject<{
|
|
|
3836
4271
|
contain: "contain";
|
|
3837
4272
|
cover: "cover";
|
|
3838
4273
|
}>>;
|
|
4274
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4275
|
+
type: z.ZodLiteral<"imageRef">;
|
|
4276
|
+
ref: z.ZodString;
|
|
4277
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
4278
|
+
fit: z.ZodOptional<z.ZodEnum<{
|
|
4279
|
+
contain: "contain";
|
|
4280
|
+
cover: "cover";
|
|
4281
|
+
}>>;
|
|
4282
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4283
|
+
type: z.ZodLiteral<"chart">;
|
|
4284
|
+
chartData: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4285
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4286
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4287
|
+
type: z.ZodLiteral<"mermaid">;
|
|
4288
|
+
code: z.ZodString;
|
|
4289
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3839
4290
|
}, z.core.$strip>], "type">>>;
|
|
3840
4291
|
accentColor: z.ZodOptional<z.ZodEnum<{
|
|
3841
4292
|
success: "success";
|
|
@@ -3983,6 +4434,9 @@ export type CalloutBlock = z.infer<typeof calloutBlockSchema>;
|
|
|
3983
4434
|
export type MetricBlock = z.infer<typeof metricBlockSchema>;
|
|
3984
4435
|
export type DividerBlock = z.infer<typeof dividerBlockSchema>;
|
|
3985
4436
|
export type ImageBlock = z.infer<typeof imageBlockSchema>;
|
|
4437
|
+
export type ImageRefBlock = z.infer<typeof imageRefBlockSchema>;
|
|
4438
|
+
export type ChartBlock = z.infer<typeof chartBlockSchema>;
|
|
4439
|
+
export type MermaidBlock = z.infer<typeof mermaidBlockSchema>;
|
|
3986
4440
|
export type CalloutBar = z.infer<typeof calloutBarSchema>;
|
|
3987
4441
|
export type Card = z.infer<typeof cardSchema>;
|
|
3988
4442
|
export type SlideStyle = z.infer<typeof slideStyleSchema>;
|