@shotstack/shotstack-studio 1.8.0 → 1.9.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/dist/index.d.ts +72 -228
- package/dist/schema/index.cjs +1 -1
- package/dist/schema/index.d.ts +72 -228
- package/dist/schema/index.mjs +26 -28
- package/dist/shotstack-studio.es.js +33623 -46
- package/dist/shotstack-studio.umd.js +34 -32
- package/package.json +6 -3
- package/readme.md +64 -65
package/dist/index.d.ts
CHANGED
|
@@ -152,7 +152,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
152
152
|
family: zod.ZodDefault<zod.ZodString>;
|
|
153
153
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
154
154
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
155
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
156
155
|
color: zod.ZodDefault<zod.ZodString>;
|
|
157
156
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
158
157
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -160,14 +159,12 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
160
159
|
family: string;
|
|
161
160
|
size: number;
|
|
162
161
|
weight: string | number;
|
|
163
|
-
style: "normal" | "italic" | "oblique";
|
|
164
162
|
opacity: number;
|
|
165
163
|
}, {
|
|
166
164
|
color?: string | undefined;
|
|
167
165
|
family?: string | undefined;
|
|
168
166
|
size?: number | undefined;
|
|
169
167
|
weight?: string | number | undefined;
|
|
170
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
171
168
|
opacity?: number | undefined;
|
|
172
169
|
}>>;
|
|
173
170
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -294,14 +291,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
294
291
|
}, "strict", zod.ZodTypeAny, {
|
|
295
292
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
296
293
|
speed: number;
|
|
297
|
-
style?: "character" | "word" | undefined;
|
|
298
294
|
duration?: number | undefined;
|
|
295
|
+
style?: "character" | "word" | undefined;
|
|
299
296
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
300
297
|
}, {
|
|
301
298
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
302
|
-
style?: "character" | "word" | undefined;
|
|
303
299
|
speed?: number | undefined;
|
|
304
300
|
duration?: number | undefined;
|
|
301
|
+
style?: "character" | "word" | undefined;
|
|
305
302
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
306
303
|
}>>;
|
|
307
304
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -310,17 +307,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
310
307
|
src: zod.ZodString;
|
|
311
308
|
family: zod.ZodString;
|
|
312
309
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
313
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
314
310
|
}, "strict", zod.ZodTypeAny, {
|
|
315
311
|
src: string;
|
|
316
312
|
family: string;
|
|
317
313
|
weight: string | number;
|
|
318
|
-
style: "normal" | "italic" | "oblique";
|
|
319
314
|
}, {
|
|
320
315
|
src: string;
|
|
321
316
|
family: string;
|
|
322
317
|
weight?: string | number | undefined;
|
|
323
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
324
318
|
}>, "many">>;
|
|
325
319
|
}, "strict", zod.ZodTypeAny, {
|
|
326
320
|
type: "rich-text";
|
|
@@ -348,7 +342,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
348
342
|
family: string;
|
|
349
343
|
size: number;
|
|
350
344
|
weight: string | number;
|
|
351
|
-
style: "normal" | "italic" | "oblique";
|
|
352
345
|
opacity: number;
|
|
353
346
|
} | undefined;
|
|
354
347
|
stroke?: {
|
|
@@ -375,15 +368,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
375
368
|
animation?: {
|
|
376
369
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
377
370
|
speed: number;
|
|
378
|
-
style?: "character" | "word" | undefined;
|
|
379
371
|
duration?: number | undefined;
|
|
372
|
+
style?: "character" | "word" | undefined;
|
|
380
373
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
381
374
|
} | undefined;
|
|
382
375
|
customFonts?: {
|
|
383
376
|
src: string;
|
|
384
377
|
family: string;
|
|
385
378
|
weight: string | number;
|
|
386
|
-
style: "normal" | "italic" | "oblique";
|
|
387
379
|
}[] | undefined;
|
|
388
380
|
}, {
|
|
389
381
|
type: "rich-text";
|
|
@@ -409,7 +401,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
409
401
|
family?: string | undefined;
|
|
410
402
|
size?: number | undefined;
|
|
411
403
|
weight?: string | number | undefined;
|
|
412
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
413
404
|
opacity?: number | undefined;
|
|
414
405
|
} | undefined;
|
|
415
406
|
stroke?: {
|
|
@@ -435,9 +426,9 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
435
426
|
} | undefined;
|
|
436
427
|
animation?: {
|
|
437
428
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
438
|
-
style?: "character" | "word" | undefined;
|
|
439
429
|
speed?: number | undefined;
|
|
440
430
|
duration?: number | undefined;
|
|
431
|
+
style?: "character" | "word" | undefined;
|
|
441
432
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
442
433
|
} | undefined;
|
|
443
434
|
cacheEnabled?: boolean | undefined;
|
|
@@ -446,7 +437,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
446
437
|
src: string;
|
|
447
438
|
family: string;
|
|
448
439
|
weight?: string | number | undefined;
|
|
449
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
450
440
|
}[] | undefined;
|
|
451
441
|
}>, zod.ZodEffects<zod.ZodObject<{
|
|
452
442
|
type: zod.ZodLiteral<"shape">;
|
|
@@ -850,7 +840,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
850
840
|
family: string;
|
|
851
841
|
size: number;
|
|
852
842
|
weight: string | number;
|
|
853
|
-
style: "normal" | "italic" | "oblique";
|
|
854
843
|
opacity: number;
|
|
855
844
|
} | undefined;
|
|
856
845
|
stroke?: {
|
|
@@ -877,15 +866,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
877
866
|
animation?: {
|
|
878
867
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
879
868
|
speed: number;
|
|
880
|
-
style?: "character" | "word" | undefined;
|
|
881
869
|
duration?: number | undefined;
|
|
870
|
+
style?: "character" | "word" | undefined;
|
|
882
871
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
883
872
|
} | undefined;
|
|
884
873
|
customFonts?: {
|
|
885
874
|
src: string;
|
|
886
875
|
family: string;
|
|
887
876
|
weight: string | number;
|
|
888
|
-
style: "normal" | "italic" | "oblique";
|
|
889
877
|
}[] | undefined;
|
|
890
878
|
} | {
|
|
891
879
|
type: "shape";
|
|
@@ -1008,7 +996,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
1008
996
|
family?: string | undefined;
|
|
1009
997
|
size?: number | undefined;
|
|
1010
998
|
weight?: string | number | undefined;
|
|
1011
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1012
999
|
opacity?: number | undefined;
|
|
1013
1000
|
} | undefined;
|
|
1014
1001
|
stroke?: {
|
|
@@ -1034,9 +1021,9 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
1034
1021
|
} | undefined;
|
|
1035
1022
|
animation?: {
|
|
1036
1023
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
1037
|
-
style?: "character" | "word" | undefined;
|
|
1038
1024
|
speed?: number | undefined;
|
|
1039
1025
|
duration?: number | undefined;
|
|
1026
|
+
style?: "character" | "word" | undefined;
|
|
1040
1027
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
1041
1028
|
} | undefined;
|
|
1042
1029
|
cacheEnabled?: boolean | undefined;
|
|
@@ -1045,7 +1032,6 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
1045
1032
|
src: string;
|
|
1046
1033
|
family: string;
|
|
1047
1034
|
weight?: string | number | undefined;
|
|
1048
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1049
1035
|
}[] | undefined;
|
|
1050
1036
|
} | {
|
|
1051
1037
|
type: "shape";
|
|
@@ -1360,7 +1346,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1360
1346
|
family: zod.ZodDefault<zod.ZodString>;
|
|
1361
1347
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
1362
1348
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
1363
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
1364
1349
|
color: zod.ZodDefault<zod.ZodString>;
|
|
1365
1350
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
1366
1351
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -1368,14 +1353,12 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1368
1353
|
family: string;
|
|
1369
1354
|
size: number;
|
|
1370
1355
|
weight: string | number;
|
|
1371
|
-
style: "normal" | "italic" | "oblique";
|
|
1372
1356
|
opacity: number;
|
|
1373
1357
|
}, {
|
|
1374
1358
|
color?: string | undefined;
|
|
1375
1359
|
family?: string | undefined;
|
|
1376
1360
|
size?: number | undefined;
|
|
1377
1361
|
weight?: string | number | undefined;
|
|
1378
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1379
1362
|
opacity?: number | undefined;
|
|
1380
1363
|
}>>;
|
|
1381
1364
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -1502,14 +1485,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1502
1485
|
}, "strict", zod.ZodTypeAny, {
|
|
1503
1486
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
1504
1487
|
speed: number;
|
|
1505
|
-
style?: "character" | "word" | undefined;
|
|
1506
1488
|
duration?: number | undefined;
|
|
1489
|
+
style?: "character" | "word" | undefined;
|
|
1507
1490
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
1508
1491
|
}, {
|
|
1509
1492
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
1510
|
-
style?: "character" | "word" | undefined;
|
|
1511
1493
|
speed?: number | undefined;
|
|
1512
1494
|
duration?: number | undefined;
|
|
1495
|
+
style?: "character" | "word" | undefined;
|
|
1513
1496
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
1514
1497
|
}>>;
|
|
1515
1498
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -1518,17 +1501,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1518
1501
|
src: zod.ZodString;
|
|
1519
1502
|
family: zod.ZodString;
|
|
1520
1503
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
1521
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
1522
1504
|
}, "strict", zod.ZodTypeAny, {
|
|
1523
1505
|
src: string;
|
|
1524
1506
|
family: string;
|
|
1525
1507
|
weight: string | number;
|
|
1526
|
-
style: "normal" | "italic" | "oblique";
|
|
1527
1508
|
}, {
|
|
1528
1509
|
src: string;
|
|
1529
1510
|
family: string;
|
|
1530
1511
|
weight?: string | number | undefined;
|
|
1531
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1532
1512
|
}>, "many">>;
|
|
1533
1513
|
}, "strict", zod.ZodTypeAny, {
|
|
1534
1514
|
type: "rich-text";
|
|
@@ -1556,7 +1536,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1556
1536
|
family: string;
|
|
1557
1537
|
size: number;
|
|
1558
1538
|
weight: string | number;
|
|
1559
|
-
style: "normal" | "italic" | "oblique";
|
|
1560
1539
|
opacity: number;
|
|
1561
1540
|
} | undefined;
|
|
1562
1541
|
stroke?: {
|
|
@@ -1583,15 +1562,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1583
1562
|
animation?: {
|
|
1584
1563
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
1585
1564
|
speed: number;
|
|
1586
|
-
style?: "character" | "word" | undefined;
|
|
1587
1565
|
duration?: number | undefined;
|
|
1566
|
+
style?: "character" | "word" | undefined;
|
|
1588
1567
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
1589
1568
|
} | undefined;
|
|
1590
1569
|
customFonts?: {
|
|
1591
1570
|
src: string;
|
|
1592
1571
|
family: string;
|
|
1593
1572
|
weight: string | number;
|
|
1594
|
-
style: "normal" | "italic" | "oblique";
|
|
1595
1573
|
}[] | undefined;
|
|
1596
1574
|
}, {
|
|
1597
1575
|
type: "rich-text";
|
|
@@ -1617,7 +1595,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1617
1595
|
family?: string | undefined;
|
|
1618
1596
|
size?: number | undefined;
|
|
1619
1597
|
weight?: string | number | undefined;
|
|
1620
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1621
1598
|
opacity?: number | undefined;
|
|
1622
1599
|
} | undefined;
|
|
1623
1600
|
stroke?: {
|
|
@@ -1643,9 +1620,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1643
1620
|
} | undefined;
|
|
1644
1621
|
animation?: {
|
|
1645
1622
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
1646
|
-
style?: "character" | "word" | undefined;
|
|
1647
1623
|
speed?: number | undefined;
|
|
1648
1624
|
duration?: number | undefined;
|
|
1625
|
+
style?: "character" | "word" | undefined;
|
|
1649
1626
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
1650
1627
|
} | undefined;
|
|
1651
1628
|
cacheEnabled?: boolean | undefined;
|
|
@@ -1654,7 +1631,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
1654
1631
|
src: string;
|
|
1655
1632
|
family: string;
|
|
1656
1633
|
weight?: string | number | undefined;
|
|
1657
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
1658
1634
|
}[] | undefined;
|
|
1659
1635
|
}>, zod.ZodEffects<zod.ZodObject<{
|
|
1660
1636
|
type: zod.ZodLiteral<"shape">;
|
|
@@ -2058,7 +2034,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2058
2034
|
family: string;
|
|
2059
2035
|
size: number;
|
|
2060
2036
|
weight: string | number;
|
|
2061
|
-
style: "normal" | "italic" | "oblique";
|
|
2062
2037
|
opacity: number;
|
|
2063
2038
|
} | undefined;
|
|
2064
2039
|
stroke?: {
|
|
@@ -2085,15 +2060,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2085
2060
|
animation?: {
|
|
2086
2061
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
2087
2062
|
speed: number;
|
|
2088
|
-
style?: "character" | "word" | undefined;
|
|
2089
2063
|
duration?: number | undefined;
|
|
2064
|
+
style?: "character" | "word" | undefined;
|
|
2090
2065
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
2091
2066
|
} | undefined;
|
|
2092
2067
|
customFonts?: {
|
|
2093
2068
|
src: string;
|
|
2094
2069
|
family: string;
|
|
2095
2070
|
weight: string | number;
|
|
2096
|
-
style: "normal" | "italic" | "oblique";
|
|
2097
2071
|
}[] | undefined;
|
|
2098
2072
|
} | {
|
|
2099
2073
|
type: "shape";
|
|
@@ -2216,7 +2190,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2216
2190
|
family?: string | undefined;
|
|
2217
2191
|
size?: number | undefined;
|
|
2218
2192
|
weight?: string | number | undefined;
|
|
2219
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
2220
2193
|
opacity?: number | undefined;
|
|
2221
2194
|
} | undefined;
|
|
2222
2195
|
stroke?: {
|
|
@@ -2242,9 +2215,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2242
2215
|
} | undefined;
|
|
2243
2216
|
animation?: {
|
|
2244
2217
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
2245
|
-
style?: "character" | "word" | undefined;
|
|
2246
2218
|
speed?: number | undefined;
|
|
2247
2219
|
duration?: number | undefined;
|
|
2220
|
+
style?: "character" | "word" | undefined;
|
|
2248
2221
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
2249
2222
|
} | undefined;
|
|
2250
2223
|
cacheEnabled?: boolean | undefined;
|
|
@@ -2253,7 +2226,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2253
2226
|
src: string;
|
|
2254
2227
|
family: string;
|
|
2255
2228
|
weight?: string | number | undefined;
|
|
2256
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
2257
2229
|
}[] | undefined;
|
|
2258
2230
|
} | {
|
|
2259
2231
|
type: "shape";
|
|
@@ -2594,7 +2566,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2594
2566
|
family: string;
|
|
2595
2567
|
size: number;
|
|
2596
2568
|
weight: string | number;
|
|
2597
|
-
style: "normal" | "italic" | "oblique";
|
|
2598
2569
|
opacity: number;
|
|
2599
2570
|
} | undefined;
|
|
2600
2571
|
stroke?: {
|
|
@@ -2621,15 +2592,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2621
2592
|
animation?: {
|
|
2622
2593
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
2623
2594
|
speed: number;
|
|
2624
|
-
style?: "character" | "word" | undefined;
|
|
2625
2595
|
duration?: number | undefined;
|
|
2596
|
+
style?: "character" | "word" | undefined;
|
|
2626
2597
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
2627
2598
|
} | undefined;
|
|
2628
2599
|
customFonts?: {
|
|
2629
2600
|
src: string;
|
|
2630
2601
|
family: string;
|
|
2631
2602
|
weight: string | number;
|
|
2632
|
-
style: "normal" | "italic" | "oblique";
|
|
2633
2603
|
}[] | undefined;
|
|
2634
2604
|
} | {
|
|
2635
2605
|
type: "shape";
|
|
@@ -2811,7 +2781,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2811
2781
|
family?: string | undefined;
|
|
2812
2782
|
size?: number | undefined;
|
|
2813
2783
|
weight?: string | number | undefined;
|
|
2814
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
2815
2784
|
opacity?: number | undefined;
|
|
2816
2785
|
} | undefined;
|
|
2817
2786
|
stroke?: {
|
|
@@ -2837,9 +2806,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2837
2806
|
} | undefined;
|
|
2838
2807
|
animation?: {
|
|
2839
2808
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
2840
|
-
style?: "character" | "word" | undefined;
|
|
2841
2809
|
speed?: number | undefined;
|
|
2842
2810
|
duration?: number | undefined;
|
|
2811
|
+
style?: "character" | "word" | undefined;
|
|
2843
2812
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
2844
2813
|
} | undefined;
|
|
2845
2814
|
cacheEnabled?: boolean | undefined;
|
|
@@ -2848,7 +2817,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
2848
2817
|
src: string;
|
|
2849
2818
|
family: string;
|
|
2850
2819
|
weight?: string | number | undefined;
|
|
2851
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
2852
2820
|
}[] | undefined;
|
|
2853
2821
|
} | {
|
|
2854
2822
|
type: "shape";
|
|
@@ -3032,7 +3000,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3032
3000
|
family: string;
|
|
3033
3001
|
size: number;
|
|
3034
3002
|
weight: string | number;
|
|
3035
|
-
style: "normal" | "italic" | "oblique";
|
|
3036
3003
|
opacity: number;
|
|
3037
3004
|
} | undefined;
|
|
3038
3005
|
stroke?: {
|
|
@@ -3059,15 +3026,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3059
3026
|
animation?: {
|
|
3060
3027
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
3061
3028
|
speed: number;
|
|
3062
|
-
style?: "character" | "word" | undefined;
|
|
3063
3029
|
duration?: number | undefined;
|
|
3030
|
+
style?: "character" | "word" | undefined;
|
|
3064
3031
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
3065
3032
|
} | undefined;
|
|
3066
3033
|
customFonts?: {
|
|
3067
3034
|
src: string;
|
|
3068
3035
|
family: string;
|
|
3069
3036
|
weight: string | number;
|
|
3070
|
-
style: "normal" | "italic" | "oblique";
|
|
3071
3037
|
}[] | undefined;
|
|
3072
3038
|
} | {
|
|
3073
3039
|
type: "shape";
|
|
@@ -3252,7 +3218,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3252
3218
|
family: string;
|
|
3253
3219
|
size: number;
|
|
3254
3220
|
weight: string | number;
|
|
3255
|
-
style: "normal" | "italic" | "oblique";
|
|
3256
3221
|
opacity: number;
|
|
3257
3222
|
} | undefined;
|
|
3258
3223
|
stroke?: {
|
|
@@ -3279,15 +3244,14 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3279
3244
|
animation?: {
|
|
3280
3245
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
3281
3246
|
speed: number;
|
|
3282
|
-
style?: "character" | "word" | undefined;
|
|
3283
3247
|
duration?: number | undefined;
|
|
3248
|
+
style?: "character" | "word" | undefined;
|
|
3284
3249
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
3285
3250
|
} | undefined;
|
|
3286
3251
|
customFonts?: {
|
|
3287
3252
|
src: string;
|
|
3288
3253
|
family: string;
|
|
3289
3254
|
weight: string | number;
|
|
3290
|
-
style: "normal" | "italic" | "oblique";
|
|
3291
3255
|
}[] | undefined;
|
|
3292
3256
|
} | {
|
|
3293
3257
|
type: "shape";
|
|
@@ -3468,7 +3432,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3468
3432
|
family?: string | undefined;
|
|
3469
3433
|
size?: number | undefined;
|
|
3470
3434
|
weight?: string | number | undefined;
|
|
3471
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
3472
3435
|
opacity?: number | undefined;
|
|
3473
3436
|
} | undefined;
|
|
3474
3437
|
stroke?: {
|
|
@@ -3494,9 +3457,9 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3494
3457
|
} | undefined;
|
|
3495
3458
|
animation?: {
|
|
3496
3459
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
3497
|
-
style?: "character" | "word" | undefined;
|
|
3498
3460
|
speed?: number | undefined;
|
|
3499
3461
|
duration?: number | undefined;
|
|
3462
|
+
style?: "character" | "word" | undefined;
|
|
3500
3463
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
3501
3464
|
} | undefined;
|
|
3502
3465
|
cacheEnabled?: boolean | undefined;
|
|
@@ -3505,7 +3468,6 @@ export declare const ClipSchema: zod.ZodEffects<zod.ZodObject<{
|
|
|
3505
3468
|
src: string;
|
|
3506
3469
|
family: string;
|
|
3507
3470
|
weight?: string | number | undefined;
|
|
3508
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
3509
3471
|
}[] | undefined;
|
|
3510
3472
|
} | {
|
|
3511
3473
|
type: "shape";
|
|
@@ -3869,7 +3831,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3869
3831
|
family: zod.ZodDefault<zod.ZodString>;
|
|
3870
3832
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
3871
3833
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
3872
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
3873
3834
|
color: zod.ZodDefault<zod.ZodString>;
|
|
3874
3835
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
3875
3836
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -3877,14 +3838,12 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3877
3838
|
family: string;
|
|
3878
3839
|
size: number;
|
|
3879
3840
|
weight: string | number;
|
|
3880
|
-
style: "normal" | "italic" | "oblique";
|
|
3881
3841
|
opacity: number;
|
|
3882
3842
|
}, {
|
|
3883
3843
|
color?: string | undefined;
|
|
3884
3844
|
family?: string | undefined;
|
|
3885
3845
|
size?: number | undefined;
|
|
3886
3846
|
weight?: string | number | undefined;
|
|
3887
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
3888
3847
|
opacity?: number | undefined;
|
|
3889
3848
|
}>>;
|
|
3890
3849
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -4011,14 +3970,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4011
3970
|
}, "strict", zod.ZodTypeAny, {
|
|
4012
3971
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4013
3972
|
speed: number;
|
|
4014
|
-
style?: "character" | "word" | undefined;
|
|
4015
3973
|
duration?: number | undefined;
|
|
3974
|
+
style?: "character" | "word" | undefined;
|
|
4016
3975
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4017
3976
|
}, {
|
|
4018
3977
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4019
|
-
style?: "character" | "word" | undefined;
|
|
4020
3978
|
speed?: number | undefined;
|
|
4021
3979
|
duration?: number | undefined;
|
|
3980
|
+
style?: "character" | "word" | undefined;
|
|
4022
3981
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4023
3982
|
}>>;
|
|
4024
3983
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -4027,17 +3986,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4027
3986
|
src: zod.ZodString;
|
|
4028
3987
|
family: zod.ZodString;
|
|
4029
3988
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
4030
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
4031
3989
|
}, "strict", zod.ZodTypeAny, {
|
|
4032
3990
|
src: string;
|
|
4033
3991
|
family: string;
|
|
4034
3992
|
weight: string | number;
|
|
4035
|
-
style: "normal" | "italic" | "oblique";
|
|
4036
3993
|
}, {
|
|
4037
3994
|
src: string;
|
|
4038
3995
|
family: string;
|
|
4039
3996
|
weight?: string | number | undefined;
|
|
4040
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
4041
3997
|
}>, "many">>;
|
|
4042
3998
|
}, "strict", zod.ZodTypeAny, {
|
|
4043
3999
|
type: "rich-text";
|
|
@@ -4065,7 +4021,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4065
4021
|
family: string;
|
|
4066
4022
|
size: number;
|
|
4067
4023
|
weight: string | number;
|
|
4068
|
-
style: "normal" | "italic" | "oblique";
|
|
4069
4024
|
opacity: number;
|
|
4070
4025
|
} | undefined;
|
|
4071
4026
|
stroke?: {
|
|
@@ -4092,15 +4047,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4092
4047
|
animation?: {
|
|
4093
4048
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4094
4049
|
speed: number;
|
|
4095
|
-
style?: "character" | "word" | undefined;
|
|
4096
4050
|
duration?: number | undefined;
|
|
4051
|
+
style?: "character" | "word" | undefined;
|
|
4097
4052
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4098
4053
|
} | undefined;
|
|
4099
4054
|
customFonts?: {
|
|
4100
4055
|
src: string;
|
|
4101
4056
|
family: string;
|
|
4102
4057
|
weight: string | number;
|
|
4103
|
-
style: "normal" | "italic" | "oblique";
|
|
4104
4058
|
}[] | undefined;
|
|
4105
4059
|
}, {
|
|
4106
4060
|
type: "rich-text";
|
|
@@ -4126,7 +4080,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4126
4080
|
family?: string | undefined;
|
|
4127
4081
|
size?: number | undefined;
|
|
4128
4082
|
weight?: string | number | undefined;
|
|
4129
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
4130
4083
|
opacity?: number | undefined;
|
|
4131
4084
|
} | undefined;
|
|
4132
4085
|
stroke?: {
|
|
@@ -4152,9 +4105,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4152
4105
|
} | undefined;
|
|
4153
4106
|
animation?: {
|
|
4154
4107
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4155
|
-
style?: "character" | "word" | undefined;
|
|
4156
4108
|
speed?: number | undefined;
|
|
4157
4109
|
duration?: number | undefined;
|
|
4110
|
+
style?: "character" | "word" | undefined;
|
|
4158
4111
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4159
4112
|
} | undefined;
|
|
4160
4113
|
cacheEnabled?: boolean | undefined;
|
|
@@ -4163,7 +4116,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4163
4116
|
src: string;
|
|
4164
4117
|
family: string;
|
|
4165
4118
|
weight?: string | number | undefined;
|
|
4166
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
4167
4119
|
}[] | undefined;
|
|
4168
4120
|
}>, zod.ZodEffects<zod.ZodObject<{
|
|
4169
4121
|
type: zod.ZodLiteral<"shape">;
|
|
@@ -4567,7 +4519,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4567
4519
|
family: string;
|
|
4568
4520
|
size: number;
|
|
4569
4521
|
weight: string | number;
|
|
4570
|
-
style: "normal" | "italic" | "oblique";
|
|
4571
4522
|
opacity: number;
|
|
4572
4523
|
} | undefined;
|
|
4573
4524
|
stroke?: {
|
|
@@ -4594,15 +4545,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4594
4545
|
animation?: {
|
|
4595
4546
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4596
4547
|
speed: number;
|
|
4597
|
-
style?: "character" | "word" | undefined;
|
|
4598
4548
|
duration?: number | undefined;
|
|
4549
|
+
style?: "character" | "word" | undefined;
|
|
4599
4550
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4600
4551
|
} | undefined;
|
|
4601
4552
|
customFonts?: {
|
|
4602
4553
|
src: string;
|
|
4603
4554
|
family: string;
|
|
4604
4555
|
weight: string | number;
|
|
4605
|
-
style: "normal" | "italic" | "oblique";
|
|
4606
4556
|
}[] | undefined;
|
|
4607
4557
|
} | {
|
|
4608
4558
|
type: "shape";
|
|
@@ -4725,7 +4675,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4725
4675
|
family?: string | undefined;
|
|
4726
4676
|
size?: number | undefined;
|
|
4727
4677
|
weight?: string | number | undefined;
|
|
4728
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
4729
4678
|
opacity?: number | undefined;
|
|
4730
4679
|
} | undefined;
|
|
4731
4680
|
stroke?: {
|
|
@@ -4751,9 +4700,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4751
4700
|
} | undefined;
|
|
4752
4701
|
animation?: {
|
|
4753
4702
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
4754
|
-
style?: "character" | "word" | undefined;
|
|
4755
4703
|
speed?: number | undefined;
|
|
4756
4704
|
duration?: number | undefined;
|
|
4705
|
+
style?: "character" | "word" | undefined;
|
|
4757
4706
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
4758
4707
|
} | undefined;
|
|
4759
4708
|
cacheEnabled?: boolean | undefined;
|
|
@@ -4762,7 +4711,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4762
4711
|
src: string;
|
|
4763
4712
|
family: string;
|
|
4764
4713
|
weight?: string | number | undefined;
|
|
4765
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
4766
4714
|
}[] | undefined;
|
|
4767
4715
|
} | {
|
|
4768
4716
|
type: "shape";
|
|
@@ -5103,7 +5051,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5103
5051
|
family: string;
|
|
5104
5052
|
size: number;
|
|
5105
5053
|
weight: string | number;
|
|
5106
|
-
style: "normal" | "italic" | "oblique";
|
|
5107
5054
|
opacity: number;
|
|
5108
5055
|
} | undefined;
|
|
5109
5056
|
stroke?: {
|
|
@@ -5130,15 +5077,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5130
5077
|
animation?: {
|
|
5131
5078
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
5132
5079
|
speed: number;
|
|
5133
|
-
style?: "character" | "word" | undefined;
|
|
5134
5080
|
duration?: number | undefined;
|
|
5081
|
+
style?: "character" | "word" | undefined;
|
|
5135
5082
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
5136
5083
|
} | undefined;
|
|
5137
5084
|
customFonts?: {
|
|
5138
5085
|
src: string;
|
|
5139
5086
|
family: string;
|
|
5140
5087
|
weight: string | number;
|
|
5141
|
-
style: "normal" | "italic" | "oblique";
|
|
5142
5088
|
}[] | undefined;
|
|
5143
5089
|
} | {
|
|
5144
5090
|
type: "shape";
|
|
@@ -5320,7 +5266,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5320
5266
|
family?: string | undefined;
|
|
5321
5267
|
size?: number | undefined;
|
|
5322
5268
|
weight?: string | number | undefined;
|
|
5323
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
5324
5269
|
opacity?: number | undefined;
|
|
5325
5270
|
} | undefined;
|
|
5326
5271
|
stroke?: {
|
|
@@ -5346,9 +5291,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5346
5291
|
} | undefined;
|
|
5347
5292
|
animation?: {
|
|
5348
5293
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
5349
|
-
style?: "character" | "word" | undefined;
|
|
5350
5294
|
speed?: number | undefined;
|
|
5351
5295
|
duration?: number | undefined;
|
|
5296
|
+
style?: "character" | "word" | undefined;
|
|
5352
5297
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
5353
5298
|
} | undefined;
|
|
5354
5299
|
cacheEnabled?: boolean | undefined;
|
|
@@ -5357,7 +5302,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5357
5302
|
src: string;
|
|
5358
5303
|
family: string;
|
|
5359
5304
|
weight?: string | number | undefined;
|
|
5360
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
5361
5305
|
}[] | undefined;
|
|
5362
5306
|
} | {
|
|
5363
5307
|
type: "shape";
|
|
@@ -5541,7 +5485,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5541
5485
|
family: string;
|
|
5542
5486
|
size: number;
|
|
5543
5487
|
weight: string | number;
|
|
5544
|
-
style: "normal" | "italic" | "oblique";
|
|
5545
5488
|
opacity: number;
|
|
5546
5489
|
} | undefined;
|
|
5547
5490
|
stroke?: {
|
|
@@ -5568,15 +5511,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5568
5511
|
animation?: {
|
|
5569
5512
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
5570
5513
|
speed: number;
|
|
5571
|
-
style?: "character" | "word" | undefined;
|
|
5572
5514
|
duration?: number | undefined;
|
|
5515
|
+
style?: "character" | "word" | undefined;
|
|
5573
5516
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
5574
5517
|
} | undefined;
|
|
5575
5518
|
customFonts?: {
|
|
5576
5519
|
src: string;
|
|
5577
5520
|
family: string;
|
|
5578
5521
|
weight: string | number;
|
|
5579
|
-
style: "normal" | "italic" | "oblique";
|
|
5580
5522
|
}[] | undefined;
|
|
5581
5523
|
} | {
|
|
5582
5524
|
type: "shape";
|
|
@@ -5761,7 +5703,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5761
5703
|
family: string;
|
|
5762
5704
|
size: number;
|
|
5763
5705
|
weight: string | number;
|
|
5764
|
-
style: "normal" | "italic" | "oblique";
|
|
5765
5706
|
opacity: number;
|
|
5766
5707
|
} | undefined;
|
|
5767
5708
|
stroke?: {
|
|
@@ -5788,15 +5729,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5788
5729
|
animation?: {
|
|
5789
5730
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
5790
5731
|
speed: number;
|
|
5791
|
-
style?: "character" | "word" | undefined;
|
|
5792
5732
|
duration?: number | undefined;
|
|
5733
|
+
style?: "character" | "word" | undefined;
|
|
5793
5734
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
5794
5735
|
} | undefined;
|
|
5795
5736
|
customFonts?: {
|
|
5796
5737
|
src: string;
|
|
5797
5738
|
family: string;
|
|
5798
5739
|
weight: string | number;
|
|
5799
|
-
style: "normal" | "italic" | "oblique";
|
|
5800
5740
|
}[] | undefined;
|
|
5801
5741
|
} | {
|
|
5802
5742
|
type: "shape";
|
|
@@ -5977,7 +5917,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
5977
5917
|
family?: string | undefined;
|
|
5978
5918
|
size?: number | undefined;
|
|
5979
5919
|
weight?: string | number | undefined;
|
|
5980
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
5981
5920
|
opacity?: number | undefined;
|
|
5982
5921
|
} | undefined;
|
|
5983
5922
|
stroke?: {
|
|
@@ -6003,9 +5942,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6003
5942
|
} | undefined;
|
|
6004
5943
|
animation?: {
|
|
6005
5944
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
6006
|
-
style?: "character" | "word" | undefined;
|
|
6007
5945
|
speed?: number | undefined;
|
|
6008
5946
|
duration?: number | undefined;
|
|
5947
|
+
style?: "character" | "word" | undefined;
|
|
6009
5948
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
6010
5949
|
} | undefined;
|
|
6011
5950
|
cacheEnabled?: boolean | undefined;
|
|
@@ -6014,7 +5953,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6014
5953
|
src: string;
|
|
6015
5954
|
family: string;
|
|
6016
5955
|
weight?: string | number | undefined;
|
|
6017
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
6018
5956
|
}[] | undefined;
|
|
6019
5957
|
} | {
|
|
6020
5958
|
type: "shape";
|
|
@@ -6200,7 +6138,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6200
6138
|
family: string;
|
|
6201
6139
|
size: number;
|
|
6202
6140
|
weight: string | number;
|
|
6203
|
-
style: "normal" | "italic" | "oblique";
|
|
6204
6141
|
opacity: number;
|
|
6205
6142
|
} | undefined;
|
|
6206
6143
|
stroke?: {
|
|
@@ -6227,15 +6164,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6227
6164
|
animation?: {
|
|
6228
6165
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
6229
6166
|
speed: number;
|
|
6230
|
-
style?: "character" | "word" | undefined;
|
|
6231
6167
|
duration?: number | undefined;
|
|
6168
|
+
style?: "character" | "word" | undefined;
|
|
6232
6169
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
6233
6170
|
} | undefined;
|
|
6234
6171
|
customFonts?: {
|
|
6235
6172
|
src: string;
|
|
6236
6173
|
family: string;
|
|
6237
6174
|
weight: string | number;
|
|
6238
|
-
style: "normal" | "italic" | "oblique";
|
|
6239
6175
|
}[] | undefined;
|
|
6240
6176
|
} | {
|
|
6241
6177
|
type: "shape";
|
|
@@ -6420,7 +6356,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6420
6356
|
family: string;
|
|
6421
6357
|
size: number;
|
|
6422
6358
|
weight: string | number;
|
|
6423
|
-
style: "normal" | "italic" | "oblique";
|
|
6424
6359
|
opacity: number;
|
|
6425
6360
|
} | undefined;
|
|
6426
6361
|
stroke?: {
|
|
@@ -6447,15 +6382,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6447
6382
|
animation?: {
|
|
6448
6383
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
6449
6384
|
speed: number;
|
|
6450
|
-
style?: "character" | "word" | undefined;
|
|
6451
6385
|
duration?: number | undefined;
|
|
6386
|
+
style?: "character" | "word" | undefined;
|
|
6452
6387
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
6453
6388
|
} | undefined;
|
|
6454
6389
|
customFonts?: {
|
|
6455
6390
|
src: string;
|
|
6456
6391
|
family: string;
|
|
6457
6392
|
weight: string | number;
|
|
6458
|
-
style: "normal" | "italic" | "oblique";
|
|
6459
6393
|
}[] | undefined;
|
|
6460
6394
|
} | {
|
|
6461
6395
|
type: "shape";
|
|
@@ -6638,7 +6572,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6638
6572
|
family?: string | undefined;
|
|
6639
6573
|
size?: number | undefined;
|
|
6640
6574
|
weight?: string | number | undefined;
|
|
6641
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
6642
6575
|
opacity?: number | undefined;
|
|
6643
6576
|
} | undefined;
|
|
6644
6577
|
stroke?: {
|
|
@@ -6664,9 +6597,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6664
6597
|
} | undefined;
|
|
6665
6598
|
animation?: {
|
|
6666
6599
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
6667
|
-
style?: "character" | "word" | undefined;
|
|
6668
6600
|
speed?: number | undefined;
|
|
6669
6601
|
duration?: number | undefined;
|
|
6602
|
+
style?: "character" | "word" | undefined;
|
|
6670
6603
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
6671
6604
|
} | undefined;
|
|
6672
6605
|
cacheEnabled?: boolean | undefined;
|
|
@@ -6675,7 +6608,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6675
6608
|
src: string;
|
|
6676
6609
|
family: string;
|
|
6677
6610
|
weight?: string | number | undefined;
|
|
6678
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
6679
6611
|
}[] | undefined;
|
|
6680
6612
|
} | {
|
|
6681
6613
|
type: "shape";
|
|
@@ -6863,7 +6795,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6863
6795
|
family: string;
|
|
6864
6796
|
size: number;
|
|
6865
6797
|
weight: string | number;
|
|
6866
|
-
style: "normal" | "italic" | "oblique";
|
|
6867
6798
|
opacity: number;
|
|
6868
6799
|
} | undefined;
|
|
6869
6800
|
stroke?: {
|
|
@@ -6890,15 +6821,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
6890
6821
|
animation?: {
|
|
6891
6822
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
6892
6823
|
speed: number;
|
|
6893
|
-
style?: "character" | "word" | undefined;
|
|
6894
6824
|
duration?: number | undefined;
|
|
6825
|
+
style?: "character" | "word" | undefined;
|
|
6895
6826
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
6896
6827
|
} | undefined;
|
|
6897
6828
|
customFonts?: {
|
|
6898
6829
|
src: string;
|
|
6899
6830
|
family: string;
|
|
6900
6831
|
weight: string | number;
|
|
6901
|
-
style: "normal" | "italic" | "oblique";
|
|
6902
6832
|
}[] | undefined;
|
|
6903
6833
|
} | {
|
|
6904
6834
|
type: "shape";
|
|
@@ -7083,7 +7013,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7083
7013
|
family: string;
|
|
7084
7014
|
size: number;
|
|
7085
7015
|
weight: string | number;
|
|
7086
|
-
style: "normal" | "italic" | "oblique";
|
|
7087
7016
|
opacity: number;
|
|
7088
7017
|
} | undefined;
|
|
7089
7018
|
stroke?: {
|
|
@@ -7110,15 +7039,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7110
7039
|
animation?: {
|
|
7111
7040
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
7112
7041
|
speed: number;
|
|
7113
|
-
style?: "character" | "word" | undefined;
|
|
7114
7042
|
duration?: number | undefined;
|
|
7043
|
+
style?: "character" | "word" | undefined;
|
|
7115
7044
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
7116
7045
|
} | undefined;
|
|
7117
7046
|
customFonts?: {
|
|
7118
7047
|
src: string;
|
|
7119
7048
|
family: string;
|
|
7120
7049
|
weight: string | number;
|
|
7121
|
-
style: "normal" | "italic" | "oblique";
|
|
7122
7050
|
}[] | undefined;
|
|
7123
7051
|
} | {
|
|
7124
7052
|
type: "shape";
|
|
@@ -7307,7 +7235,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7307
7235
|
family?: string | undefined;
|
|
7308
7236
|
size?: number | undefined;
|
|
7309
7237
|
weight?: string | number | undefined;
|
|
7310
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
7311
7238
|
opacity?: number | undefined;
|
|
7312
7239
|
} | undefined;
|
|
7313
7240
|
stroke?: {
|
|
@@ -7333,9 +7260,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7333
7260
|
} | undefined;
|
|
7334
7261
|
animation?: {
|
|
7335
7262
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
7336
|
-
style?: "character" | "word" | undefined;
|
|
7337
7263
|
speed?: number | undefined;
|
|
7338
7264
|
duration?: number | undefined;
|
|
7265
|
+
style?: "character" | "word" | undefined;
|
|
7339
7266
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
7340
7267
|
} | undefined;
|
|
7341
7268
|
cacheEnabled?: boolean | undefined;
|
|
@@ -7344,7 +7271,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7344
7271
|
src: string;
|
|
7345
7272
|
family: string;
|
|
7346
7273
|
weight?: string | number | undefined;
|
|
7347
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
7348
7274
|
}[] | undefined;
|
|
7349
7275
|
} | {
|
|
7350
7276
|
type: "shape";
|
|
@@ -7566,7 +7492,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7566
7492
|
family: string;
|
|
7567
7493
|
size: number;
|
|
7568
7494
|
weight: string | number;
|
|
7569
|
-
style: "normal" | "italic" | "oblique";
|
|
7570
7495
|
opacity: number;
|
|
7571
7496
|
} | undefined;
|
|
7572
7497
|
stroke?: {
|
|
@@ -7593,15 +7518,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7593
7518
|
animation?: {
|
|
7594
7519
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
7595
7520
|
speed: number;
|
|
7596
|
-
style?: "character" | "word" | undefined;
|
|
7597
7521
|
duration?: number | undefined;
|
|
7522
|
+
style?: "character" | "word" | undefined;
|
|
7598
7523
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
7599
7524
|
} | undefined;
|
|
7600
7525
|
customFonts?: {
|
|
7601
7526
|
src: string;
|
|
7602
7527
|
family: string;
|
|
7603
7528
|
weight: string | number;
|
|
7604
|
-
style: "normal" | "italic" | "oblique";
|
|
7605
7529
|
}[] | undefined;
|
|
7606
7530
|
} | {
|
|
7607
7531
|
type: "shape";
|
|
@@ -7786,7 +7710,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7786
7710
|
family: string;
|
|
7787
7711
|
size: number;
|
|
7788
7712
|
weight: string | number;
|
|
7789
|
-
style: "normal" | "italic" | "oblique";
|
|
7790
7713
|
opacity: number;
|
|
7791
7714
|
} | undefined;
|
|
7792
7715
|
stroke?: {
|
|
@@ -7813,15 +7736,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
7813
7736
|
animation?: {
|
|
7814
7737
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
7815
7738
|
speed: number;
|
|
7816
|
-
style?: "character" | "word" | undefined;
|
|
7817
7739
|
duration?: number | undefined;
|
|
7740
|
+
style?: "character" | "word" | undefined;
|
|
7818
7741
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
7819
7742
|
} | undefined;
|
|
7820
7743
|
customFonts?: {
|
|
7821
7744
|
src: string;
|
|
7822
7745
|
family: string;
|
|
7823
7746
|
weight: string | number;
|
|
7824
|
-
style: "normal" | "italic" | "oblique";
|
|
7825
7747
|
}[] | undefined;
|
|
7826
7748
|
} | {
|
|
7827
7749
|
type: "shape";
|
|
@@ -8020,7 +7942,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
8020
7942
|
family?: string | undefined;
|
|
8021
7943
|
size?: number | undefined;
|
|
8022
7944
|
weight?: string | number | undefined;
|
|
8023
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8024
7945
|
opacity?: number | undefined;
|
|
8025
7946
|
} | undefined;
|
|
8026
7947
|
stroke?: {
|
|
@@ -8046,9 +7967,9 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
8046
7967
|
} | undefined;
|
|
8047
7968
|
animation?: {
|
|
8048
7969
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
8049
|
-
style?: "character" | "word" | undefined;
|
|
8050
7970
|
speed?: number | undefined;
|
|
8051
7971
|
duration?: number | undefined;
|
|
7972
|
+
style?: "character" | "word" | undefined;
|
|
8052
7973
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
8053
7974
|
} | undefined;
|
|
8054
7975
|
cacheEnabled?: boolean | undefined;
|
|
@@ -8057,7 +7978,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
8057
7978
|
src: string;
|
|
8058
7979
|
family: string;
|
|
8059
7980
|
weight?: string | number | undefined;
|
|
8060
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8061
7981
|
}[] | undefined;
|
|
8062
7982
|
} | {
|
|
8063
7983
|
type: "shape";
|
|
@@ -8484,7 +8404,6 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8484
8404
|
family: zod.ZodDefault<zod.ZodString>;
|
|
8485
8405
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
8486
8406
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
8487
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
8488
8407
|
color: zod.ZodDefault<zod.ZodString>;
|
|
8489
8408
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
8490
8409
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -8492,14 +8411,12 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8492
8411
|
family: string;
|
|
8493
8412
|
size: number;
|
|
8494
8413
|
weight: string | number;
|
|
8495
|
-
style: "normal" | "italic" | "oblique";
|
|
8496
8414
|
opacity: number;
|
|
8497
8415
|
}, {
|
|
8498
8416
|
color?: string | undefined;
|
|
8499
8417
|
family?: string | undefined;
|
|
8500
8418
|
size?: number | undefined;
|
|
8501
8419
|
weight?: string | number | undefined;
|
|
8502
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8503
8420
|
opacity?: number | undefined;
|
|
8504
8421
|
}>>;
|
|
8505
8422
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -8626,14 +8543,14 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8626
8543
|
}, "strict", zod.ZodTypeAny, {
|
|
8627
8544
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
8628
8545
|
speed: number;
|
|
8629
|
-
style?: "character" | "word" | undefined;
|
|
8630
8546
|
duration?: number | undefined;
|
|
8547
|
+
style?: "character" | "word" | undefined;
|
|
8631
8548
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
8632
8549
|
}, {
|
|
8633
8550
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
8634
|
-
style?: "character" | "word" | undefined;
|
|
8635
8551
|
speed?: number | undefined;
|
|
8636
8552
|
duration?: number | undefined;
|
|
8553
|
+
style?: "character" | "word" | undefined;
|
|
8637
8554
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
8638
8555
|
}>>;
|
|
8639
8556
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -8642,17 +8559,14 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8642
8559
|
src: zod.ZodString;
|
|
8643
8560
|
family: zod.ZodString;
|
|
8644
8561
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
8645
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
8646
8562
|
}, "strict", zod.ZodTypeAny, {
|
|
8647
8563
|
src: string;
|
|
8648
8564
|
family: string;
|
|
8649
8565
|
weight: string | number;
|
|
8650
|
-
style: "normal" | "italic" | "oblique";
|
|
8651
8566
|
}, {
|
|
8652
8567
|
src: string;
|
|
8653
8568
|
family: string;
|
|
8654
8569
|
weight?: string | number | undefined;
|
|
8655
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8656
8570
|
}>, "many">>;
|
|
8657
8571
|
}, "strict", zod.ZodTypeAny, {
|
|
8658
8572
|
type: "rich-text";
|
|
@@ -8680,7 +8594,6 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8680
8594
|
family: string;
|
|
8681
8595
|
size: number;
|
|
8682
8596
|
weight: string | number;
|
|
8683
|
-
style: "normal" | "italic" | "oblique";
|
|
8684
8597
|
opacity: number;
|
|
8685
8598
|
} | undefined;
|
|
8686
8599
|
stroke?: {
|
|
@@ -8707,15 +8620,14 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8707
8620
|
animation?: {
|
|
8708
8621
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
8709
8622
|
speed: number;
|
|
8710
|
-
style?: "character" | "word" | undefined;
|
|
8711
8623
|
duration?: number | undefined;
|
|
8624
|
+
style?: "character" | "word" | undefined;
|
|
8712
8625
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
8713
8626
|
} | undefined;
|
|
8714
8627
|
customFonts?: {
|
|
8715
8628
|
src: string;
|
|
8716
8629
|
family: string;
|
|
8717
8630
|
weight: string | number;
|
|
8718
|
-
style: "normal" | "italic" | "oblique";
|
|
8719
8631
|
}[] | undefined;
|
|
8720
8632
|
}, {
|
|
8721
8633
|
type: "rich-text";
|
|
@@ -8741,7 +8653,6 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8741
8653
|
family?: string | undefined;
|
|
8742
8654
|
size?: number | undefined;
|
|
8743
8655
|
weight?: string | number | undefined;
|
|
8744
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8745
8656
|
opacity?: number | undefined;
|
|
8746
8657
|
} | undefined;
|
|
8747
8658
|
stroke?: {
|
|
@@ -8767,9 +8678,9 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8767
8678
|
} | undefined;
|
|
8768
8679
|
animation?: {
|
|
8769
8680
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
8770
|
-
style?: "character" | "word" | undefined;
|
|
8771
8681
|
speed?: number | undefined;
|
|
8772
8682
|
duration?: number | undefined;
|
|
8683
|
+
style?: "character" | "word" | undefined;
|
|
8773
8684
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
8774
8685
|
} | undefined;
|
|
8775
8686
|
cacheEnabled?: boolean | undefined;
|
|
@@ -8778,7 +8689,6 @@ export declare const RichTextAssetSchema: zod.ZodObject<{
|
|
|
8778
8689
|
src: string;
|
|
8779
8690
|
family: string;
|
|
8780
8691
|
weight?: string | number | undefined;
|
|
8781
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
8782
8692
|
}[] | undefined;
|
|
8783
8693
|
}>;
|
|
8784
8694
|
|
|
@@ -9425,7 +9335,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9425
9335
|
family: zod.ZodDefault<zod.ZodString>;
|
|
9426
9336
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
9427
9337
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
9428
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
9429
9338
|
color: zod.ZodDefault<zod.ZodString>;
|
|
9430
9339
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
9431
9340
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -9433,14 +9342,12 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9433
9342
|
family: string;
|
|
9434
9343
|
size: number;
|
|
9435
9344
|
weight: string | number;
|
|
9436
|
-
style: "normal" | "italic" | "oblique";
|
|
9437
9345
|
opacity: number;
|
|
9438
9346
|
}, {
|
|
9439
9347
|
color?: string | undefined;
|
|
9440
9348
|
family?: string | undefined;
|
|
9441
9349
|
size?: number | undefined;
|
|
9442
9350
|
weight?: string | number | undefined;
|
|
9443
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
9444
9351
|
opacity?: number | undefined;
|
|
9445
9352
|
}>>;
|
|
9446
9353
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -9567,14 +9474,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9567
9474
|
}, "strict", zod.ZodTypeAny, {
|
|
9568
9475
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
9569
9476
|
speed: number;
|
|
9570
|
-
style?: "character" | "word" | undefined;
|
|
9571
9477
|
duration?: number | undefined;
|
|
9478
|
+
style?: "character" | "word" | undefined;
|
|
9572
9479
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
9573
9480
|
}, {
|
|
9574
9481
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
9575
|
-
style?: "character" | "word" | undefined;
|
|
9576
9482
|
speed?: number | undefined;
|
|
9577
9483
|
duration?: number | undefined;
|
|
9484
|
+
style?: "character" | "word" | undefined;
|
|
9578
9485
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
9579
9486
|
}>>;
|
|
9580
9487
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -9583,17 +9490,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9583
9490
|
src: zod.ZodString;
|
|
9584
9491
|
family: zod.ZodString;
|
|
9585
9492
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
9586
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
9587
9493
|
}, "strict", zod.ZodTypeAny, {
|
|
9588
9494
|
src: string;
|
|
9589
9495
|
family: string;
|
|
9590
9496
|
weight: string | number;
|
|
9591
|
-
style: "normal" | "italic" | "oblique";
|
|
9592
9497
|
}, {
|
|
9593
9498
|
src: string;
|
|
9594
9499
|
family: string;
|
|
9595
9500
|
weight?: string | number | undefined;
|
|
9596
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
9597
9501
|
}>, "many">>;
|
|
9598
9502
|
}, "strict", zod.ZodTypeAny, {
|
|
9599
9503
|
type: "rich-text";
|
|
@@ -9621,7 +9525,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9621
9525
|
family: string;
|
|
9622
9526
|
size: number;
|
|
9623
9527
|
weight: string | number;
|
|
9624
|
-
style: "normal" | "italic" | "oblique";
|
|
9625
9528
|
opacity: number;
|
|
9626
9529
|
} | undefined;
|
|
9627
9530
|
stroke?: {
|
|
@@ -9648,15 +9551,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9648
9551
|
animation?: {
|
|
9649
9552
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
9650
9553
|
speed: number;
|
|
9651
|
-
style?: "character" | "word" | undefined;
|
|
9652
9554
|
duration?: number | undefined;
|
|
9555
|
+
style?: "character" | "word" | undefined;
|
|
9653
9556
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
9654
9557
|
} | undefined;
|
|
9655
9558
|
customFonts?: {
|
|
9656
9559
|
src: string;
|
|
9657
9560
|
family: string;
|
|
9658
9561
|
weight: string | number;
|
|
9659
|
-
style: "normal" | "italic" | "oblique";
|
|
9660
9562
|
}[] | undefined;
|
|
9661
9563
|
}, {
|
|
9662
9564
|
type: "rich-text";
|
|
@@ -9682,7 +9584,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9682
9584
|
family?: string | undefined;
|
|
9683
9585
|
size?: number | undefined;
|
|
9684
9586
|
weight?: string | number | undefined;
|
|
9685
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
9686
9587
|
opacity?: number | undefined;
|
|
9687
9588
|
} | undefined;
|
|
9688
9589
|
stroke?: {
|
|
@@ -9708,9 +9609,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9708
9609
|
} | undefined;
|
|
9709
9610
|
animation?: {
|
|
9710
9611
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
9711
|
-
style?: "character" | "word" | undefined;
|
|
9712
9612
|
speed?: number | undefined;
|
|
9713
9613
|
duration?: number | undefined;
|
|
9614
|
+
style?: "character" | "word" | undefined;
|
|
9714
9615
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
9715
9616
|
} | undefined;
|
|
9716
9617
|
cacheEnabled?: boolean | undefined;
|
|
@@ -9719,7 +9620,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
9719
9620
|
src: string;
|
|
9720
9621
|
family: string;
|
|
9721
9622
|
weight?: string | number | undefined;
|
|
9722
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
9723
9623
|
}[] | undefined;
|
|
9724
9624
|
}>, zod.ZodEffects<zod.ZodObject<{
|
|
9725
9625
|
type: zod.ZodLiteral<"shape">;
|
|
@@ -10123,7 +10023,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10123
10023
|
family: string;
|
|
10124
10024
|
size: number;
|
|
10125
10025
|
weight: string | number;
|
|
10126
|
-
style: "normal" | "italic" | "oblique";
|
|
10127
10026
|
opacity: number;
|
|
10128
10027
|
} | undefined;
|
|
10129
10028
|
stroke?: {
|
|
@@ -10150,15 +10049,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10150
10049
|
animation?: {
|
|
10151
10050
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
10152
10051
|
speed: number;
|
|
10153
|
-
style?: "character" | "word" | undefined;
|
|
10154
10052
|
duration?: number | undefined;
|
|
10053
|
+
style?: "character" | "word" | undefined;
|
|
10155
10054
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
10156
10055
|
} | undefined;
|
|
10157
10056
|
customFonts?: {
|
|
10158
10057
|
src: string;
|
|
10159
10058
|
family: string;
|
|
10160
10059
|
weight: string | number;
|
|
10161
|
-
style: "normal" | "italic" | "oblique";
|
|
10162
10060
|
}[] | undefined;
|
|
10163
10061
|
} | {
|
|
10164
10062
|
type: "shape";
|
|
@@ -10281,7 +10179,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10281
10179
|
family?: string | undefined;
|
|
10282
10180
|
size?: number | undefined;
|
|
10283
10181
|
weight?: string | number | undefined;
|
|
10284
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
10285
10182
|
opacity?: number | undefined;
|
|
10286
10183
|
} | undefined;
|
|
10287
10184
|
stroke?: {
|
|
@@ -10307,9 +10204,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10307
10204
|
} | undefined;
|
|
10308
10205
|
animation?: {
|
|
10309
10206
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
10310
|
-
style?: "character" | "word" | undefined;
|
|
10311
10207
|
speed?: number | undefined;
|
|
10312
10208
|
duration?: number | undefined;
|
|
10209
|
+
style?: "character" | "word" | undefined;
|
|
10313
10210
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
10314
10211
|
} | undefined;
|
|
10315
10212
|
cacheEnabled?: boolean | undefined;
|
|
@@ -10318,7 +10215,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10318
10215
|
src: string;
|
|
10319
10216
|
family: string;
|
|
10320
10217
|
weight?: string | number | undefined;
|
|
10321
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
10322
10218
|
}[] | undefined;
|
|
10323
10219
|
} | {
|
|
10324
10220
|
type: "shape";
|
|
@@ -10659,7 +10555,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10659
10555
|
family: string;
|
|
10660
10556
|
size: number;
|
|
10661
10557
|
weight: string | number;
|
|
10662
|
-
style: "normal" | "italic" | "oblique";
|
|
10663
10558
|
opacity: number;
|
|
10664
10559
|
} | undefined;
|
|
10665
10560
|
stroke?: {
|
|
@@ -10686,15 +10581,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10686
10581
|
animation?: {
|
|
10687
10582
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
10688
10583
|
speed: number;
|
|
10689
|
-
style?: "character" | "word" | undefined;
|
|
10690
10584
|
duration?: number | undefined;
|
|
10585
|
+
style?: "character" | "word" | undefined;
|
|
10691
10586
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
10692
10587
|
} | undefined;
|
|
10693
10588
|
customFonts?: {
|
|
10694
10589
|
src: string;
|
|
10695
10590
|
family: string;
|
|
10696
10591
|
weight: string | number;
|
|
10697
|
-
style: "normal" | "italic" | "oblique";
|
|
10698
10592
|
}[] | undefined;
|
|
10699
10593
|
} | {
|
|
10700
10594
|
type: "shape";
|
|
@@ -10876,7 +10770,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10876
10770
|
family?: string | undefined;
|
|
10877
10771
|
size?: number | undefined;
|
|
10878
10772
|
weight?: string | number | undefined;
|
|
10879
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
10880
10773
|
opacity?: number | undefined;
|
|
10881
10774
|
} | undefined;
|
|
10882
10775
|
stroke?: {
|
|
@@ -10902,9 +10795,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10902
10795
|
} | undefined;
|
|
10903
10796
|
animation?: {
|
|
10904
10797
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
10905
|
-
style?: "character" | "word" | undefined;
|
|
10906
10798
|
speed?: number | undefined;
|
|
10907
10799
|
duration?: number | undefined;
|
|
10800
|
+
style?: "character" | "word" | undefined;
|
|
10908
10801
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
10909
10802
|
} | undefined;
|
|
10910
10803
|
cacheEnabled?: boolean | undefined;
|
|
@@ -10913,7 +10806,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
10913
10806
|
src: string;
|
|
10914
10807
|
family: string;
|
|
10915
10808
|
weight?: string | number | undefined;
|
|
10916
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
10917
10809
|
}[] | undefined;
|
|
10918
10810
|
} | {
|
|
10919
10811
|
type: "shape";
|
|
@@ -11097,7 +10989,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11097
10989
|
family: string;
|
|
11098
10990
|
size: number;
|
|
11099
10991
|
weight: string | number;
|
|
11100
|
-
style: "normal" | "italic" | "oblique";
|
|
11101
10992
|
opacity: number;
|
|
11102
10993
|
} | undefined;
|
|
11103
10994
|
stroke?: {
|
|
@@ -11124,15 +11015,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11124
11015
|
animation?: {
|
|
11125
11016
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
11126
11017
|
speed: number;
|
|
11127
|
-
style?: "character" | "word" | undefined;
|
|
11128
11018
|
duration?: number | undefined;
|
|
11019
|
+
style?: "character" | "word" | undefined;
|
|
11129
11020
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
11130
11021
|
} | undefined;
|
|
11131
11022
|
customFonts?: {
|
|
11132
11023
|
src: string;
|
|
11133
11024
|
family: string;
|
|
11134
11025
|
weight: string | number;
|
|
11135
|
-
style: "normal" | "italic" | "oblique";
|
|
11136
11026
|
}[] | undefined;
|
|
11137
11027
|
} | {
|
|
11138
11028
|
type: "shape";
|
|
@@ -11317,7 +11207,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11317
11207
|
family: string;
|
|
11318
11208
|
size: number;
|
|
11319
11209
|
weight: string | number;
|
|
11320
|
-
style: "normal" | "italic" | "oblique";
|
|
11321
11210
|
opacity: number;
|
|
11322
11211
|
} | undefined;
|
|
11323
11212
|
stroke?: {
|
|
@@ -11344,15 +11233,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11344
11233
|
animation?: {
|
|
11345
11234
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
11346
11235
|
speed: number;
|
|
11347
|
-
style?: "character" | "word" | undefined;
|
|
11348
11236
|
duration?: number | undefined;
|
|
11237
|
+
style?: "character" | "word" | undefined;
|
|
11349
11238
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
11350
11239
|
} | undefined;
|
|
11351
11240
|
customFonts?: {
|
|
11352
11241
|
src: string;
|
|
11353
11242
|
family: string;
|
|
11354
11243
|
weight: string | number;
|
|
11355
|
-
style: "normal" | "italic" | "oblique";
|
|
11356
11244
|
}[] | undefined;
|
|
11357
11245
|
} | {
|
|
11358
11246
|
type: "shape";
|
|
@@ -11533,7 +11421,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11533
11421
|
family?: string | undefined;
|
|
11534
11422
|
size?: number | undefined;
|
|
11535
11423
|
weight?: string | number | undefined;
|
|
11536
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
11537
11424
|
opacity?: number | undefined;
|
|
11538
11425
|
} | undefined;
|
|
11539
11426
|
stroke?: {
|
|
@@ -11559,9 +11446,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11559
11446
|
} | undefined;
|
|
11560
11447
|
animation?: {
|
|
11561
11448
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
11562
|
-
style?: "character" | "word" | undefined;
|
|
11563
11449
|
speed?: number | undefined;
|
|
11564
11450
|
duration?: number | undefined;
|
|
11451
|
+
style?: "character" | "word" | undefined;
|
|
11565
11452
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
11566
11453
|
} | undefined;
|
|
11567
11454
|
cacheEnabled?: boolean | undefined;
|
|
@@ -11570,7 +11457,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11570
11457
|
src: string;
|
|
11571
11458
|
family: string;
|
|
11572
11459
|
weight?: string | number | undefined;
|
|
11573
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
11574
11460
|
}[] | undefined;
|
|
11575
11461
|
} | {
|
|
11576
11462
|
type: "shape";
|
|
@@ -11756,7 +11642,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11756
11642
|
family: string;
|
|
11757
11643
|
size: number;
|
|
11758
11644
|
weight: string | number;
|
|
11759
|
-
style: "normal" | "italic" | "oblique";
|
|
11760
11645
|
opacity: number;
|
|
11761
11646
|
} | undefined;
|
|
11762
11647
|
stroke?: {
|
|
@@ -11783,15 +11668,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11783
11668
|
animation?: {
|
|
11784
11669
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
11785
11670
|
speed: number;
|
|
11786
|
-
style?: "character" | "word" | undefined;
|
|
11787
11671
|
duration?: number | undefined;
|
|
11672
|
+
style?: "character" | "word" | undefined;
|
|
11788
11673
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
11789
11674
|
} | undefined;
|
|
11790
11675
|
customFonts?: {
|
|
11791
11676
|
src: string;
|
|
11792
11677
|
family: string;
|
|
11793
11678
|
weight: string | number;
|
|
11794
|
-
style: "normal" | "italic" | "oblique";
|
|
11795
11679
|
}[] | undefined;
|
|
11796
11680
|
} | {
|
|
11797
11681
|
type: "shape";
|
|
@@ -11976,7 +11860,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
11976
11860
|
family: string;
|
|
11977
11861
|
size: number;
|
|
11978
11862
|
weight: string | number;
|
|
11979
|
-
style: "normal" | "italic" | "oblique";
|
|
11980
11863
|
opacity: number;
|
|
11981
11864
|
} | undefined;
|
|
11982
11865
|
stroke?: {
|
|
@@ -12003,15 +11886,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12003
11886
|
animation?: {
|
|
12004
11887
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
12005
11888
|
speed: number;
|
|
12006
|
-
style?: "character" | "word" | undefined;
|
|
12007
11889
|
duration?: number | undefined;
|
|
11890
|
+
style?: "character" | "word" | undefined;
|
|
12008
11891
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
12009
11892
|
} | undefined;
|
|
12010
11893
|
customFonts?: {
|
|
12011
11894
|
src: string;
|
|
12012
11895
|
family: string;
|
|
12013
11896
|
weight: string | number;
|
|
12014
|
-
style: "normal" | "italic" | "oblique";
|
|
12015
11897
|
}[] | undefined;
|
|
12016
11898
|
} | {
|
|
12017
11899
|
type: "shape";
|
|
@@ -12194,7 +12076,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12194
12076
|
family?: string | undefined;
|
|
12195
12077
|
size?: number | undefined;
|
|
12196
12078
|
weight?: string | number | undefined;
|
|
12197
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
12198
12079
|
opacity?: number | undefined;
|
|
12199
12080
|
} | undefined;
|
|
12200
12081
|
stroke?: {
|
|
@@ -12220,9 +12101,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12220
12101
|
} | undefined;
|
|
12221
12102
|
animation?: {
|
|
12222
12103
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
12223
|
-
style?: "character" | "word" | undefined;
|
|
12224
12104
|
speed?: number | undefined;
|
|
12225
12105
|
duration?: number | undefined;
|
|
12106
|
+
style?: "character" | "word" | undefined;
|
|
12226
12107
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
12227
12108
|
} | undefined;
|
|
12228
12109
|
cacheEnabled?: boolean | undefined;
|
|
@@ -12231,7 +12112,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12231
12112
|
src: string;
|
|
12232
12113
|
family: string;
|
|
12233
12114
|
weight?: string | number | undefined;
|
|
12234
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
12235
12115
|
}[] | undefined;
|
|
12236
12116
|
} | {
|
|
12237
12117
|
type: "shape";
|
|
@@ -12419,7 +12299,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12419
12299
|
family: string;
|
|
12420
12300
|
size: number;
|
|
12421
12301
|
weight: string | number;
|
|
12422
|
-
style: "normal" | "italic" | "oblique";
|
|
12423
12302
|
opacity: number;
|
|
12424
12303
|
} | undefined;
|
|
12425
12304
|
stroke?: {
|
|
@@ -12446,15 +12325,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12446
12325
|
animation?: {
|
|
12447
12326
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
12448
12327
|
speed: number;
|
|
12449
|
-
style?: "character" | "word" | undefined;
|
|
12450
12328
|
duration?: number | undefined;
|
|
12329
|
+
style?: "character" | "word" | undefined;
|
|
12451
12330
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
12452
12331
|
} | undefined;
|
|
12453
12332
|
customFonts?: {
|
|
12454
12333
|
src: string;
|
|
12455
12334
|
family: string;
|
|
12456
12335
|
weight: string | number;
|
|
12457
|
-
style: "normal" | "italic" | "oblique";
|
|
12458
12336
|
}[] | undefined;
|
|
12459
12337
|
} | {
|
|
12460
12338
|
type: "shape";
|
|
@@ -12639,7 +12517,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12639
12517
|
family: string;
|
|
12640
12518
|
size: number;
|
|
12641
12519
|
weight: string | number;
|
|
12642
|
-
style: "normal" | "italic" | "oblique";
|
|
12643
12520
|
opacity: number;
|
|
12644
12521
|
} | undefined;
|
|
12645
12522
|
stroke?: {
|
|
@@ -12666,15 +12543,14 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12666
12543
|
animation?: {
|
|
12667
12544
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
12668
12545
|
speed: number;
|
|
12669
|
-
style?: "character" | "word" | undefined;
|
|
12670
12546
|
duration?: number | undefined;
|
|
12547
|
+
style?: "character" | "word" | undefined;
|
|
12671
12548
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
12672
12549
|
} | undefined;
|
|
12673
12550
|
customFonts?: {
|
|
12674
12551
|
src: string;
|
|
12675
12552
|
family: string;
|
|
12676
12553
|
weight: string | number;
|
|
12677
|
-
style: "normal" | "italic" | "oblique";
|
|
12678
12554
|
}[] | undefined;
|
|
12679
12555
|
} | {
|
|
12680
12556
|
type: "shape";
|
|
@@ -12863,7 +12739,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12863
12739
|
family?: string | undefined;
|
|
12864
12740
|
size?: number | undefined;
|
|
12865
12741
|
weight?: string | number | undefined;
|
|
12866
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
12867
12742
|
opacity?: number | undefined;
|
|
12868
12743
|
} | undefined;
|
|
12869
12744
|
stroke?: {
|
|
@@ -12889,9 +12764,9 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12889
12764
|
} | undefined;
|
|
12890
12765
|
animation?: {
|
|
12891
12766
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
12892
|
-
style?: "character" | "word" | undefined;
|
|
12893
12767
|
speed?: number | undefined;
|
|
12894
12768
|
duration?: number | undefined;
|
|
12769
|
+
style?: "character" | "word" | undefined;
|
|
12895
12770
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
12896
12771
|
} | undefined;
|
|
12897
12772
|
cacheEnabled?: boolean | undefined;
|
|
@@ -12900,7 +12775,6 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
12900
12775
|
src: string;
|
|
12901
12776
|
family: string;
|
|
12902
12777
|
weight?: string | number | undefined;
|
|
12903
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
12904
12778
|
}[] | undefined;
|
|
12905
12779
|
} | {
|
|
12906
12780
|
type: "shape";
|
|
@@ -13242,7 +13116,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13242
13116
|
family: zod.ZodDefault<zod.ZodString>;
|
|
13243
13117
|
size: zod.ZodDefault<zod.ZodNumber>;
|
|
13244
13118
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
13245
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
13246
13119
|
color: zod.ZodDefault<zod.ZodString>;
|
|
13247
13120
|
opacity: zod.ZodDefault<zod.ZodNumber>;
|
|
13248
13121
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -13250,14 +13123,12 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13250
13123
|
family: string;
|
|
13251
13124
|
size: number;
|
|
13252
13125
|
weight: string | number;
|
|
13253
|
-
style: "normal" | "italic" | "oblique";
|
|
13254
13126
|
opacity: number;
|
|
13255
13127
|
}, {
|
|
13256
13128
|
color?: string | undefined;
|
|
13257
13129
|
family?: string | undefined;
|
|
13258
13130
|
size?: number | undefined;
|
|
13259
13131
|
weight?: string | number | undefined;
|
|
13260
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
13261
13132
|
opacity?: number | undefined;
|
|
13262
13133
|
}>>;
|
|
13263
13134
|
style: zod.ZodOptional<zod.ZodObject<{
|
|
@@ -13384,14 +13255,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13384
13255
|
}, "strict", zod.ZodTypeAny, {
|
|
13385
13256
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
13386
13257
|
speed: number;
|
|
13387
|
-
style?: "character" | "word" | undefined;
|
|
13388
13258
|
duration?: number | undefined;
|
|
13259
|
+
style?: "character" | "word" | undefined;
|
|
13389
13260
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
13390
13261
|
}, {
|
|
13391
13262
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
13392
|
-
style?: "character" | "word" | undefined;
|
|
13393
13263
|
speed?: number | undefined;
|
|
13394
13264
|
duration?: number | undefined;
|
|
13265
|
+
style?: "character" | "word" | undefined;
|
|
13395
13266
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
13396
13267
|
}>>;
|
|
13397
13268
|
cacheEnabled: zod.ZodDefault<zod.ZodBoolean>;
|
|
@@ -13400,17 +13271,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13400
13271
|
src: zod.ZodString;
|
|
13401
13272
|
family: zod.ZodString;
|
|
13402
13273
|
weight: zod.ZodDefault<zod.ZodUnion<[zod.ZodString, zod.ZodNumber]>>;
|
|
13403
|
-
style: zod.ZodDefault<zod.ZodEnum<["normal", "italic", "oblique"]>>;
|
|
13404
13274
|
}, "strict", zod.ZodTypeAny, {
|
|
13405
13275
|
src: string;
|
|
13406
13276
|
family: string;
|
|
13407
13277
|
weight: string | number;
|
|
13408
|
-
style: "normal" | "italic" | "oblique";
|
|
13409
13278
|
}, {
|
|
13410
13279
|
src: string;
|
|
13411
13280
|
family: string;
|
|
13412
13281
|
weight?: string | number | undefined;
|
|
13413
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
13414
13282
|
}>, "many">>;
|
|
13415
13283
|
}, "strict", zod.ZodTypeAny, {
|
|
13416
13284
|
type: "rich-text";
|
|
@@ -13438,7 +13306,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13438
13306
|
family: string;
|
|
13439
13307
|
size: number;
|
|
13440
13308
|
weight: string | number;
|
|
13441
|
-
style: "normal" | "italic" | "oblique";
|
|
13442
13309
|
opacity: number;
|
|
13443
13310
|
} | undefined;
|
|
13444
13311
|
stroke?: {
|
|
@@ -13465,15 +13332,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13465
13332
|
animation?: {
|
|
13466
13333
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
13467
13334
|
speed: number;
|
|
13468
|
-
style?: "character" | "word" | undefined;
|
|
13469
13335
|
duration?: number | undefined;
|
|
13336
|
+
style?: "character" | "word" | undefined;
|
|
13470
13337
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
13471
13338
|
} | undefined;
|
|
13472
13339
|
customFonts?: {
|
|
13473
13340
|
src: string;
|
|
13474
13341
|
family: string;
|
|
13475
13342
|
weight: string | number;
|
|
13476
|
-
style: "normal" | "italic" | "oblique";
|
|
13477
13343
|
}[] | undefined;
|
|
13478
13344
|
}, {
|
|
13479
13345
|
type: "rich-text";
|
|
@@ -13499,7 +13365,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13499
13365
|
family?: string | undefined;
|
|
13500
13366
|
size?: number | undefined;
|
|
13501
13367
|
weight?: string | number | undefined;
|
|
13502
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
13503
13368
|
opacity?: number | undefined;
|
|
13504
13369
|
} | undefined;
|
|
13505
13370
|
stroke?: {
|
|
@@ -13525,9 +13390,9 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13525
13390
|
} | undefined;
|
|
13526
13391
|
animation?: {
|
|
13527
13392
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
13528
|
-
style?: "character" | "word" | undefined;
|
|
13529
13393
|
speed?: number | undefined;
|
|
13530
13394
|
duration?: number | undefined;
|
|
13395
|
+
style?: "character" | "word" | undefined;
|
|
13531
13396
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
13532
13397
|
} | undefined;
|
|
13533
13398
|
cacheEnabled?: boolean | undefined;
|
|
@@ -13536,7 +13401,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13536
13401
|
src: string;
|
|
13537
13402
|
family: string;
|
|
13538
13403
|
weight?: string | number | undefined;
|
|
13539
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
13540
13404
|
}[] | undefined;
|
|
13541
13405
|
}>, zod.ZodEffects<zod.ZodObject<{
|
|
13542
13406
|
type: zod.ZodLiteral<"shape">;
|
|
@@ -13940,7 +13804,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13940
13804
|
family: string;
|
|
13941
13805
|
size: number;
|
|
13942
13806
|
weight: string | number;
|
|
13943
|
-
style: "normal" | "italic" | "oblique";
|
|
13944
13807
|
opacity: number;
|
|
13945
13808
|
} | undefined;
|
|
13946
13809
|
stroke?: {
|
|
@@ -13967,15 +13830,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
13967
13830
|
animation?: {
|
|
13968
13831
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
13969
13832
|
speed: number;
|
|
13970
|
-
style?: "character" | "word" | undefined;
|
|
13971
13833
|
duration?: number | undefined;
|
|
13834
|
+
style?: "character" | "word" | undefined;
|
|
13972
13835
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
13973
13836
|
} | undefined;
|
|
13974
13837
|
customFonts?: {
|
|
13975
13838
|
src: string;
|
|
13976
13839
|
family: string;
|
|
13977
13840
|
weight: string | number;
|
|
13978
|
-
style: "normal" | "italic" | "oblique";
|
|
13979
13841
|
}[] | undefined;
|
|
13980
13842
|
} | {
|
|
13981
13843
|
type: "shape";
|
|
@@ -14098,7 +13960,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14098
13960
|
family?: string | undefined;
|
|
14099
13961
|
size?: number | undefined;
|
|
14100
13962
|
weight?: string | number | undefined;
|
|
14101
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
14102
13963
|
opacity?: number | undefined;
|
|
14103
13964
|
} | undefined;
|
|
14104
13965
|
stroke?: {
|
|
@@ -14124,9 +13985,9 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14124
13985
|
} | undefined;
|
|
14125
13986
|
animation?: {
|
|
14126
13987
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
14127
|
-
style?: "character" | "word" | undefined;
|
|
14128
13988
|
speed?: number | undefined;
|
|
14129
13989
|
duration?: number | undefined;
|
|
13990
|
+
style?: "character" | "word" | undefined;
|
|
14130
13991
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
14131
13992
|
} | undefined;
|
|
14132
13993
|
cacheEnabled?: boolean | undefined;
|
|
@@ -14135,7 +13996,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14135
13996
|
src: string;
|
|
14136
13997
|
family: string;
|
|
14137
13998
|
weight?: string | number | undefined;
|
|
14138
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
14139
13999
|
}[] | undefined;
|
|
14140
14000
|
} | {
|
|
14141
14001
|
type: "shape";
|
|
@@ -14476,7 +14336,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14476
14336
|
family: string;
|
|
14477
14337
|
size: number;
|
|
14478
14338
|
weight: string | number;
|
|
14479
|
-
style: "normal" | "italic" | "oblique";
|
|
14480
14339
|
opacity: number;
|
|
14481
14340
|
} | undefined;
|
|
14482
14341
|
stroke?: {
|
|
@@ -14503,15 +14362,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14503
14362
|
animation?: {
|
|
14504
14363
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
14505
14364
|
speed: number;
|
|
14506
|
-
style?: "character" | "word" | undefined;
|
|
14507
14365
|
duration?: number | undefined;
|
|
14366
|
+
style?: "character" | "word" | undefined;
|
|
14508
14367
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
14509
14368
|
} | undefined;
|
|
14510
14369
|
customFonts?: {
|
|
14511
14370
|
src: string;
|
|
14512
14371
|
family: string;
|
|
14513
14372
|
weight: string | number;
|
|
14514
|
-
style: "normal" | "italic" | "oblique";
|
|
14515
14373
|
}[] | undefined;
|
|
14516
14374
|
} | {
|
|
14517
14375
|
type: "shape";
|
|
@@ -14693,7 +14551,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14693
14551
|
family?: string | undefined;
|
|
14694
14552
|
size?: number | undefined;
|
|
14695
14553
|
weight?: string | number | undefined;
|
|
14696
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
14697
14554
|
opacity?: number | undefined;
|
|
14698
14555
|
} | undefined;
|
|
14699
14556
|
stroke?: {
|
|
@@ -14719,9 +14576,9 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14719
14576
|
} | undefined;
|
|
14720
14577
|
animation?: {
|
|
14721
14578
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
14722
|
-
style?: "character" | "word" | undefined;
|
|
14723
14579
|
speed?: number | undefined;
|
|
14724
14580
|
duration?: number | undefined;
|
|
14581
|
+
style?: "character" | "word" | undefined;
|
|
14725
14582
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
14726
14583
|
} | undefined;
|
|
14727
14584
|
cacheEnabled?: boolean | undefined;
|
|
@@ -14730,7 +14587,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14730
14587
|
src: string;
|
|
14731
14588
|
family: string;
|
|
14732
14589
|
weight?: string | number | undefined;
|
|
14733
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
14734
14590
|
}[] | undefined;
|
|
14735
14591
|
} | {
|
|
14736
14592
|
type: "shape";
|
|
@@ -14914,7 +14770,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14914
14770
|
family: string;
|
|
14915
14771
|
size: number;
|
|
14916
14772
|
weight: string | number;
|
|
14917
|
-
style: "normal" | "italic" | "oblique";
|
|
14918
14773
|
opacity: number;
|
|
14919
14774
|
} | undefined;
|
|
14920
14775
|
stroke?: {
|
|
@@ -14941,15 +14796,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
14941
14796
|
animation?: {
|
|
14942
14797
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
14943
14798
|
speed: number;
|
|
14944
|
-
style?: "character" | "word" | undefined;
|
|
14945
14799
|
duration?: number | undefined;
|
|
14800
|
+
style?: "character" | "word" | undefined;
|
|
14946
14801
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
14947
14802
|
} | undefined;
|
|
14948
14803
|
customFonts?: {
|
|
14949
14804
|
src: string;
|
|
14950
14805
|
family: string;
|
|
14951
14806
|
weight: string | number;
|
|
14952
|
-
style: "normal" | "italic" | "oblique";
|
|
14953
14807
|
}[] | undefined;
|
|
14954
14808
|
} | {
|
|
14955
14809
|
type: "shape";
|
|
@@ -15134,7 +14988,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15134
14988
|
family: string;
|
|
15135
14989
|
size: number;
|
|
15136
14990
|
weight: string | number;
|
|
15137
|
-
style: "normal" | "italic" | "oblique";
|
|
15138
14991
|
opacity: number;
|
|
15139
14992
|
} | undefined;
|
|
15140
14993
|
stroke?: {
|
|
@@ -15161,15 +15014,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15161
15014
|
animation?: {
|
|
15162
15015
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
15163
15016
|
speed: number;
|
|
15164
|
-
style?: "character" | "word" | undefined;
|
|
15165
15017
|
duration?: number | undefined;
|
|
15018
|
+
style?: "character" | "word" | undefined;
|
|
15166
15019
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
15167
15020
|
} | undefined;
|
|
15168
15021
|
customFonts?: {
|
|
15169
15022
|
src: string;
|
|
15170
15023
|
family: string;
|
|
15171
15024
|
weight: string | number;
|
|
15172
|
-
style: "normal" | "italic" | "oblique";
|
|
15173
15025
|
}[] | undefined;
|
|
15174
15026
|
} | {
|
|
15175
15027
|
type: "shape";
|
|
@@ -15350,7 +15202,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15350
15202
|
family?: string | undefined;
|
|
15351
15203
|
size?: number | undefined;
|
|
15352
15204
|
weight?: string | number | undefined;
|
|
15353
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
15354
15205
|
opacity?: number | undefined;
|
|
15355
15206
|
} | undefined;
|
|
15356
15207
|
stroke?: {
|
|
@@ -15376,9 +15227,9 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15376
15227
|
} | undefined;
|
|
15377
15228
|
animation?: {
|
|
15378
15229
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
15379
|
-
style?: "character" | "word" | undefined;
|
|
15380
15230
|
speed?: number | undefined;
|
|
15381
15231
|
duration?: number | undefined;
|
|
15232
|
+
style?: "character" | "word" | undefined;
|
|
15382
15233
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
15383
15234
|
} | undefined;
|
|
15384
15235
|
cacheEnabled?: boolean | undefined;
|
|
@@ -15387,7 +15238,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15387
15238
|
src: string;
|
|
15388
15239
|
family: string;
|
|
15389
15240
|
weight?: string | number | undefined;
|
|
15390
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
15391
15241
|
}[] | undefined;
|
|
15392
15242
|
} | {
|
|
15393
15243
|
type: "shape";
|
|
@@ -15573,7 +15423,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15573
15423
|
family: string;
|
|
15574
15424
|
size: number;
|
|
15575
15425
|
weight: string | number;
|
|
15576
|
-
style: "normal" | "italic" | "oblique";
|
|
15577
15426
|
opacity: number;
|
|
15578
15427
|
} | undefined;
|
|
15579
15428
|
stroke?: {
|
|
@@ -15600,15 +15449,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15600
15449
|
animation?: {
|
|
15601
15450
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
15602
15451
|
speed: number;
|
|
15603
|
-
style?: "character" | "word" | undefined;
|
|
15604
15452
|
duration?: number | undefined;
|
|
15453
|
+
style?: "character" | "word" | undefined;
|
|
15605
15454
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
15606
15455
|
} | undefined;
|
|
15607
15456
|
customFonts?: {
|
|
15608
15457
|
src: string;
|
|
15609
15458
|
family: string;
|
|
15610
15459
|
weight: string | number;
|
|
15611
|
-
style: "normal" | "italic" | "oblique";
|
|
15612
15460
|
}[] | undefined;
|
|
15613
15461
|
} | {
|
|
15614
15462
|
type: "shape";
|
|
@@ -15793,7 +15641,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15793
15641
|
family: string;
|
|
15794
15642
|
size: number;
|
|
15795
15643
|
weight: string | number;
|
|
15796
|
-
style: "normal" | "italic" | "oblique";
|
|
15797
15644
|
opacity: number;
|
|
15798
15645
|
} | undefined;
|
|
15799
15646
|
stroke?: {
|
|
@@ -15820,15 +15667,14 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
15820
15667
|
animation?: {
|
|
15821
15668
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
15822
15669
|
speed: number;
|
|
15823
|
-
style?: "character" | "word" | undefined;
|
|
15824
15670
|
duration?: number | undefined;
|
|
15671
|
+
style?: "character" | "word" | undefined;
|
|
15825
15672
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
15826
15673
|
} | undefined;
|
|
15827
15674
|
customFonts?: {
|
|
15828
15675
|
src: string;
|
|
15829
15676
|
family: string;
|
|
15830
15677
|
weight: string | number;
|
|
15831
|
-
style: "normal" | "italic" | "oblique";
|
|
15832
15678
|
}[] | undefined;
|
|
15833
15679
|
} | {
|
|
15834
15680
|
type: "shape";
|
|
@@ -16011,7 +15857,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
16011
15857
|
family?: string | undefined;
|
|
16012
15858
|
size?: number | undefined;
|
|
16013
15859
|
weight?: string | number | undefined;
|
|
16014
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
16015
15860
|
opacity?: number | undefined;
|
|
16016
15861
|
} | undefined;
|
|
16017
15862
|
stroke?: {
|
|
@@ -16037,9 +15882,9 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
16037
15882
|
} | undefined;
|
|
16038
15883
|
animation?: {
|
|
16039
15884
|
preset: "shift" | "fadeIn" | "slideIn" | "typewriter" | "ascend" | "movingLetters" | "bounce" | "elastic" | "pulse";
|
|
16040
|
-
style?: "character" | "word" | undefined;
|
|
16041
15885
|
speed?: number | undefined;
|
|
16042
15886
|
duration?: number | undefined;
|
|
15887
|
+
style?: "character" | "word" | undefined;
|
|
16043
15888
|
direction?: "right" | "left" | "up" | "down" | undefined;
|
|
16044
15889
|
} | undefined;
|
|
16045
15890
|
cacheEnabled?: boolean | undefined;
|
|
@@ -16048,7 +15893,6 @@ export declare const TrackSchema: zod.ZodObject<{
|
|
|
16048
15893
|
src: string;
|
|
16049
15894
|
family: string;
|
|
16050
15895
|
weight?: string | number | undefined;
|
|
16051
|
-
style?: "normal" | "italic" | "oblique" | undefined;
|
|
16052
15896
|
}[] | undefined;
|
|
16053
15897
|
} | {
|
|
16054
15898
|
type: "shape";
|