@rudyzeinoun/email-builder 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +142 -112
- package/dist/index.d.ts +142 -112
- package/dist/index.js +6 -4
- package/dist/index.mjs +6 -4
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
40
40
|
} | null | undefined;
|
|
41
41
|
}>>>;
|
|
42
42
|
className: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
|
+
responsiveDisplay: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
44
|
+
conditionStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
45
|
loopStart: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
44
46
|
loopEnd: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
45
47
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -77,7 +79,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
77
79
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
78
80
|
columnsCount?: 2 | 3 | null | undefined;
|
|
79
81
|
columnsGap?: number | null | undefined;
|
|
80
|
-
contentAlignment?: "top" | "
|
|
82
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
81
83
|
}, {
|
|
82
84
|
columns: [{
|
|
83
85
|
childrenIds: string[];
|
|
@@ -89,7 +91,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
89
91
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
90
92
|
columnsCount?: 2 | 3 | null | undefined;
|
|
91
93
|
columnsGap?: number | null | undefined;
|
|
92
|
-
contentAlignment?: "top" | "
|
|
94
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
93
95
|
}>>>;
|
|
94
96
|
}, "strip", z.ZodTypeAny, {
|
|
95
97
|
style?: {
|
|
@@ -102,6 +104,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
102
104
|
} | null | undefined;
|
|
103
105
|
} | null | undefined;
|
|
104
106
|
className?: string | null | undefined;
|
|
107
|
+
responsiveDisplay?: string | null | undefined;
|
|
108
|
+
conditionStatement?: string | null | undefined;
|
|
105
109
|
loopStart?: number | null | undefined;
|
|
106
110
|
loopEnd?: number | null | undefined;
|
|
107
111
|
props?: {
|
|
@@ -115,7 +119,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
115
119
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
116
120
|
columnsCount?: 2 | 3 | null | undefined;
|
|
117
121
|
columnsGap?: number | null | undefined;
|
|
118
|
-
contentAlignment?: "top" | "
|
|
122
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
119
123
|
} | null | undefined;
|
|
120
124
|
}, {
|
|
121
125
|
style?: {
|
|
@@ -128,6 +132,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
128
132
|
} | null | undefined;
|
|
129
133
|
} | null | undefined;
|
|
130
134
|
className?: string | null | undefined;
|
|
135
|
+
responsiveDisplay?: string | null | undefined;
|
|
136
|
+
conditionStatement?: string | null | undefined;
|
|
131
137
|
loopStart?: number | null | undefined;
|
|
132
138
|
loopEnd?: number | null | undefined;
|
|
133
139
|
props?: {
|
|
@@ -141,7 +147,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
141
147
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
142
148
|
columnsCount?: 2 | 3 | null | undefined;
|
|
143
149
|
columnsGap?: number | null | undefined;
|
|
144
|
-
contentAlignment?: "top" | "
|
|
150
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
145
151
|
} | null | undefined;
|
|
146
152
|
}>;
|
|
147
153
|
Container: z.ZodObject<{
|
|
@@ -187,6 +193,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
187
193
|
} | null | undefined;
|
|
188
194
|
}>>>;
|
|
189
195
|
className: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
196
|
+
responsiveDisplay: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
197
|
+
conditionStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
190
198
|
loopStart: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
191
199
|
loopEnd: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
192
200
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -209,6 +217,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
209
217
|
} | null | undefined;
|
|
210
218
|
} | null | undefined;
|
|
211
219
|
className?: string | null | undefined;
|
|
220
|
+
responsiveDisplay?: string | null | undefined;
|
|
221
|
+
conditionStatement?: string | null | undefined;
|
|
212
222
|
loopStart?: number | null | undefined;
|
|
213
223
|
loopEnd?: number | null | undefined;
|
|
214
224
|
props?: {
|
|
@@ -227,6 +237,8 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
227
237
|
} | null | undefined;
|
|
228
238
|
} | null | undefined;
|
|
229
239
|
className?: string | null | undefined;
|
|
240
|
+
responsiveDisplay?: string | null | undefined;
|
|
241
|
+
conditionStatement?: string | null | undefined;
|
|
230
242
|
loopStart?: number | null | undefined;
|
|
231
243
|
loopEnd?: number | null | undefined;
|
|
232
244
|
props?: {
|
|
@@ -241,6 +253,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
241
253
|
textColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
242
254
|
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
243
255
|
childrenIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
256
|
+
previewText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
244
257
|
}, "strip", z.ZodTypeAny, {
|
|
245
258
|
backdropColor?: string | null | undefined;
|
|
246
259
|
borderColor?: string | null | undefined;
|
|
@@ -249,6 +262,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
249
262
|
textColor?: string | null | undefined;
|
|
250
263
|
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
251
264
|
childrenIds?: string[] | null | undefined;
|
|
265
|
+
previewText?: string | null | undefined;
|
|
252
266
|
}, {
|
|
253
267
|
backdropColor?: string | null | undefined;
|
|
254
268
|
borderColor?: string | null | undefined;
|
|
@@ -257,6 +271,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
257
271
|
textColor?: string | null | undefined;
|
|
258
272
|
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
259
273
|
childrenIds?: string[] | null | undefined;
|
|
274
|
+
previewText?: string | null | undefined;
|
|
260
275
|
}>;
|
|
261
276
|
Avatar: z.ZodObject<{
|
|
262
277
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -278,7 +293,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
278
293
|
left: number;
|
|
279
294
|
}>>>;
|
|
280
295
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
-
textAlign?: "
|
|
296
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
282
297
|
padding?: {
|
|
283
298
|
top: number;
|
|
284
299
|
bottom: number;
|
|
@@ -286,7 +301,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
286
301
|
left: number;
|
|
287
302
|
} | null | undefined;
|
|
288
303
|
}, {
|
|
289
|
-
textAlign?: "
|
|
304
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
290
305
|
padding?: {
|
|
291
306
|
top: number;
|
|
292
307
|
bottom: number;
|
|
@@ -312,7 +327,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
312
327
|
}>>>;
|
|
313
328
|
}, "strip", z.ZodTypeAny, {
|
|
314
329
|
style?: {
|
|
315
|
-
textAlign?: "
|
|
330
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
316
331
|
padding?: {
|
|
317
332
|
top: number;
|
|
318
333
|
bottom: number;
|
|
@@ -328,7 +343,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
328
343
|
} | null | undefined;
|
|
329
344
|
}, {
|
|
330
345
|
style?: {
|
|
331
|
-
textAlign?: "
|
|
346
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
332
347
|
padding?: {
|
|
333
348
|
top: number;
|
|
334
349
|
bottom: number;
|
|
@@ -347,7 +362,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
347
362
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
348
363
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
349
364
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
350
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
365
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
351
366
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
352
367
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
353
368
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -369,9 +384,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
369
384
|
}, "strip", z.ZodTypeAny, {
|
|
370
385
|
backgroundColor?: string | null | undefined;
|
|
371
386
|
fontSize?: number | null | undefined;
|
|
372
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
387
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
373
388
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
374
|
-
textAlign?: "
|
|
389
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
375
390
|
padding?: {
|
|
376
391
|
top: number;
|
|
377
392
|
bottom: number;
|
|
@@ -381,9 +396,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
381
396
|
}, {
|
|
382
397
|
backgroundColor?: string | null | undefined;
|
|
383
398
|
fontSize?: number | null | undefined;
|
|
384
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
399
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
385
400
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
386
|
-
textAlign?: "
|
|
401
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
387
402
|
padding?: {
|
|
388
403
|
top: number;
|
|
389
404
|
bottom: number;
|
|
@@ -404,7 +419,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
404
419
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
405
420
|
buttonTextColor?: string | null | undefined;
|
|
406
421
|
fullWidth?: boolean | null | undefined;
|
|
407
|
-
size?: "small" | "
|
|
422
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
408
423
|
text?: string | null | undefined;
|
|
409
424
|
url?: string | null | undefined;
|
|
410
425
|
}, {
|
|
@@ -412,7 +427,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
412
427
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
413
428
|
buttonTextColor?: string | null | undefined;
|
|
414
429
|
fullWidth?: boolean | null | undefined;
|
|
415
|
-
size?: "small" | "
|
|
430
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
416
431
|
text?: string | null | undefined;
|
|
417
432
|
url?: string | null | undefined;
|
|
418
433
|
}>>>;
|
|
@@ -420,9 +435,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
420
435
|
style?: {
|
|
421
436
|
backgroundColor?: string | null | undefined;
|
|
422
437
|
fontSize?: number | null | undefined;
|
|
423
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
438
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
424
439
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
425
|
-
textAlign?: "
|
|
440
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
426
441
|
padding?: {
|
|
427
442
|
top: number;
|
|
428
443
|
bottom: number;
|
|
@@ -435,7 +450,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
435
450
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
436
451
|
buttonTextColor?: string | null | undefined;
|
|
437
452
|
fullWidth?: boolean | null | undefined;
|
|
438
|
-
size?: "small" | "
|
|
453
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
439
454
|
text?: string | null | undefined;
|
|
440
455
|
url?: string | null | undefined;
|
|
441
456
|
} | null | undefined;
|
|
@@ -443,9 +458,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
443
458
|
style?: {
|
|
444
459
|
backgroundColor?: string | null | undefined;
|
|
445
460
|
fontSize?: number | null | undefined;
|
|
446
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
461
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
447
462
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
448
|
-
textAlign?: "
|
|
463
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
449
464
|
padding?: {
|
|
450
465
|
top: number;
|
|
451
466
|
bottom: number;
|
|
@@ -458,7 +473,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
458
473
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
459
474
|
buttonTextColor?: string | null | undefined;
|
|
460
475
|
fullWidth?: boolean | null | undefined;
|
|
461
|
-
size?: "small" | "
|
|
476
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
462
477
|
text?: string | null | undefined;
|
|
463
478
|
url?: string | null | undefined;
|
|
464
479
|
} | null | undefined;
|
|
@@ -552,7 +567,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
552
567
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
553
568
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
554
569
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
555
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
570
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
556
571
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
557
572
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
558
573
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -574,9 +589,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
574
589
|
}, "strip", z.ZodTypeAny, {
|
|
575
590
|
color?: string | null | undefined;
|
|
576
591
|
backgroundColor?: string | null | undefined;
|
|
577
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
592
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
578
593
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
579
|
-
textAlign?: "
|
|
594
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
580
595
|
padding?: {
|
|
581
596
|
top: number;
|
|
582
597
|
bottom: number;
|
|
@@ -586,9 +601,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
586
601
|
}, {
|
|
587
602
|
color?: string | null | undefined;
|
|
588
603
|
backgroundColor?: string | null | undefined;
|
|
589
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
604
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
590
605
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
591
|
-
textAlign?: "
|
|
606
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
592
607
|
padding?: {
|
|
593
608
|
top: number;
|
|
594
609
|
bottom: number;
|
|
@@ -604,9 +619,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
604
619
|
style?: {
|
|
605
620
|
color?: string | null | undefined;
|
|
606
621
|
backgroundColor?: string | null | undefined;
|
|
607
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
622
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
608
623
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
609
|
-
textAlign?: "
|
|
624
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
610
625
|
padding?: {
|
|
611
626
|
top: number;
|
|
612
627
|
bottom: number;
|
|
@@ -622,9 +637,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
622
637
|
style?: {
|
|
623
638
|
color?: string | null | undefined;
|
|
624
639
|
backgroundColor?: string | null | undefined;
|
|
625
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
640
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
626
641
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
627
|
-
textAlign?: "
|
|
642
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
628
643
|
padding?: {
|
|
629
644
|
top: number;
|
|
630
645
|
bottom: number;
|
|
@@ -637,7 +652,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
637
652
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
638
653
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
639
654
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
640
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
655
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
641
656
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
642
657
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "right", "center"]>>>;
|
|
643
658
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -659,9 +674,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
659
674
|
}, "strip", z.ZodTypeAny, {
|
|
660
675
|
color?: string | null | undefined;
|
|
661
676
|
backgroundColor?: string | null | undefined;
|
|
662
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
677
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
663
678
|
fontSize?: number | null | undefined;
|
|
664
|
-
textAlign?: "
|
|
679
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
665
680
|
padding?: {
|
|
666
681
|
top: number;
|
|
667
682
|
bottom: number;
|
|
@@ -671,9 +686,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
671
686
|
}, {
|
|
672
687
|
color?: string | null | undefined;
|
|
673
688
|
backgroundColor?: string | null | undefined;
|
|
674
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
689
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
675
690
|
fontSize?: number | null | undefined;
|
|
676
|
-
textAlign?: "
|
|
691
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
677
692
|
padding?: {
|
|
678
693
|
top: number;
|
|
679
694
|
bottom: number;
|
|
@@ -692,9 +707,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
692
707
|
style?: {
|
|
693
708
|
color?: string | null | undefined;
|
|
694
709
|
backgroundColor?: string | null | undefined;
|
|
695
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
710
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
696
711
|
fontSize?: number | null | undefined;
|
|
697
|
-
textAlign?: "
|
|
712
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
698
713
|
padding?: {
|
|
699
714
|
top: number;
|
|
700
715
|
bottom: number;
|
|
@@ -709,9 +724,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
709
724
|
style?: {
|
|
710
725
|
color?: string | null | undefined;
|
|
711
726
|
backgroundColor?: string | null | undefined;
|
|
712
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
727
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
713
728
|
fontSize?: number | null | undefined;
|
|
714
|
-
textAlign?: "
|
|
729
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
715
730
|
padding?: {
|
|
716
731
|
top: number;
|
|
717
732
|
bottom: number;
|
|
@@ -751,7 +766,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
751
766
|
left: number;
|
|
752
767
|
} | null | undefined;
|
|
753
768
|
backgroundColor?: string | null | undefined;
|
|
754
|
-
textAlign?: "
|
|
769
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
755
770
|
}, {
|
|
756
771
|
padding?: {
|
|
757
772
|
top: number;
|
|
@@ -760,7 +775,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
760
775
|
left: number;
|
|
761
776
|
} | null | undefined;
|
|
762
777
|
backgroundColor?: string | null | undefined;
|
|
763
|
-
textAlign?: "
|
|
778
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
764
779
|
}>>>;
|
|
765
780
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
766
781
|
width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -775,14 +790,14 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
775
790
|
url?: string | null | undefined;
|
|
776
791
|
alt?: string | null | undefined;
|
|
777
792
|
linkHref?: string | null | undefined;
|
|
778
|
-
contentAlignment?: "top" | "
|
|
793
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
779
794
|
}, {
|
|
780
795
|
width?: number | null | undefined;
|
|
781
796
|
height?: number | null | undefined;
|
|
782
797
|
url?: string | null | undefined;
|
|
783
798
|
alt?: string | null | undefined;
|
|
784
799
|
linkHref?: string | null | undefined;
|
|
785
|
-
contentAlignment?: "top" | "
|
|
800
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
786
801
|
}>>>;
|
|
787
802
|
}, "strip", z.ZodTypeAny, {
|
|
788
803
|
style?: {
|
|
@@ -793,7 +808,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
793
808
|
left: number;
|
|
794
809
|
} | null | undefined;
|
|
795
810
|
backgroundColor?: string | null | undefined;
|
|
796
|
-
textAlign?: "
|
|
811
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
797
812
|
} | null | undefined;
|
|
798
813
|
props?: {
|
|
799
814
|
width?: number | null | undefined;
|
|
@@ -801,7 +816,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
801
816
|
url?: string | null | undefined;
|
|
802
817
|
alt?: string | null | undefined;
|
|
803
818
|
linkHref?: string | null | undefined;
|
|
804
|
-
contentAlignment?: "top" | "
|
|
819
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
805
820
|
} | null | undefined;
|
|
806
821
|
}, {
|
|
807
822
|
style?: {
|
|
@@ -812,7 +827,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
812
827
|
left: number;
|
|
813
828
|
} | null | undefined;
|
|
814
829
|
backgroundColor?: string | null | undefined;
|
|
815
|
-
textAlign?: "
|
|
830
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
816
831
|
} | null | undefined;
|
|
817
832
|
props?: {
|
|
818
833
|
width?: number | null | undefined;
|
|
@@ -820,7 +835,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
820
835
|
url?: string | null | undefined;
|
|
821
836
|
alt?: string | null | undefined;
|
|
822
837
|
linkHref?: string | null | undefined;
|
|
823
|
-
contentAlignment?: "top" | "
|
|
838
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
824
839
|
} | null | undefined;
|
|
825
840
|
}>;
|
|
826
841
|
Spacer: z.ZodObject<{
|
|
@@ -845,7 +860,7 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
845
860
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
846
861
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
847
862
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
848
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
863
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
849
864
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
850
865
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
851
866
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -868,9 +883,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
868
883
|
color?: string | null | undefined;
|
|
869
884
|
backgroundColor?: string | null | undefined;
|
|
870
885
|
fontSize?: number | null | undefined;
|
|
871
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
886
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
872
887
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
873
|
-
textAlign?: "
|
|
888
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
874
889
|
padding?: {
|
|
875
890
|
top: number;
|
|
876
891
|
bottom: number;
|
|
@@ -881,9 +896,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
881
896
|
color?: string | null | undefined;
|
|
882
897
|
backgroundColor?: string | null | undefined;
|
|
883
898
|
fontSize?: number | null | undefined;
|
|
884
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
899
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
885
900
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
886
|
-
textAlign?: "
|
|
901
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
887
902
|
padding?: {
|
|
888
903
|
top: number;
|
|
889
904
|
bottom: number;
|
|
@@ -906,9 +921,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
906
921
|
color?: string | null | undefined;
|
|
907
922
|
backgroundColor?: string | null | undefined;
|
|
908
923
|
fontSize?: number | null | undefined;
|
|
909
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
924
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
910
925
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
911
|
-
textAlign?: "
|
|
926
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
912
927
|
padding?: {
|
|
913
928
|
top: number;
|
|
914
929
|
bottom: number;
|
|
@@ -925,9 +940,9 @@ declare const ReaderBlockSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", an
|
|
|
925
940
|
color?: string | null | undefined;
|
|
926
941
|
backgroundColor?: string | null | undefined;
|
|
927
942
|
fontSize?: number | null | undefined;
|
|
928
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
943
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
929
944
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
930
|
-
textAlign?: "
|
|
945
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
931
946
|
padding?: {
|
|
932
947
|
top: number;
|
|
933
948
|
bottom: number;
|
|
@@ -980,6 +995,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
980
995
|
} | null | undefined;
|
|
981
996
|
}>>>;
|
|
982
997
|
className: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
998
|
+
responsiveDisplay: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
999
|
+
conditionStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
983
1000
|
loopStart: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
984
1001
|
loopEnd: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
985
1002
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1017,7 +1034,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1017
1034
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
1018
1035
|
columnsCount?: 2 | 3 | null | undefined;
|
|
1019
1036
|
columnsGap?: number | null | undefined;
|
|
1020
|
-
contentAlignment?: "top" | "
|
|
1037
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1021
1038
|
}, {
|
|
1022
1039
|
columns: [{
|
|
1023
1040
|
childrenIds: string[];
|
|
@@ -1029,7 +1046,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1029
1046
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
1030
1047
|
columnsCount?: 2 | 3 | null | undefined;
|
|
1031
1048
|
columnsGap?: number | null | undefined;
|
|
1032
|
-
contentAlignment?: "top" | "
|
|
1049
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1033
1050
|
}>>>;
|
|
1034
1051
|
}, "strip", z.ZodTypeAny, {
|
|
1035
1052
|
style?: {
|
|
@@ -1042,6 +1059,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1042
1059
|
} | null | undefined;
|
|
1043
1060
|
} | null | undefined;
|
|
1044
1061
|
className?: string | null | undefined;
|
|
1062
|
+
responsiveDisplay?: string | null | undefined;
|
|
1063
|
+
conditionStatement?: string | null | undefined;
|
|
1045
1064
|
loopStart?: number | null | undefined;
|
|
1046
1065
|
loopEnd?: number | null | undefined;
|
|
1047
1066
|
props?: {
|
|
@@ -1055,7 +1074,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1055
1074
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
1056
1075
|
columnsCount?: 2 | 3 | null | undefined;
|
|
1057
1076
|
columnsGap?: number | null | undefined;
|
|
1058
|
-
contentAlignment?: "top" | "
|
|
1077
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1059
1078
|
} | null | undefined;
|
|
1060
1079
|
}, {
|
|
1061
1080
|
style?: {
|
|
@@ -1068,6 +1087,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1068
1087
|
} | null | undefined;
|
|
1069
1088
|
} | null | undefined;
|
|
1070
1089
|
className?: string | null | undefined;
|
|
1090
|
+
responsiveDisplay?: string | null | undefined;
|
|
1091
|
+
conditionStatement?: string | null | undefined;
|
|
1071
1092
|
loopStart?: number | null | undefined;
|
|
1072
1093
|
loopEnd?: number | null | undefined;
|
|
1073
1094
|
props?: {
|
|
@@ -1081,7 +1102,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1081
1102
|
fixedWidths?: [number | null | undefined, number | null | undefined, number | null | undefined] | null | undefined;
|
|
1082
1103
|
columnsCount?: 2 | 3 | null | undefined;
|
|
1083
1104
|
columnsGap?: number | null | undefined;
|
|
1084
|
-
contentAlignment?: "top" | "
|
|
1105
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1085
1106
|
} | null | undefined;
|
|
1086
1107
|
}>;
|
|
1087
1108
|
Container: z.ZodObject<{
|
|
@@ -1127,6 +1148,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1127
1148
|
} | null | undefined;
|
|
1128
1149
|
}>>>;
|
|
1129
1150
|
className: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1151
|
+
responsiveDisplay: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1152
|
+
conditionStatement: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1130
1153
|
loopStart: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1131
1154
|
loopEnd: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1132
1155
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1149,6 +1172,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1149
1172
|
} | null | undefined;
|
|
1150
1173
|
} | null | undefined;
|
|
1151
1174
|
className?: string | null | undefined;
|
|
1175
|
+
responsiveDisplay?: string | null | undefined;
|
|
1176
|
+
conditionStatement?: string | null | undefined;
|
|
1152
1177
|
loopStart?: number | null | undefined;
|
|
1153
1178
|
loopEnd?: number | null | undefined;
|
|
1154
1179
|
props?: {
|
|
@@ -1167,6 +1192,8 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1167
1192
|
} | null | undefined;
|
|
1168
1193
|
} | null | undefined;
|
|
1169
1194
|
className?: string | null | undefined;
|
|
1195
|
+
responsiveDisplay?: string | null | undefined;
|
|
1196
|
+
conditionStatement?: string | null | undefined;
|
|
1170
1197
|
loopStart?: number | null | undefined;
|
|
1171
1198
|
loopEnd?: number | null | undefined;
|
|
1172
1199
|
props?: {
|
|
@@ -1181,6 +1208,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1181
1208
|
textColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1182
1209
|
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1183
1210
|
childrenIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
1211
|
+
previewText: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1184
1212
|
}, "strip", z.ZodTypeAny, {
|
|
1185
1213
|
backdropColor?: string | null | undefined;
|
|
1186
1214
|
borderColor?: string | null | undefined;
|
|
@@ -1189,6 +1217,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1189
1217
|
textColor?: string | null | undefined;
|
|
1190
1218
|
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1191
1219
|
childrenIds?: string[] | null | undefined;
|
|
1220
|
+
previewText?: string | null | undefined;
|
|
1192
1221
|
}, {
|
|
1193
1222
|
backdropColor?: string | null | undefined;
|
|
1194
1223
|
borderColor?: string | null | undefined;
|
|
@@ -1197,6 +1226,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1197
1226
|
textColor?: string | null | undefined;
|
|
1198
1227
|
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1199
1228
|
childrenIds?: string[] | null | undefined;
|
|
1229
|
+
previewText?: string | null | undefined;
|
|
1200
1230
|
}>;
|
|
1201
1231
|
Avatar: z.ZodObject<{
|
|
1202
1232
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1218,7 +1248,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1218
1248
|
left: number;
|
|
1219
1249
|
}>>>;
|
|
1220
1250
|
}, "strip", z.ZodTypeAny, {
|
|
1221
|
-
textAlign?: "
|
|
1251
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1222
1252
|
padding?: {
|
|
1223
1253
|
top: number;
|
|
1224
1254
|
bottom: number;
|
|
@@ -1226,7 +1256,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1226
1256
|
left: number;
|
|
1227
1257
|
} | null | undefined;
|
|
1228
1258
|
}, {
|
|
1229
|
-
textAlign?: "
|
|
1259
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1230
1260
|
padding?: {
|
|
1231
1261
|
top: number;
|
|
1232
1262
|
bottom: number;
|
|
@@ -1252,7 +1282,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1252
1282
|
}>>>;
|
|
1253
1283
|
}, "strip", z.ZodTypeAny, {
|
|
1254
1284
|
style?: {
|
|
1255
|
-
textAlign?: "
|
|
1285
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1256
1286
|
padding?: {
|
|
1257
1287
|
top: number;
|
|
1258
1288
|
bottom: number;
|
|
@@ -1268,7 +1298,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1268
1298
|
} | null | undefined;
|
|
1269
1299
|
}, {
|
|
1270
1300
|
style?: {
|
|
1271
|
-
textAlign?: "
|
|
1301
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1272
1302
|
padding?: {
|
|
1273
1303
|
top: number;
|
|
1274
1304
|
bottom: number;
|
|
@@ -1287,7 +1317,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1287
1317
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1288
1318
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1289
1319
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1290
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1320
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1291
1321
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
1292
1322
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
1293
1323
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1309,9 +1339,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1309
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1310
1340
|
backgroundColor?: string | null | undefined;
|
|
1311
1341
|
fontSize?: number | null | undefined;
|
|
1312
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1342
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1313
1343
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1314
|
-
textAlign?: "
|
|
1344
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1315
1345
|
padding?: {
|
|
1316
1346
|
top: number;
|
|
1317
1347
|
bottom: number;
|
|
@@ -1321,9 +1351,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1321
1351
|
}, {
|
|
1322
1352
|
backgroundColor?: string | null | undefined;
|
|
1323
1353
|
fontSize?: number | null | undefined;
|
|
1324
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1354
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1325
1355
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1326
|
-
textAlign?: "
|
|
1356
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1327
1357
|
padding?: {
|
|
1328
1358
|
top: number;
|
|
1329
1359
|
bottom: number;
|
|
@@ -1344,7 +1374,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1344
1374
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
1345
1375
|
buttonTextColor?: string | null | undefined;
|
|
1346
1376
|
fullWidth?: boolean | null | undefined;
|
|
1347
|
-
size?: "small" | "
|
|
1377
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
1348
1378
|
text?: string | null | undefined;
|
|
1349
1379
|
url?: string | null | undefined;
|
|
1350
1380
|
}, {
|
|
@@ -1352,7 +1382,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1352
1382
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
1353
1383
|
buttonTextColor?: string | null | undefined;
|
|
1354
1384
|
fullWidth?: boolean | null | undefined;
|
|
1355
|
-
size?: "small" | "
|
|
1385
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
1356
1386
|
text?: string | null | undefined;
|
|
1357
1387
|
url?: string | null | undefined;
|
|
1358
1388
|
}>>>;
|
|
@@ -1360,9 +1390,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1360
1390
|
style?: {
|
|
1361
1391
|
backgroundColor?: string | null | undefined;
|
|
1362
1392
|
fontSize?: number | null | undefined;
|
|
1363
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1393
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1364
1394
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1365
|
-
textAlign?: "
|
|
1395
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1366
1396
|
padding?: {
|
|
1367
1397
|
top: number;
|
|
1368
1398
|
bottom: number;
|
|
@@ -1375,7 +1405,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1375
1405
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
1376
1406
|
buttonTextColor?: string | null | undefined;
|
|
1377
1407
|
fullWidth?: boolean | null | undefined;
|
|
1378
|
-
size?: "small" | "
|
|
1408
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
1379
1409
|
text?: string | null | undefined;
|
|
1380
1410
|
url?: string | null | undefined;
|
|
1381
1411
|
} | null | undefined;
|
|
@@ -1383,9 +1413,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1383
1413
|
style?: {
|
|
1384
1414
|
backgroundColor?: string | null | undefined;
|
|
1385
1415
|
fontSize?: number | null | undefined;
|
|
1386
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1416
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1387
1417
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1388
|
-
textAlign?: "
|
|
1418
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1389
1419
|
padding?: {
|
|
1390
1420
|
top: number;
|
|
1391
1421
|
bottom: number;
|
|
@@ -1398,7 +1428,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1398
1428
|
buttonStyle?: "rounded" | "rectangle" | "pill" | null | undefined;
|
|
1399
1429
|
buttonTextColor?: string | null | undefined;
|
|
1400
1430
|
fullWidth?: boolean | null | undefined;
|
|
1401
|
-
size?: "small" | "
|
|
1431
|
+
size?: "small" | "large" | "medium" | "x-small" | null | undefined;
|
|
1402
1432
|
text?: string | null | undefined;
|
|
1403
1433
|
url?: string | null | undefined;
|
|
1404
1434
|
} | null | undefined;
|
|
@@ -1492,7 +1522,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1492
1522
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1493
1523
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1494
1524
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1495
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1525
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1496
1526
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
1497
1527
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
1498
1528
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1514,9 +1544,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1514
1544
|
}, "strip", z.ZodTypeAny, {
|
|
1515
1545
|
color?: string | null | undefined;
|
|
1516
1546
|
backgroundColor?: string | null | undefined;
|
|
1517
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1547
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1518
1548
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1519
|
-
textAlign?: "
|
|
1549
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1520
1550
|
padding?: {
|
|
1521
1551
|
top: number;
|
|
1522
1552
|
bottom: number;
|
|
@@ -1526,9 +1556,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1526
1556
|
}, {
|
|
1527
1557
|
color?: string | null | undefined;
|
|
1528
1558
|
backgroundColor?: string | null | undefined;
|
|
1529
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1559
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1530
1560
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1531
|
-
textAlign?: "
|
|
1561
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1532
1562
|
padding?: {
|
|
1533
1563
|
top: number;
|
|
1534
1564
|
bottom: number;
|
|
@@ -1544,9 +1574,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1544
1574
|
style?: {
|
|
1545
1575
|
color?: string | null | undefined;
|
|
1546
1576
|
backgroundColor?: string | null | undefined;
|
|
1547
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1577
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1548
1578
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1549
|
-
textAlign?: "
|
|
1579
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1550
1580
|
padding?: {
|
|
1551
1581
|
top: number;
|
|
1552
1582
|
bottom: number;
|
|
@@ -1562,9 +1592,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1562
1592
|
style?: {
|
|
1563
1593
|
color?: string | null | undefined;
|
|
1564
1594
|
backgroundColor?: string | null | undefined;
|
|
1565
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1595
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1566
1596
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1567
|
-
textAlign?: "
|
|
1597
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1568
1598
|
padding?: {
|
|
1569
1599
|
top: number;
|
|
1570
1600
|
bottom: number;
|
|
@@ -1577,7 +1607,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1577
1607
|
style: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1578
1608
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1579
1609
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1580
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1610
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1581
1611
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1582
1612
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "right", "center"]>>>;
|
|
1583
1613
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1599,9 +1629,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1599
1629
|
}, "strip", z.ZodTypeAny, {
|
|
1600
1630
|
color?: string | null | undefined;
|
|
1601
1631
|
backgroundColor?: string | null | undefined;
|
|
1602
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1632
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1603
1633
|
fontSize?: number | null | undefined;
|
|
1604
|
-
textAlign?: "
|
|
1634
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1605
1635
|
padding?: {
|
|
1606
1636
|
top: number;
|
|
1607
1637
|
bottom: number;
|
|
@@ -1611,9 +1641,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1611
1641
|
}, {
|
|
1612
1642
|
color?: string | null | undefined;
|
|
1613
1643
|
backgroundColor?: string | null | undefined;
|
|
1614
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1644
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1615
1645
|
fontSize?: number | null | undefined;
|
|
1616
|
-
textAlign?: "
|
|
1646
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1617
1647
|
padding?: {
|
|
1618
1648
|
top: number;
|
|
1619
1649
|
bottom: number;
|
|
@@ -1632,9 +1662,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1632
1662
|
style?: {
|
|
1633
1663
|
color?: string | null | undefined;
|
|
1634
1664
|
backgroundColor?: string | null | undefined;
|
|
1635
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1665
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1636
1666
|
fontSize?: number | null | undefined;
|
|
1637
|
-
textAlign?: "
|
|
1667
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1638
1668
|
padding?: {
|
|
1639
1669
|
top: number;
|
|
1640
1670
|
bottom: number;
|
|
@@ -1649,9 +1679,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1649
1679
|
style?: {
|
|
1650
1680
|
color?: string | null | undefined;
|
|
1651
1681
|
backgroundColor?: string | null | undefined;
|
|
1652
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1682
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1653
1683
|
fontSize?: number | null | undefined;
|
|
1654
|
-
textAlign?: "
|
|
1684
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1655
1685
|
padding?: {
|
|
1656
1686
|
top: number;
|
|
1657
1687
|
bottom: number;
|
|
@@ -1691,7 +1721,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1691
1721
|
left: number;
|
|
1692
1722
|
} | null | undefined;
|
|
1693
1723
|
backgroundColor?: string | null | undefined;
|
|
1694
|
-
textAlign?: "
|
|
1724
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1695
1725
|
}, {
|
|
1696
1726
|
padding?: {
|
|
1697
1727
|
top: number;
|
|
@@ -1700,7 +1730,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1700
1730
|
left: number;
|
|
1701
1731
|
} | null | undefined;
|
|
1702
1732
|
backgroundColor?: string | null | undefined;
|
|
1703
|
-
textAlign?: "
|
|
1733
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1704
1734
|
}>>>;
|
|
1705
1735
|
props: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1706
1736
|
width: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1715,14 +1745,14 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1715
1745
|
url?: string | null | undefined;
|
|
1716
1746
|
alt?: string | null | undefined;
|
|
1717
1747
|
linkHref?: string | null | undefined;
|
|
1718
|
-
contentAlignment?: "top" | "
|
|
1748
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1719
1749
|
}, {
|
|
1720
1750
|
width?: number | null | undefined;
|
|
1721
1751
|
height?: number | null | undefined;
|
|
1722
1752
|
url?: string | null | undefined;
|
|
1723
1753
|
alt?: string | null | undefined;
|
|
1724
1754
|
linkHref?: string | null | undefined;
|
|
1725
|
-
contentAlignment?: "top" | "
|
|
1755
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1726
1756
|
}>>>;
|
|
1727
1757
|
}, "strip", z.ZodTypeAny, {
|
|
1728
1758
|
style?: {
|
|
@@ -1733,7 +1763,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1733
1763
|
left: number;
|
|
1734
1764
|
} | null | undefined;
|
|
1735
1765
|
backgroundColor?: string | null | undefined;
|
|
1736
|
-
textAlign?: "
|
|
1766
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1737
1767
|
} | null | undefined;
|
|
1738
1768
|
props?: {
|
|
1739
1769
|
width?: number | null | undefined;
|
|
@@ -1741,7 +1771,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1741
1771
|
url?: string | null | undefined;
|
|
1742
1772
|
alt?: string | null | undefined;
|
|
1743
1773
|
linkHref?: string | null | undefined;
|
|
1744
|
-
contentAlignment?: "top" | "
|
|
1774
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1745
1775
|
} | null | undefined;
|
|
1746
1776
|
}, {
|
|
1747
1777
|
style?: {
|
|
@@ -1752,7 +1782,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1752
1782
|
left: number;
|
|
1753
1783
|
} | null | undefined;
|
|
1754
1784
|
backgroundColor?: string | null | undefined;
|
|
1755
|
-
textAlign?: "
|
|
1785
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1756
1786
|
} | null | undefined;
|
|
1757
1787
|
props?: {
|
|
1758
1788
|
width?: number | null | undefined;
|
|
@@ -1760,7 +1790,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1760
1790
|
url?: string | null | undefined;
|
|
1761
1791
|
alt?: string | null | undefined;
|
|
1762
1792
|
linkHref?: string | null | undefined;
|
|
1763
|
-
contentAlignment?: "top" | "
|
|
1793
|
+
contentAlignment?: "top" | "middle" | "bottom" | null | undefined;
|
|
1764
1794
|
} | null | undefined;
|
|
1765
1795
|
}>;
|
|
1766
1796
|
Spacer: z.ZodObject<{
|
|
@@ -1785,7 +1815,7 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1785
1815
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1786
1816
|
backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1787
1817
|
fontSize: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1788
|
-
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1818
|
+
fontFamily: z.ZodOptional<z.ZodNullable<z.ZodEnum<["HELVETICA", "GEORGIA", "MODERN_SANS", "BOOK_SANS", "ORGANIC_SANS", "GEOMETRIC_SANS", "HEAVY_SANS", "ROUNDED_SANS", "MODERN_SERIF", "BOOK_SERIF", "MONOSPACE"]>>>;
|
|
1789
1819
|
fontWeight: z.ZodNullable<z.ZodOptional<z.ZodEnum<["bold", "normal"]>>>;
|
|
1790
1820
|
textAlign: z.ZodNullable<z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>>;
|
|
1791
1821
|
padding: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1808,9 +1838,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1808
1838
|
color?: string | null | undefined;
|
|
1809
1839
|
backgroundColor?: string | null | undefined;
|
|
1810
1840
|
fontSize?: number | null | undefined;
|
|
1811
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1841
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1812
1842
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1813
|
-
textAlign?: "
|
|
1843
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1814
1844
|
padding?: {
|
|
1815
1845
|
top: number;
|
|
1816
1846
|
bottom: number;
|
|
@@ -1821,9 +1851,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1821
1851
|
color?: string | null | undefined;
|
|
1822
1852
|
backgroundColor?: string | null | undefined;
|
|
1823
1853
|
fontSize?: number | null | undefined;
|
|
1824
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1854
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1825
1855
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1826
|
-
textAlign?: "
|
|
1856
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1827
1857
|
padding?: {
|
|
1828
1858
|
top: number;
|
|
1829
1859
|
bottom: number;
|
|
@@ -1846,9 +1876,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1846
1876
|
color?: string | null | undefined;
|
|
1847
1877
|
backgroundColor?: string | null | undefined;
|
|
1848
1878
|
fontSize?: number | null | undefined;
|
|
1849
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1879
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1850
1880
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1851
|
-
textAlign?: "
|
|
1881
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1852
1882
|
padding?: {
|
|
1853
1883
|
top: number;
|
|
1854
1884
|
bottom: number;
|
|
@@ -1865,9 +1895,9 @@ declare const ReaderDocumentSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodD
|
|
|
1865
1895
|
color?: string | null | undefined;
|
|
1866
1896
|
backgroundColor?: string | null | undefined;
|
|
1867
1897
|
fontSize?: number | null | undefined;
|
|
1868
|
-
fontFamily?: "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1898
|
+
fontFamily?: "HELVETICA" | "GEORGIA" | "MODERN_SANS" | "BOOK_SANS" | "ORGANIC_SANS" | "GEOMETRIC_SANS" | "HEAVY_SANS" | "ROUNDED_SANS" | "MODERN_SERIF" | "BOOK_SERIF" | "MONOSPACE" | null | undefined;
|
|
1869
1899
|
fontWeight?: "bold" | "normal" | null | undefined;
|
|
1870
|
-
textAlign?: "
|
|
1900
|
+
textAlign?: "center" | "left" | "right" | null | undefined;
|
|
1871
1901
|
padding?: {
|
|
1872
1902
|
top: number;
|
|
1873
1903
|
bottom: number;
|