visualfries 0.1.3 → 0.1.4
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.
|
@@ -305,7 +305,7 @@ export declare const BackgroundShape: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject
|
|
|
305
305
|
ellipse: "ellipse";
|
|
306
306
|
circle: "circle";
|
|
307
307
|
}>>;
|
|
308
|
-
}, z.core.$strip>]
|
|
308
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
309
309
|
enabled: boolean;
|
|
310
310
|
color: string | {
|
|
311
311
|
type: "linear" | "radial";
|
|
@@ -329,7 +329,7 @@ export declare const BackgroundShape: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject
|
|
|
329
329
|
};
|
|
330
330
|
target: string;
|
|
331
331
|
radius: number;
|
|
332
|
-
}, string | {
|
|
332
|
+
} | null, string | {
|
|
333
333
|
type: "linear" | "radial";
|
|
334
334
|
colors: string[];
|
|
335
335
|
stops?: number[] | undefined;
|
|
@@ -348,7 +348,7 @@ export declare const BackgroundShape: z.ZodPipe<z.ZodUnion<readonly [z.ZodObject
|
|
|
348
348
|
};
|
|
349
349
|
target?: "wrapper" | "element" | undefined;
|
|
350
350
|
radius?: number | undefined;
|
|
351
|
-
}>>;
|
|
351
|
+
} | null>>;
|
|
352
352
|
/**
|
|
353
353
|
* General appearance schema for all components
|
|
354
354
|
*/
|
|
@@ -363,7 +363,7 @@ export declare const AppearanceShape: z.ZodObject<{
|
|
|
363
363
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
364
364
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
365
365
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
366
|
-
background: z.ZodOptional<z.
|
|
366
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
367
367
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
368
368
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
369
369
|
type: z.ZodEnum<{
|
|
@@ -397,7 +397,7 @@ export declare const AppearanceShape: z.ZodObject<{
|
|
|
397
397
|
ellipse: "ellipse";
|
|
398
398
|
circle: "circle";
|
|
399
399
|
}>>;
|
|
400
|
-
}, z.core.$strip>]
|
|
400
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
401
401
|
enabled: boolean;
|
|
402
402
|
color: string | {
|
|
403
403
|
type: "linear" | "radial";
|
|
@@ -421,7 +421,7 @@ export declare const AppearanceShape: z.ZodObject<{
|
|
|
421
421
|
};
|
|
422
422
|
target: string;
|
|
423
423
|
radius: number;
|
|
424
|
-
}, string | {
|
|
424
|
+
} | null, string | {
|
|
425
425
|
type: "linear" | "radial";
|
|
426
426
|
colors: string[];
|
|
427
427
|
stops?: number[] | undefined;
|
|
@@ -440,7 +440,7 @@ export declare const AppearanceShape: z.ZodObject<{
|
|
|
440
440
|
};
|
|
441
441
|
target?: "wrapper" | "element" | undefined;
|
|
442
442
|
radius?: number | undefined;
|
|
443
|
-
}
|
|
443
|
+
} | null>>>;
|
|
444
444
|
text: z.ZodOptional<z.ZodObject<{
|
|
445
445
|
fontFamily: z.ZodString;
|
|
446
446
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -2373,7 +2373,7 @@ export declare const ComponentBaseShape: z.ZodObject<{
|
|
|
2373
2373
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2374
2374
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2375
2375
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2376
|
-
background: z.ZodOptional<z.
|
|
2376
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
2377
2377
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
2378
2378
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2379
2379
|
type: z.ZodEnum<{
|
|
@@ -2407,7 +2407,7 @@ export declare const ComponentBaseShape: z.ZodObject<{
|
|
|
2407
2407
|
ellipse: "ellipse";
|
|
2408
2408
|
circle: "circle";
|
|
2409
2409
|
}>>;
|
|
2410
|
-
}, z.core.$strip>]
|
|
2410
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
2411
2411
|
enabled: boolean;
|
|
2412
2412
|
color: string | {
|
|
2413
2413
|
type: "linear" | "radial";
|
|
@@ -2431,7 +2431,7 @@ export declare const ComponentBaseShape: z.ZodObject<{
|
|
|
2431
2431
|
};
|
|
2432
2432
|
target: string;
|
|
2433
2433
|
radius: number;
|
|
2434
|
-
}, string | {
|
|
2434
|
+
} | null, string | {
|
|
2435
2435
|
type: "linear" | "radial";
|
|
2436
2436
|
colors: string[];
|
|
2437
2437
|
stops?: number[] | undefined;
|
|
@@ -2450,7 +2450,7 @@ export declare const ComponentBaseShape: z.ZodObject<{
|
|
|
2450
2450
|
};
|
|
2451
2451
|
target?: "wrapper" | "element" | undefined;
|
|
2452
2452
|
radius?: number | undefined;
|
|
2453
|
-
}
|
|
2453
|
+
} | null>>>;
|
|
2454
2454
|
text: z.ZodOptional<z.ZodObject<{
|
|
2455
2455
|
fontFamily: z.ZodString;
|
|
2456
2456
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -3508,7 +3508,7 @@ export declare const TextComponentShape: z.ZodObject<{
|
|
|
3508
3508
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3509
3509
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3510
3510
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3511
|
-
background: z.ZodOptional<z.
|
|
3511
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
3512
3512
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
3513
3513
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3514
3514
|
type: z.ZodEnum<{
|
|
@@ -3542,7 +3542,7 @@ export declare const TextComponentShape: z.ZodObject<{
|
|
|
3542
3542
|
ellipse: "ellipse";
|
|
3543
3543
|
circle: "circle";
|
|
3544
3544
|
}>>;
|
|
3545
|
-
}, z.core.$strip>]
|
|
3545
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
3546
3546
|
enabled: boolean;
|
|
3547
3547
|
color: string | {
|
|
3548
3548
|
type: "linear" | "radial";
|
|
@@ -3566,7 +3566,7 @@ export declare const TextComponentShape: z.ZodObject<{
|
|
|
3566
3566
|
};
|
|
3567
3567
|
target: string;
|
|
3568
3568
|
radius: number;
|
|
3569
|
-
}, string | {
|
|
3569
|
+
} | null, string | {
|
|
3570
3570
|
type: "linear" | "radial";
|
|
3571
3571
|
colors: string[];
|
|
3572
3572
|
stops?: number[] | undefined;
|
|
@@ -3585,7 +3585,7 @@ export declare const TextComponentShape: z.ZodObject<{
|
|
|
3585
3585
|
};
|
|
3586
3586
|
target?: "wrapper" | "element" | undefined;
|
|
3587
3587
|
radius?: number | undefined;
|
|
3588
|
-
}
|
|
3588
|
+
} | null>>>;
|
|
3589
3589
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
3590
3590
|
text: z.ZodObject<{
|
|
3591
3591
|
fontFamily: z.ZodString;
|
|
@@ -4660,7 +4660,7 @@ export declare const ImageComponentShape: z.ZodObject<{
|
|
|
4660
4660
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4661
4661
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4662
4662
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4663
|
-
background: z.ZodOptional<z.
|
|
4663
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
4664
4664
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
4665
4665
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4666
4666
|
type: z.ZodEnum<{
|
|
@@ -4694,7 +4694,7 @@ export declare const ImageComponentShape: z.ZodObject<{
|
|
|
4694
4694
|
ellipse: "ellipse";
|
|
4695
4695
|
circle: "circle";
|
|
4696
4696
|
}>>;
|
|
4697
|
-
}, z.core.$strip>]
|
|
4697
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
4698
4698
|
enabled: boolean;
|
|
4699
4699
|
color: string | {
|
|
4700
4700
|
type: "linear" | "radial";
|
|
@@ -4718,7 +4718,7 @@ export declare const ImageComponentShape: z.ZodObject<{
|
|
|
4718
4718
|
};
|
|
4719
4719
|
target: string;
|
|
4720
4720
|
radius: number;
|
|
4721
|
-
}, string | {
|
|
4721
|
+
} | null, string | {
|
|
4722
4722
|
type: "linear" | "radial";
|
|
4723
4723
|
colors: string[];
|
|
4724
4724
|
stops?: number[] | undefined;
|
|
@@ -4737,7 +4737,7 @@ export declare const ImageComponentShape: z.ZodObject<{
|
|
|
4737
4737
|
};
|
|
4738
4738
|
target?: "wrapper" | "element" | undefined;
|
|
4739
4739
|
radius?: number | undefined;
|
|
4740
|
-
}
|
|
4740
|
+
} | null>>>;
|
|
4741
4741
|
text: z.ZodOptional<z.ZodObject<{
|
|
4742
4742
|
fontFamily: z.ZodString;
|
|
4743
4743
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -5818,7 +5818,7 @@ export declare const GifComponentShape: z.ZodObject<{
|
|
|
5818
5818
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5819
5819
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5820
5820
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5821
|
-
background: z.ZodOptional<z.
|
|
5821
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
5822
5822
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
5823
5823
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5824
5824
|
type: z.ZodEnum<{
|
|
@@ -5852,7 +5852,7 @@ export declare const GifComponentShape: z.ZodObject<{
|
|
|
5852
5852
|
ellipse: "ellipse";
|
|
5853
5853
|
circle: "circle";
|
|
5854
5854
|
}>>;
|
|
5855
|
-
}, z.core.$strip>]
|
|
5855
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
5856
5856
|
enabled: boolean;
|
|
5857
5857
|
color: string | {
|
|
5858
5858
|
type: "linear" | "radial";
|
|
@@ -5876,7 +5876,7 @@ export declare const GifComponentShape: z.ZodObject<{
|
|
|
5876
5876
|
};
|
|
5877
5877
|
target: string;
|
|
5878
5878
|
radius: number;
|
|
5879
|
-
}, string | {
|
|
5879
|
+
} | null, string | {
|
|
5880
5880
|
type: "linear" | "radial";
|
|
5881
5881
|
colors: string[];
|
|
5882
5882
|
stops?: number[] | undefined;
|
|
@@ -5895,7 +5895,7 @@ export declare const GifComponentShape: z.ZodObject<{
|
|
|
5895
5895
|
};
|
|
5896
5896
|
target?: "wrapper" | "element" | undefined;
|
|
5897
5897
|
radius?: number | undefined;
|
|
5898
|
-
}
|
|
5898
|
+
} | null>>>;
|
|
5899
5899
|
text: z.ZodOptional<z.ZodObject<{
|
|
5900
5900
|
fontFamily: z.ZodString;
|
|
5901
5901
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -6974,7 +6974,7 @@ export declare const VideoComponentShape: z.ZodObject<{
|
|
|
6974
6974
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
6975
6975
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
6976
6976
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
6977
|
-
background: z.ZodOptional<z.
|
|
6977
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
6978
6978
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
6979
6979
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
6980
6980
|
type: z.ZodEnum<{
|
|
@@ -7008,7 +7008,7 @@ export declare const VideoComponentShape: z.ZodObject<{
|
|
|
7008
7008
|
ellipse: "ellipse";
|
|
7009
7009
|
circle: "circle";
|
|
7010
7010
|
}>>;
|
|
7011
|
-
}, z.core.$strip>]
|
|
7011
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
7012
7012
|
enabled: boolean;
|
|
7013
7013
|
color: string | {
|
|
7014
7014
|
type: "linear" | "radial";
|
|
@@ -7032,7 +7032,7 @@ export declare const VideoComponentShape: z.ZodObject<{
|
|
|
7032
7032
|
};
|
|
7033
7033
|
target: string;
|
|
7034
7034
|
radius: number;
|
|
7035
|
-
}, string | {
|
|
7035
|
+
} | null, string | {
|
|
7036
7036
|
type: "linear" | "radial";
|
|
7037
7037
|
colors: string[];
|
|
7038
7038
|
stops?: number[] | undefined;
|
|
@@ -7051,7 +7051,7 @@ export declare const VideoComponentShape: z.ZodObject<{
|
|
|
7051
7051
|
};
|
|
7052
7052
|
target?: "wrapper" | "element" | undefined;
|
|
7053
7053
|
radius?: number | undefined;
|
|
7054
|
-
}
|
|
7054
|
+
} | null>>>;
|
|
7055
7055
|
text: z.ZodOptional<z.ZodObject<{
|
|
7056
7056
|
fontFamily: z.ZodString;
|
|
7057
7057
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -8328,7 +8328,7 @@ export declare const ShapeComponentShape: z.ZodObject<{
|
|
|
8328
8328
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
8329
8329
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
8330
8330
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
8331
|
-
background: z.ZodOptional<z.
|
|
8331
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
8332
8332
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
8333
8333
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
8334
8334
|
type: z.ZodEnum<{
|
|
@@ -8362,7 +8362,7 @@ export declare const ShapeComponentShape: z.ZodObject<{
|
|
|
8362
8362
|
ellipse: "ellipse";
|
|
8363
8363
|
circle: "circle";
|
|
8364
8364
|
}>>;
|
|
8365
|
-
}, z.core.$strip>]
|
|
8365
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
8366
8366
|
enabled: boolean;
|
|
8367
8367
|
color: string | {
|
|
8368
8368
|
type: "linear" | "radial";
|
|
@@ -8386,7 +8386,7 @@ export declare const ShapeComponentShape: z.ZodObject<{
|
|
|
8386
8386
|
};
|
|
8387
8387
|
target: string;
|
|
8388
8388
|
radius: number;
|
|
8389
|
-
}, string | {
|
|
8389
|
+
} | null, string | {
|
|
8390
8390
|
type: "linear" | "radial";
|
|
8391
8391
|
colors: string[];
|
|
8392
8392
|
stops?: number[] | undefined;
|
|
@@ -8405,7 +8405,7 @@ export declare const ShapeComponentShape: z.ZodObject<{
|
|
|
8405
8405
|
};
|
|
8406
8406
|
target?: "wrapper" | "element" | undefined;
|
|
8407
8407
|
radius?: number | undefined;
|
|
8408
|
-
}
|
|
8408
|
+
} | null>>>;
|
|
8409
8409
|
text: z.ZodOptional<z.ZodObject<{
|
|
8410
8410
|
fontFamily: z.ZodString;
|
|
8411
8411
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -9494,7 +9494,7 @@ export declare const AudioComponentShape: z.ZodObject<{
|
|
|
9494
9494
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
9495
9495
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
9496
9496
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
9497
|
-
background: z.ZodOptional<z.
|
|
9497
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
9498
9498
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
9499
9499
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
9500
9500
|
type: z.ZodEnum<{
|
|
@@ -9528,7 +9528,7 @@ export declare const AudioComponentShape: z.ZodObject<{
|
|
|
9528
9528
|
ellipse: "ellipse";
|
|
9529
9529
|
circle: "circle";
|
|
9530
9530
|
}>>;
|
|
9531
|
-
}, z.core.$strip>]
|
|
9531
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
9532
9532
|
enabled: boolean;
|
|
9533
9533
|
color: string | {
|
|
9534
9534
|
type: "linear" | "radial";
|
|
@@ -9552,7 +9552,7 @@ export declare const AudioComponentShape: z.ZodObject<{
|
|
|
9552
9552
|
};
|
|
9553
9553
|
target: string;
|
|
9554
9554
|
radius: number;
|
|
9555
|
-
}, string | {
|
|
9555
|
+
} | null, string | {
|
|
9556
9556
|
type: "linear" | "radial";
|
|
9557
9557
|
colors: string[];
|
|
9558
9558
|
stops?: number[] | undefined;
|
|
@@ -9571,7 +9571,7 @@ export declare const AudioComponentShape: z.ZodObject<{
|
|
|
9571
9571
|
};
|
|
9572
9572
|
target?: "wrapper" | "element" | undefined;
|
|
9573
9573
|
radius?: number | undefined;
|
|
9574
|
-
}
|
|
9574
|
+
} | null>>>;
|
|
9575
9575
|
text: z.ZodOptional<z.ZodObject<{
|
|
9576
9576
|
fontFamily: z.ZodString;
|
|
9577
9577
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -12784,7 +12784,7 @@ export declare const SubtitleComponentShape: z.ZodObject<{
|
|
|
12784
12784
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12785
12785
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12786
12786
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12787
|
-
background: z.ZodOptional<z.
|
|
12787
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
12788
12788
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
12789
12789
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
12790
12790
|
type: z.ZodEnum<{
|
|
@@ -12818,7 +12818,7 @@ export declare const SubtitleComponentShape: z.ZodObject<{
|
|
|
12818
12818
|
ellipse: "ellipse";
|
|
12819
12819
|
circle: "circle";
|
|
12820
12820
|
}>>;
|
|
12821
|
-
}, z.core.$strip>]
|
|
12821
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
12822
12822
|
enabled: boolean;
|
|
12823
12823
|
color: string | {
|
|
12824
12824
|
type: "linear" | "radial";
|
|
@@ -12842,7 +12842,7 @@ export declare const SubtitleComponentShape: z.ZodObject<{
|
|
|
12842
12842
|
};
|
|
12843
12843
|
target: string;
|
|
12844
12844
|
radius: number;
|
|
12845
|
-
}, string | {
|
|
12845
|
+
} | null, string | {
|
|
12846
12846
|
type: "linear" | "radial";
|
|
12847
12847
|
colors: string[];
|
|
12848
12848
|
stops?: number[] | undefined;
|
|
@@ -12861,7 +12861,7 @@ export declare const SubtitleComponentShape: z.ZodObject<{
|
|
|
12861
12861
|
};
|
|
12862
12862
|
target?: "wrapper" | "element" | undefined;
|
|
12863
12863
|
radius?: number | undefined;
|
|
12864
|
-
}
|
|
12864
|
+
} | null>>>;
|
|
12865
12865
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
12866
12866
|
text: z.ZodObject<{
|
|
12867
12867
|
fontFamily: z.ZodString;
|
|
@@ -13974,7 +13974,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
13974
13974
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
13975
13975
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
13976
13976
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
13977
|
-
background: z.ZodOptional<z.
|
|
13977
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
13978
13978
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
13979
13979
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
13980
13980
|
type: z.ZodEnum<{
|
|
@@ -14008,7 +14008,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
14008
14008
|
ellipse: "ellipse";
|
|
14009
14009
|
circle: "circle";
|
|
14010
14010
|
}>>;
|
|
14011
|
-
}, z.core.$strip>]
|
|
14011
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
14012
14012
|
enabled: boolean;
|
|
14013
14013
|
color: string | {
|
|
14014
14014
|
type: "linear" | "radial";
|
|
@@ -14032,7 +14032,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
14032
14032
|
};
|
|
14033
14033
|
target: string;
|
|
14034
14034
|
radius: number;
|
|
14035
|
-
}, string | {
|
|
14035
|
+
} | null, string | {
|
|
14036
14036
|
type: "linear" | "radial";
|
|
14037
14037
|
colors: string[];
|
|
14038
14038
|
stops?: number[] | undefined;
|
|
@@ -14051,7 +14051,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
14051
14051
|
};
|
|
14052
14052
|
target?: "wrapper" | "element" | undefined;
|
|
14053
14053
|
radius?: number | undefined;
|
|
14054
|
-
}
|
|
14054
|
+
} | null>>>;
|
|
14055
14055
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
14056
14056
|
text: z.ZodObject<{
|
|
14057
14057
|
fontFamily: z.ZodString;
|
|
@@ -15122,7 +15122,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15122
15122
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15123
15123
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15124
15124
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15125
|
-
background: z.ZodOptional<z.
|
|
15125
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
15126
15126
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
15127
15127
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
15128
15128
|
type: z.ZodEnum<{
|
|
@@ -15156,7 +15156,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15156
15156
|
ellipse: "ellipse";
|
|
15157
15157
|
circle: "circle";
|
|
15158
15158
|
}>>;
|
|
15159
|
-
}, z.core.$strip>]
|
|
15159
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
15160
15160
|
enabled: boolean;
|
|
15161
15161
|
color: string | {
|
|
15162
15162
|
type: "linear" | "radial";
|
|
@@ -15180,7 +15180,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15180
15180
|
};
|
|
15181
15181
|
target: string;
|
|
15182
15182
|
radius: number;
|
|
15183
|
-
}, string | {
|
|
15183
|
+
} | null, string | {
|
|
15184
15184
|
type: "linear" | "radial";
|
|
15185
15185
|
colors: string[];
|
|
15186
15186
|
stops?: number[] | undefined;
|
|
@@ -15199,7 +15199,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
15199
15199
|
};
|
|
15200
15200
|
target?: "wrapper" | "element" | undefined;
|
|
15201
15201
|
radius?: number | undefined;
|
|
15202
|
-
}
|
|
15202
|
+
} | null>>>;
|
|
15203
15203
|
text: z.ZodOptional<z.ZodObject<{
|
|
15204
15204
|
fontFamily: z.ZodString;
|
|
15205
15205
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -16276,7 +16276,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16276
16276
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16277
16277
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16278
16278
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16279
|
-
background: z.ZodOptional<z.
|
|
16279
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
16280
16280
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
16281
16281
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
16282
16282
|
type: z.ZodEnum<{
|
|
@@ -16310,7 +16310,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16310
16310
|
ellipse: "ellipse";
|
|
16311
16311
|
circle: "circle";
|
|
16312
16312
|
}>>;
|
|
16313
|
-
}, z.core.$strip>]
|
|
16313
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
16314
16314
|
enabled: boolean;
|
|
16315
16315
|
color: string | {
|
|
16316
16316
|
type: "linear" | "radial";
|
|
@@ -16334,7 +16334,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16334
16334
|
};
|
|
16335
16335
|
target: string;
|
|
16336
16336
|
radius: number;
|
|
16337
|
-
}, string | {
|
|
16337
|
+
} | null, string | {
|
|
16338
16338
|
type: "linear" | "radial";
|
|
16339
16339
|
colors: string[];
|
|
16340
16340
|
stops?: number[] | undefined;
|
|
@@ -16353,7 +16353,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
16353
16353
|
};
|
|
16354
16354
|
target?: "wrapper" | "element" | undefined;
|
|
16355
16355
|
radius?: number | undefined;
|
|
16356
|
-
}
|
|
16356
|
+
} | null>>>;
|
|
16357
16357
|
text: z.ZodOptional<z.ZodObject<{
|
|
16358
16358
|
fontFamily: z.ZodString;
|
|
16359
16359
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -17428,7 +17428,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17428
17428
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17429
17429
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17430
17430
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17431
|
-
background: z.ZodOptional<z.
|
|
17431
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
17432
17432
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
17433
17433
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
17434
17434
|
type: z.ZodEnum<{
|
|
@@ -17462,7 +17462,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17462
17462
|
ellipse: "ellipse";
|
|
17463
17463
|
circle: "circle";
|
|
17464
17464
|
}>>;
|
|
17465
|
-
}, z.core.$strip>]
|
|
17465
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
17466
17466
|
enabled: boolean;
|
|
17467
17467
|
color: string | {
|
|
17468
17468
|
type: "linear" | "radial";
|
|
@@ -17486,7 +17486,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17486
17486
|
};
|
|
17487
17487
|
target: string;
|
|
17488
17488
|
radius: number;
|
|
17489
|
-
}, string | {
|
|
17489
|
+
} | null, string | {
|
|
17490
17490
|
type: "linear" | "radial";
|
|
17491
17491
|
colors: string[];
|
|
17492
17492
|
stops?: number[] | undefined;
|
|
@@ -17505,7 +17505,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
17505
17505
|
};
|
|
17506
17506
|
target?: "wrapper" | "element" | undefined;
|
|
17507
17507
|
radius?: number | undefined;
|
|
17508
|
-
}
|
|
17508
|
+
} | null>>>;
|
|
17509
17509
|
text: z.ZodOptional<z.ZodObject<{
|
|
17510
17510
|
fontFamily: z.ZodString;
|
|
17511
17511
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -18650,7 +18650,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18650
18650
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
18651
18651
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
18652
18652
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
18653
|
-
background: z.ZodOptional<z.
|
|
18653
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
18654
18654
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
18655
18655
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
18656
18656
|
type: z.ZodEnum<{
|
|
@@ -18684,7 +18684,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18684
18684
|
ellipse: "ellipse";
|
|
18685
18685
|
circle: "circle";
|
|
18686
18686
|
}>>;
|
|
18687
|
-
}, z.core.$strip>]
|
|
18687
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
18688
18688
|
enabled: boolean;
|
|
18689
18689
|
color: string | {
|
|
18690
18690
|
type: "linear" | "radial";
|
|
@@ -18708,7 +18708,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18708
18708
|
};
|
|
18709
18709
|
target: string;
|
|
18710
18710
|
radius: number;
|
|
18711
|
-
}, string | {
|
|
18711
|
+
} | null, string | {
|
|
18712
18712
|
type: "linear" | "radial";
|
|
18713
18713
|
colors: string[];
|
|
18714
18714
|
stops?: number[] | undefined;
|
|
@@ -18727,7 +18727,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
18727
18727
|
};
|
|
18728
18728
|
target?: "wrapper" | "element" | undefined;
|
|
18729
18729
|
radius?: number | undefined;
|
|
18730
|
-
}
|
|
18730
|
+
} | null>>>;
|
|
18731
18731
|
text: z.ZodOptional<z.ZodObject<{
|
|
18732
18732
|
fontFamily: z.ZodString;
|
|
18733
18733
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -19812,7 +19812,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19812
19812
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
19813
19813
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
19814
19814
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
19815
|
-
background: z.ZodOptional<z.
|
|
19815
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
19816
19816
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
19817
19817
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
19818
19818
|
type: z.ZodEnum<{
|
|
@@ -19846,7 +19846,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19846
19846
|
ellipse: "ellipse";
|
|
19847
19847
|
circle: "circle";
|
|
19848
19848
|
}>>;
|
|
19849
|
-
}, z.core.$strip>]
|
|
19849
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
19850
19850
|
enabled: boolean;
|
|
19851
19851
|
color: string | {
|
|
19852
19852
|
type: "linear" | "radial";
|
|
@@ -19870,7 +19870,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19870
19870
|
};
|
|
19871
19871
|
target: string;
|
|
19872
19872
|
radius: number;
|
|
19873
|
-
}, string | {
|
|
19873
|
+
} | null, string | {
|
|
19874
19874
|
type: "linear" | "radial";
|
|
19875
19875
|
colors: string[];
|
|
19876
19876
|
stops?: number[] | undefined;
|
|
@@ -19889,7 +19889,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
19889
19889
|
};
|
|
19890
19890
|
target?: "wrapper" | "element" | undefined;
|
|
19891
19891
|
radius?: number | undefined;
|
|
19892
|
-
}
|
|
19892
|
+
} | null>>>;
|
|
19893
19893
|
text: z.ZodOptional<z.ZodObject<{
|
|
19894
19894
|
fontFamily: z.ZodString;
|
|
19895
19895
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -23090,7 +23090,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
23090
23090
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
23091
23091
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
23092
23092
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
23093
|
-
background: z.ZodOptional<z.
|
|
23093
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
23094
23094
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
23095
23095
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
23096
23096
|
type: z.ZodEnum<{
|
|
@@ -23124,7 +23124,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
23124
23124
|
ellipse: "ellipse";
|
|
23125
23125
|
circle: "circle";
|
|
23126
23126
|
}>>;
|
|
23127
|
-
}, z.core.$strip>]
|
|
23127
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
23128
23128
|
enabled: boolean;
|
|
23129
23129
|
color: string | {
|
|
23130
23130
|
type: "linear" | "radial";
|
|
@@ -23148,7 +23148,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
23148
23148
|
};
|
|
23149
23149
|
target: string;
|
|
23150
23150
|
radius: number;
|
|
23151
|
-
}, string | {
|
|
23151
|
+
} | null, string | {
|
|
23152
23152
|
type: "linear" | "radial";
|
|
23153
23153
|
colors: string[];
|
|
23154
23154
|
stops?: number[] | undefined;
|
|
@@ -23167,7 +23167,7 @@ export declare const ComponentShape: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
23167
23167
|
};
|
|
23168
23168
|
target?: "wrapper" | "element" | undefined;
|
|
23169
23169
|
radius?: number | undefined;
|
|
23170
|
-
}
|
|
23170
|
+
} | null>>>;
|
|
23171
23171
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
23172
23172
|
text: z.ZodObject<{
|
|
23173
23173
|
fontFamily: z.ZodString;
|
|
@@ -103,8 +103,11 @@ const BgShape = z.object({
|
|
|
103
103
|
target: z.enum(['wrapper', 'element']).prefault('wrapper').optional(),
|
|
104
104
|
radius: z.number().min(0).prefault(0).optional()
|
|
105
105
|
});
|
|
106
|
-
export const BackgroundShape = z.union([BgShape, ColorTypeShape]).transform((value) => {
|
|
107
|
-
if (
|
|
106
|
+
export const BackgroundShape = z.union([BgShape, ColorTypeShape, z.null()]).transform((value) => {
|
|
107
|
+
if (value === null) {
|
|
108
|
+
return null;
|
|
109
|
+
}
|
|
110
|
+
if (typeof value === 'object' && 'enabled' in value) {
|
|
108
111
|
return value;
|
|
109
112
|
}
|
|
110
113
|
return {
|
|
@@ -128,7 +131,7 @@ export const AppearanceShape = z.object({
|
|
|
128
131
|
rotation: coerceValidNumber().prefault(0).optional(),
|
|
129
132
|
scaleX: coerceValidNumber().prefault(1).optional(),
|
|
130
133
|
scaleY: coerceValidNumber().prefault(1).optional(),
|
|
131
|
-
background: BackgroundShape.
|
|
134
|
+
background: BackgroundShape.optional(), // ColorTypeShape
|
|
132
135
|
// Text-specific appearance properties
|
|
133
136
|
text: TextAppearanceShape.optional(),
|
|
134
137
|
// Optional alignment properties
|
|
@@ -172,13 +175,15 @@ const GradientAppearanceShape = AppearanceShape.extend({
|
|
|
172
175
|
/**
|
|
173
176
|
* AI Emoji shape for subtitle components
|
|
174
177
|
*/
|
|
175
|
-
export const AIEmojiShape = z
|
|
178
|
+
export const AIEmojiShape = z
|
|
179
|
+
.object({
|
|
176
180
|
text: z.string(),
|
|
177
181
|
emoji: z.string(),
|
|
178
182
|
startAt: coerceValidNumber(),
|
|
179
183
|
endAt: coerceValidNumber(),
|
|
180
184
|
componentId: z.string().optional()
|
|
181
|
-
})
|
|
185
|
+
})
|
|
186
|
+
.refine((data) => data.startAt <= data.endAt, {
|
|
182
187
|
error: 'endAt must be greater than or equal to startAt',
|
|
183
188
|
path: ['endAt']
|
|
184
189
|
});
|
|
@@ -1177,7 +1177,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
1177
1177
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
1178
1178
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
1179
1179
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
1180
|
-
background: z.ZodOptional<z.
|
|
1180
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
1181
1181
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
1182
1182
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1183
1183
|
type: z.ZodEnum<{
|
|
@@ -1211,7 +1211,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
1211
1211
|
ellipse: "ellipse";
|
|
1212
1212
|
circle: "circle";
|
|
1213
1213
|
}>>;
|
|
1214
|
-
}, z.core.$strip>]
|
|
1214
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
1215
1215
|
enabled: boolean;
|
|
1216
1216
|
color: string | {
|
|
1217
1217
|
type: "linear" | "radial";
|
|
@@ -1235,7 +1235,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
1235
1235
|
};
|
|
1236
1236
|
target: string;
|
|
1237
1237
|
radius: number;
|
|
1238
|
-
}, string | {
|
|
1238
|
+
} | null, string | {
|
|
1239
1239
|
type: "linear" | "radial";
|
|
1240
1240
|
colors: string[];
|
|
1241
1241
|
stops?: number[] | undefined;
|
|
@@ -1254,7 +1254,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
1254
1254
|
};
|
|
1255
1255
|
target?: "wrapper" | "element" | undefined;
|
|
1256
1256
|
radius?: number | undefined;
|
|
1257
|
-
}
|
|
1257
|
+
} | null>>>;
|
|
1258
1258
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
1259
1259
|
text: z.ZodObject<{
|
|
1260
1260
|
fontFamily: z.ZodString;
|
|
@@ -2325,7 +2325,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
2325
2325
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2326
2326
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2327
2327
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
2328
|
-
background: z.ZodOptional<z.
|
|
2328
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
2329
2329
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
2330
2330
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
2331
2331
|
type: z.ZodEnum<{
|
|
@@ -2359,7 +2359,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
2359
2359
|
ellipse: "ellipse";
|
|
2360
2360
|
circle: "circle";
|
|
2361
2361
|
}>>;
|
|
2362
|
-
}, z.core.$strip>]
|
|
2362
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
2363
2363
|
enabled: boolean;
|
|
2364
2364
|
color: string | {
|
|
2365
2365
|
type: "linear" | "radial";
|
|
@@ -2383,7 +2383,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
2383
2383
|
};
|
|
2384
2384
|
target: string;
|
|
2385
2385
|
radius: number;
|
|
2386
|
-
}, string | {
|
|
2386
|
+
} | null, string | {
|
|
2387
2387
|
type: "linear" | "radial";
|
|
2388
2388
|
colors: string[];
|
|
2389
2389
|
stops?: number[] | undefined;
|
|
@@ -2402,7 +2402,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
2402
2402
|
};
|
|
2403
2403
|
target?: "wrapper" | "element" | undefined;
|
|
2404
2404
|
radius?: number | undefined;
|
|
2405
|
-
}
|
|
2405
|
+
} | null>>>;
|
|
2406
2406
|
text: z.ZodOptional<z.ZodObject<{
|
|
2407
2407
|
fontFamily: z.ZodString;
|
|
2408
2408
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -3479,7 +3479,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
3479
3479
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3480
3480
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3481
3481
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
3482
|
-
background: z.ZodOptional<z.
|
|
3482
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
3483
3483
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
3484
3484
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
3485
3485
|
type: z.ZodEnum<{
|
|
@@ -3513,7 +3513,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
3513
3513
|
ellipse: "ellipse";
|
|
3514
3514
|
circle: "circle";
|
|
3515
3515
|
}>>;
|
|
3516
|
-
}, z.core.$strip>]
|
|
3516
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
3517
3517
|
enabled: boolean;
|
|
3518
3518
|
color: string | {
|
|
3519
3519
|
type: "linear" | "radial";
|
|
@@ -3537,7 +3537,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
3537
3537
|
};
|
|
3538
3538
|
target: string;
|
|
3539
3539
|
radius: number;
|
|
3540
|
-
}, string | {
|
|
3540
|
+
} | null, string | {
|
|
3541
3541
|
type: "linear" | "radial";
|
|
3542
3542
|
colors: string[];
|
|
3543
3543
|
stops?: number[] | undefined;
|
|
@@ -3556,7 +3556,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
3556
3556
|
};
|
|
3557
3557
|
target?: "wrapper" | "element" | undefined;
|
|
3558
3558
|
radius?: number | undefined;
|
|
3559
|
-
}
|
|
3559
|
+
} | null>>>;
|
|
3560
3560
|
text: z.ZodOptional<z.ZodObject<{
|
|
3561
3561
|
fontFamily: z.ZodString;
|
|
3562
3562
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -4631,7 +4631,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
4631
4631
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4632
4632
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4633
4633
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
4634
|
-
background: z.ZodOptional<z.
|
|
4634
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
4635
4635
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
4636
4636
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
4637
4637
|
type: z.ZodEnum<{
|
|
@@ -4665,7 +4665,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
4665
4665
|
ellipse: "ellipse";
|
|
4666
4666
|
circle: "circle";
|
|
4667
4667
|
}>>;
|
|
4668
|
-
}, z.core.$strip>]
|
|
4668
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
4669
4669
|
enabled: boolean;
|
|
4670
4670
|
color: string | {
|
|
4671
4671
|
type: "linear" | "radial";
|
|
@@ -4689,7 +4689,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
4689
4689
|
};
|
|
4690
4690
|
target: string;
|
|
4691
4691
|
radius: number;
|
|
4692
|
-
}, string | {
|
|
4692
|
+
} | null, string | {
|
|
4693
4693
|
type: "linear" | "radial";
|
|
4694
4694
|
colors: string[];
|
|
4695
4695
|
stops?: number[] | undefined;
|
|
@@ -4708,7 +4708,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
4708
4708
|
};
|
|
4709
4709
|
target?: "wrapper" | "element" | undefined;
|
|
4710
4710
|
radius?: number | undefined;
|
|
4711
|
-
}
|
|
4711
|
+
} | null>>>;
|
|
4712
4712
|
text: z.ZodOptional<z.ZodObject<{
|
|
4713
4713
|
fontFamily: z.ZodString;
|
|
4714
4714
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -5853,7 +5853,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
5853
5853
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5854
5854
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5855
5855
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
5856
|
-
background: z.ZodOptional<z.
|
|
5856
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
5857
5857
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
5858
5858
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
5859
5859
|
type: z.ZodEnum<{
|
|
@@ -5887,7 +5887,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
5887
5887
|
ellipse: "ellipse";
|
|
5888
5888
|
circle: "circle";
|
|
5889
5889
|
}>>;
|
|
5890
|
-
}, z.core.$strip>]
|
|
5890
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
5891
5891
|
enabled: boolean;
|
|
5892
5892
|
color: string | {
|
|
5893
5893
|
type: "linear" | "radial";
|
|
@@ -5911,7 +5911,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
5911
5911
|
};
|
|
5912
5912
|
target: string;
|
|
5913
5913
|
radius: number;
|
|
5914
|
-
}, string | {
|
|
5914
|
+
} | null, string | {
|
|
5915
5915
|
type: "linear" | "radial";
|
|
5916
5916
|
colors: string[];
|
|
5917
5917
|
stops?: number[] | undefined;
|
|
@@ -5930,7 +5930,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
5930
5930
|
};
|
|
5931
5931
|
target?: "wrapper" | "element" | undefined;
|
|
5932
5932
|
radius?: number | undefined;
|
|
5933
|
-
}
|
|
5933
|
+
} | null>>>;
|
|
5934
5934
|
text: z.ZodOptional<z.ZodObject<{
|
|
5935
5935
|
fontFamily: z.ZodString;
|
|
5936
5936
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -7015,7 +7015,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
7015
7015
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
7016
7016
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
7017
7017
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
7018
|
-
background: z.ZodOptional<z.
|
|
7018
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
7019
7019
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
7020
7020
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
7021
7021
|
type: z.ZodEnum<{
|
|
@@ -7049,7 +7049,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
7049
7049
|
ellipse: "ellipse";
|
|
7050
7050
|
circle: "circle";
|
|
7051
7051
|
}>>;
|
|
7052
|
-
}, z.core.$strip>]
|
|
7052
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
7053
7053
|
enabled: boolean;
|
|
7054
7054
|
color: string | {
|
|
7055
7055
|
type: "linear" | "radial";
|
|
@@ -7073,7 +7073,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
7073
7073
|
};
|
|
7074
7074
|
target: string;
|
|
7075
7075
|
radius: number;
|
|
7076
|
-
}, string | {
|
|
7076
|
+
} | null, string | {
|
|
7077
7077
|
type: "linear" | "radial";
|
|
7078
7078
|
colors: string[];
|
|
7079
7079
|
stops?: number[] | undefined;
|
|
@@ -7092,7 +7092,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
7092
7092
|
};
|
|
7093
7093
|
target?: "wrapper" | "element" | undefined;
|
|
7094
7094
|
radius?: number | undefined;
|
|
7095
|
-
}
|
|
7095
|
+
} | null>>>;
|
|
7096
7096
|
text: z.ZodOptional<z.ZodObject<{
|
|
7097
7097
|
fontFamily: z.ZodString;
|
|
7098
7098
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -10293,7 +10293,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
10293
10293
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
10294
10294
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
10295
10295
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
10296
|
-
background: z.ZodOptional<z.
|
|
10296
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
10297
10297
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
10298
10298
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
10299
10299
|
type: z.ZodEnum<{
|
|
@@ -10327,7 +10327,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
10327
10327
|
ellipse: "ellipse";
|
|
10328
10328
|
circle: "circle";
|
|
10329
10329
|
}>>;
|
|
10330
|
-
}, z.core.$strip>]
|
|
10330
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
10331
10331
|
enabled: boolean;
|
|
10332
10332
|
color: string | {
|
|
10333
10333
|
type: "linear" | "radial";
|
|
@@ -10351,7 +10351,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
10351
10351
|
};
|
|
10352
10352
|
target: string;
|
|
10353
10353
|
radius: number;
|
|
10354
|
-
}, string | {
|
|
10354
|
+
} | null, string | {
|
|
10355
10355
|
type: "linear" | "radial";
|
|
10356
10356
|
colors: string[];
|
|
10357
10357
|
stops?: number[] | undefined;
|
|
@@ -10370,7 +10370,7 @@ export declare const SceneLayerShape: z.ZodObject<{
|
|
|
10370
10370
|
};
|
|
10371
10371
|
target?: "wrapper" | "element" | undefined;
|
|
10372
10372
|
radius?: number | undefined;
|
|
10373
|
-
}
|
|
10373
|
+
} | null>>>;
|
|
10374
10374
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
10375
10375
|
text: z.ZodObject<{
|
|
10376
10376
|
fontFamily: z.ZodString;
|
|
@@ -11721,7 +11721,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
11721
11721
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
11722
11722
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
11723
11723
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
11724
|
-
background: z.ZodOptional<z.
|
|
11724
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
11725
11725
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
11726
11726
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
11727
11727
|
type: z.ZodEnum<{
|
|
@@ -11755,7 +11755,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
11755
11755
|
ellipse: "ellipse";
|
|
11756
11756
|
circle: "circle";
|
|
11757
11757
|
}>>;
|
|
11758
|
-
}, z.core.$strip>]
|
|
11758
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
11759
11759
|
enabled: boolean;
|
|
11760
11760
|
color: string | {
|
|
11761
11761
|
type: "linear" | "radial";
|
|
@@ -11779,7 +11779,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
11779
11779
|
};
|
|
11780
11780
|
target: string;
|
|
11781
11781
|
radius: number;
|
|
11782
|
-
}, string | {
|
|
11782
|
+
} | null, string | {
|
|
11783
11783
|
type: "linear" | "radial";
|
|
11784
11784
|
colors: string[];
|
|
11785
11785
|
stops?: number[] | undefined;
|
|
@@ -11798,7 +11798,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
11798
11798
|
};
|
|
11799
11799
|
target?: "wrapper" | "element" | undefined;
|
|
11800
11800
|
radius?: number | undefined;
|
|
11801
|
-
}
|
|
11801
|
+
} | null>>>;
|
|
11802
11802
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
11803
11803
|
text: z.ZodObject<{
|
|
11804
11804
|
fontFamily: z.ZodString;
|
|
@@ -12869,7 +12869,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
12869
12869
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12870
12870
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12871
12871
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
12872
|
-
background: z.ZodOptional<z.
|
|
12872
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
12873
12873
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
12874
12874
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
12875
12875
|
type: z.ZodEnum<{
|
|
@@ -12903,7 +12903,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
12903
12903
|
ellipse: "ellipse";
|
|
12904
12904
|
circle: "circle";
|
|
12905
12905
|
}>>;
|
|
12906
|
-
}, z.core.$strip>]
|
|
12906
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
12907
12907
|
enabled: boolean;
|
|
12908
12908
|
color: string | {
|
|
12909
12909
|
type: "linear" | "radial";
|
|
@@ -12927,7 +12927,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
12927
12927
|
};
|
|
12928
12928
|
target: string;
|
|
12929
12929
|
radius: number;
|
|
12930
|
-
}, string | {
|
|
12930
|
+
} | null, string | {
|
|
12931
12931
|
type: "linear" | "radial";
|
|
12932
12932
|
colors: string[];
|
|
12933
12933
|
stops?: number[] | undefined;
|
|
@@ -12946,7 +12946,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
12946
12946
|
};
|
|
12947
12947
|
target?: "wrapper" | "element" | undefined;
|
|
12948
12948
|
radius?: number | undefined;
|
|
12949
|
-
}
|
|
12949
|
+
} | null>>>;
|
|
12950
12950
|
text: z.ZodOptional<z.ZodObject<{
|
|
12951
12951
|
fontFamily: z.ZodString;
|
|
12952
12952
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -14023,7 +14023,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
14023
14023
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
14024
14024
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
14025
14025
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
14026
|
-
background: z.ZodOptional<z.
|
|
14026
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
14027
14027
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
14028
14028
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
14029
14029
|
type: z.ZodEnum<{
|
|
@@ -14057,7 +14057,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
14057
14057
|
ellipse: "ellipse";
|
|
14058
14058
|
circle: "circle";
|
|
14059
14059
|
}>>;
|
|
14060
|
-
}, z.core.$strip>]
|
|
14060
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
14061
14061
|
enabled: boolean;
|
|
14062
14062
|
color: string | {
|
|
14063
14063
|
type: "linear" | "radial";
|
|
@@ -14081,7 +14081,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
14081
14081
|
};
|
|
14082
14082
|
target: string;
|
|
14083
14083
|
radius: number;
|
|
14084
|
-
}, string | {
|
|
14084
|
+
} | null, string | {
|
|
14085
14085
|
type: "linear" | "radial";
|
|
14086
14086
|
colors: string[];
|
|
14087
14087
|
stops?: number[] | undefined;
|
|
@@ -14100,7 +14100,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
14100
14100
|
};
|
|
14101
14101
|
target?: "wrapper" | "element" | undefined;
|
|
14102
14102
|
radius?: number | undefined;
|
|
14103
|
-
}
|
|
14103
|
+
} | null>>>;
|
|
14104
14104
|
text: z.ZodOptional<z.ZodObject<{
|
|
14105
14105
|
fontFamily: z.ZodString;
|
|
14106
14106
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -15175,7 +15175,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
15175
15175
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15176
15176
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15177
15177
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
15178
|
-
background: z.ZodOptional<z.
|
|
15178
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
15179
15179
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
15180
15180
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
15181
15181
|
type: z.ZodEnum<{
|
|
@@ -15209,7 +15209,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
15209
15209
|
ellipse: "ellipse";
|
|
15210
15210
|
circle: "circle";
|
|
15211
15211
|
}>>;
|
|
15212
|
-
}, z.core.$strip>]
|
|
15212
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
15213
15213
|
enabled: boolean;
|
|
15214
15214
|
color: string | {
|
|
15215
15215
|
type: "linear" | "radial";
|
|
@@ -15233,7 +15233,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
15233
15233
|
};
|
|
15234
15234
|
target: string;
|
|
15235
15235
|
radius: number;
|
|
15236
|
-
}, string | {
|
|
15236
|
+
} | null, string | {
|
|
15237
15237
|
type: "linear" | "radial";
|
|
15238
15238
|
colors: string[];
|
|
15239
15239
|
stops?: number[] | undefined;
|
|
@@ -15252,7 +15252,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
15252
15252
|
};
|
|
15253
15253
|
target?: "wrapper" | "element" | undefined;
|
|
15254
15254
|
radius?: number | undefined;
|
|
15255
|
-
}
|
|
15255
|
+
} | null>>>;
|
|
15256
15256
|
text: z.ZodOptional<z.ZodObject<{
|
|
15257
15257
|
fontFamily: z.ZodString;
|
|
15258
15258
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -16397,7 +16397,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
16397
16397
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16398
16398
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16399
16399
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
16400
|
-
background: z.ZodOptional<z.
|
|
16400
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
16401
16401
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
16402
16402
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
16403
16403
|
type: z.ZodEnum<{
|
|
@@ -16431,7 +16431,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
16431
16431
|
ellipse: "ellipse";
|
|
16432
16432
|
circle: "circle";
|
|
16433
16433
|
}>>;
|
|
16434
|
-
}, z.core.$strip>]
|
|
16434
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
16435
16435
|
enabled: boolean;
|
|
16436
16436
|
color: string | {
|
|
16437
16437
|
type: "linear" | "radial";
|
|
@@ -16455,7 +16455,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
16455
16455
|
};
|
|
16456
16456
|
target: string;
|
|
16457
16457
|
radius: number;
|
|
16458
|
-
}, string | {
|
|
16458
|
+
} | null, string | {
|
|
16459
16459
|
type: "linear" | "radial";
|
|
16460
16460
|
colors: string[];
|
|
16461
16461
|
stops?: number[] | undefined;
|
|
@@ -16474,7 +16474,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
16474
16474
|
};
|
|
16475
16475
|
target?: "wrapper" | "element" | undefined;
|
|
16476
16476
|
radius?: number | undefined;
|
|
16477
|
-
}
|
|
16477
|
+
} | null>>>;
|
|
16478
16478
|
text: z.ZodOptional<z.ZodObject<{
|
|
16479
16479
|
fontFamily: z.ZodString;
|
|
16480
16480
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -17559,7 +17559,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
17559
17559
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17560
17560
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17561
17561
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
17562
|
-
background: z.ZodOptional<z.
|
|
17562
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
17563
17563
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
17564
17564
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
17565
17565
|
type: z.ZodEnum<{
|
|
@@ -17593,7 +17593,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
17593
17593
|
ellipse: "ellipse";
|
|
17594
17594
|
circle: "circle";
|
|
17595
17595
|
}>>;
|
|
17596
|
-
}, z.core.$strip>]
|
|
17596
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
17597
17597
|
enabled: boolean;
|
|
17598
17598
|
color: string | {
|
|
17599
17599
|
type: "linear" | "radial";
|
|
@@ -17617,7 +17617,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
17617
17617
|
};
|
|
17618
17618
|
target: string;
|
|
17619
17619
|
radius: number;
|
|
17620
|
-
}, string | {
|
|
17620
|
+
} | null, string | {
|
|
17621
17621
|
type: "linear" | "radial";
|
|
17622
17622
|
colors: string[];
|
|
17623
17623
|
stops?: number[] | undefined;
|
|
@@ -17636,7 +17636,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
17636
17636
|
};
|
|
17637
17637
|
target?: "wrapper" | "element" | undefined;
|
|
17638
17638
|
radius?: number | undefined;
|
|
17639
|
-
}
|
|
17639
|
+
} | null>>>;
|
|
17640
17640
|
text: z.ZodOptional<z.ZodObject<{
|
|
17641
17641
|
fontFamily: z.ZodString;
|
|
17642
17642
|
fontSize: z.ZodUnion<readonly [z.ZodPipe<z.ZodNumber, z.ZodTransform<{
|
|
@@ -20837,7 +20837,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
20837
20837
|
rotation: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
20838
20838
|
scaleX: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
20839
20839
|
scaleY: z.ZodOptional<z.ZodPrefault<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodCoercedNumber<unknown>>>>;
|
|
20840
|
-
background: z.ZodOptional<z.
|
|
20840
|
+
background: z.ZodOptional<z.ZodPipe<z.ZodUnion<readonly [z.ZodObject<{
|
|
20841
20841
|
enabled: z.ZodPrefault<z.ZodBoolean>;
|
|
20842
20842
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
20843
20843
|
type: z.ZodEnum<{
|
|
@@ -20871,7 +20871,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
20871
20871
|
ellipse: "ellipse";
|
|
20872
20872
|
circle: "circle";
|
|
20873
20873
|
}>>;
|
|
20874
|
-
}, z.core.$strip>]
|
|
20874
|
+
}, z.core.$strip>]>, z.ZodNull]>, z.ZodTransform<{
|
|
20875
20875
|
enabled: boolean;
|
|
20876
20876
|
color: string | {
|
|
20877
20877
|
type: "linear" | "radial";
|
|
@@ -20895,7 +20895,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
20895
20895
|
};
|
|
20896
20896
|
target: string;
|
|
20897
20897
|
radius: number;
|
|
20898
|
-
}, string | {
|
|
20898
|
+
} | null, string | {
|
|
20899
20899
|
type: "linear" | "radial";
|
|
20900
20900
|
colors: string[];
|
|
20901
20901
|
stops?: number[] | undefined;
|
|
@@ -20914,7 +20914,7 @@ export declare const SceneShape: z.ZodObject<{
|
|
|
20914
20914
|
};
|
|
20915
20915
|
target?: "wrapper" | "element" | undefined;
|
|
20916
20916
|
radius?: number | undefined;
|
|
20917
|
-
}
|
|
20917
|
+
} | null>>>;
|
|
20918
20918
|
backgroundAlwaysVisible: z.ZodOptional<z.ZodPrefault<z.ZodBoolean>>;
|
|
20919
20919
|
text: z.ZodObject<{
|
|
20920
20920
|
fontFamily: z.ZodString;
|