@makeswift/prop-controllers 0.4.6-canary.1 → 0.4.6-canary.2
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/cjs/backgrounds/backgrounds.js +20 -10
- package/dist/cjs/backgrounds/backgrounds.js.map +1 -1
- package/dist/esm/backgrounds/backgrounds.js +21 -15
- package/dist/esm/backgrounds/backgrounds.js.map +1 -1
- package/dist/types/backgrounds/backgrounds.d.ts +168 -168
- package/dist/types/backgrounds/backgrounds.d.ts.map +1 -1
- package/package.json +1 -1
@@ -360,27 +360,27 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
360
360
|
type: z.ZodLiteral<"color">;
|
361
361
|
id: z.ZodString;
|
362
362
|
payload: z.ZodNullable<z.ZodObject<{
|
363
|
-
swatchId: z.ZodString
|
363
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
364
364
|
alpha: z.ZodNumber;
|
365
365
|
}, "strip", z.ZodTypeAny, {
|
366
|
-
swatchId: string;
|
366
|
+
swatchId: string | null;
|
367
367
|
alpha: number;
|
368
368
|
}, {
|
369
|
-
swatchId: string;
|
369
|
+
swatchId: string | null;
|
370
370
|
alpha: number;
|
371
371
|
}>>;
|
372
372
|
}, "strip", z.ZodTypeAny, {
|
373
373
|
type: "color";
|
374
374
|
id: string;
|
375
375
|
payload: {
|
376
|
-
swatchId: string;
|
376
|
+
swatchId: string | null;
|
377
377
|
alpha: number;
|
378
378
|
} | null;
|
379
379
|
}, {
|
380
380
|
type: "color";
|
381
381
|
id: string;
|
382
382
|
payload: {
|
383
|
-
swatchId: string;
|
383
|
+
swatchId: string | null;
|
384
384
|
alpha: number;
|
385
385
|
} | null;
|
386
386
|
}>, z.ZodObject<{
|
@@ -393,26 +393,26 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
393
393
|
id: z.ZodString;
|
394
394
|
location: z.ZodNumber;
|
395
395
|
color: z.ZodNullable<z.ZodObject<{
|
396
|
-
swatchId: z.ZodString
|
396
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
397
397
|
alpha: z.ZodNumber;
|
398
398
|
}, "strip", z.ZodTypeAny, {
|
399
|
-
swatchId: string;
|
399
|
+
swatchId: string | null;
|
400
400
|
alpha: number;
|
401
401
|
}, {
|
402
|
-
swatchId: string;
|
402
|
+
swatchId: string | null;
|
403
403
|
alpha: number;
|
404
404
|
}>>;
|
405
405
|
}, "strip", z.ZodTypeAny, {
|
406
406
|
id: string;
|
407
407
|
color: {
|
408
|
-
swatchId: string;
|
408
|
+
swatchId: string | null;
|
409
409
|
alpha: number;
|
410
410
|
} | null;
|
411
411
|
location: number;
|
412
412
|
}, {
|
413
413
|
id: string;
|
414
414
|
color: {
|
415
|
-
swatchId: string;
|
415
|
+
swatchId: string | null;
|
416
416
|
alpha: number;
|
417
417
|
} | null;
|
418
418
|
location: number;
|
@@ -421,7 +421,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
421
421
|
stops: {
|
422
422
|
id: string;
|
423
423
|
color: {
|
424
|
-
swatchId: string;
|
424
|
+
swatchId: string | null;
|
425
425
|
alpha: number;
|
426
426
|
} | null;
|
427
427
|
location: number;
|
@@ -432,7 +432,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
432
432
|
stops: {
|
433
433
|
id: string;
|
434
434
|
color: {
|
435
|
-
swatchId: string;
|
435
|
+
swatchId: string | null;
|
436
436
|
alpha: number;
|
437
437
|
} | null;
|
438
438
|
location: number;
|
@@ -447,7 +447,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
447
447
|
stops: {
|
448
448
|
id: string;
|
449
449
|
color: {
|
450
|
-
swatchId: string;
|
450
|
+
swatchId: string | null;
|
451
451
|
alpha: number;
|
452
452
|
} | null;
|
453
453
|
location: number;
|
@@ -462,7 +462,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
462
462
|
stops: {
|
463
463
|
id: string;
|
464
464
|
color: {
|
465
|
-
swatchId: string;
|
465
|
+
swatchId: string | null;
|
466
466
|
alpha: number;
|
467
467
|
} | null;
|
468
468
|
location: number;
|
@@ -697,13 +697,13 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
697
697
|
payload: z.ZodObject<{
|
698
698
|
url: z.ZodOptional<z.ZodString>;
|
699
699
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
700
|
-
swatchId: z.ZodString
|
700
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
701
701
|
alpha: z.ZodNumber;
|
702
702
|
}, "strip", z.ZodTypeAny, {
|
703
|
-
swatchId: string;
|
703
|
+
swatchId: string | null;
|
704
704
|
alpha: number;
|
705
705
|
}, {
|
706
|
-
swatchId: string;
|
706
|
+
swatchId: string | null;
|
707
707
|
alpha: number;
|
708
708
|
}>>>;
|
709
709
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -713,7 +713,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
713
713
|
}, "strip", z.ZodTypeAny, {
|
714
714
|
url?: string | undefined;
|
715
715
|
maskColor?: {
|
716
|
-
swatchId: string;
|
716
|
+
swatchId: string | null;
|
717
717
|
alpha: number;
|
718
718
|
} | null | undefined;
|
719
719
|
opacity?: number | undefined;
|
@@ -723,7 +723,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
723
723
|
}, {
|
724
724
|
url?: string | undefined;
|
725
725
|
maskColor?: {
|
726
|
-
swatchId: string;
|
726
|
+
swatchId: string | null;
|
727
727
|
alpha: number;
|
728
728
|
} | null | undefined;
|
729
729
|
opacity?: number | undefined;
|
@@ -737,7 +737,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
737
737
|
payload: {
|
738
738
|
url?: string | undefined;
|
739
739
|
maskColor?: {
|
740
|
-
swatchId: string;
|
740
|
+
swatchId: string | null;
|
741
741
|
alpha: number;
|
742
742
|
} | null | undefined;
|
743
743
|
opacity?: number | undefined;
|
@@ -751,7 +751,7 @@ declare const backgroundDataSchema: z.ZodUnion<[z.ZodObject<{
|
|
751
751
|
payload: {
|
752
752
|
url?: string | undefined;
|
753
753
|
maskColor?: {
|
754
|
-
swatchId: string;
|
754
|
+
swatchId: string | null;
|
755
755
|
alpha: number;
|
756
756
|
} | null | undefined;
|
757
757
|
opacity?: number | undefined;
|
@@ -767,27 +767,27 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
767
767
|
type: z.ZodLiteral<"color">;
|
768
768
|
id: z.ZodString;
|
769
769
|
payload: z.ZodNullable<z.ZodObject<{
|
770
|
-
swatchId: z.ZodString
|
770
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
771
771
|
alpha: z.ZodNumber;
|
772
772
|
}, "strip", z.ZodTypeAny, {
|
773
|
-
swatchId: string;
|
773
|
+
swatchId: string | null;
|
774
774
|
alpha: number;
|
775
775
|
}, {
|
776
|
-
swatchId: string;
|
776
|
+
swatchId: string | null;
|
777
777
|
alpha: number;
|
778
778
|
}>>;
|
779
779
|
}, "strip", z.ZodTypeAny, {
|
780
780
|
type: "color";
|
781
781
|
id: string;
|
782
782
|
payload: {
|
783
|
-
swatchId: string;
|
783
|
+
swatchId: string | null;
|
784
784
|
alpha: number;
|
785
785
|
} | null;
|
786
786
|
}, {
|
787
787
|
type: "color";
|
788
788
|
id: string;
|
789
789
|
payload: {
|
790
|
-
swatchId: string;
|
790
|
+
swatchId: string | null;
|
791
791
|
alpha: number;
|
792
792
|
} | null;
|
793
793
|
}>, z.ZodObject<{
|
@@ -800,26 +800,26 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
800
800
|
id: z.ZodString;
|
801
801
|
location: z.ZodNumber;
|
802
802
|
color: z.ZodNullable<z.ZodObject<{
|
803
|
-
swatchId: z.ZodString
|
803
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
804
804
|
alpha: z.ZodNumber;
|
805
805
|
}, "strip", z.ZodTypeAny, {
|
806
|
-
swatchId: string;
|
806
|
+
swatchId: string | null;
|
807
807
|
alpha: number;
|
808
808
|
}, {
|
809
|
-
swatchId: string;
|
809
|
+
swatchId: string | null;
|
810
810
|
alpha: number;
|
811
811
|
}>>;
|
812
812
|
}, "strip", z.ZodTypeAny, {
|
813
813
|
id: string;
|
814
814
|
color: {
|
815
|
-
swatchId: string;
|
815
|
+
swatchId: string | null;
|
816
816
|
alpha: number;
|
817
817
|
} | null;
|
818
818
|
location: number;
|
819
819
|
}, {
|
820
820
|
id: string;
|
821
821
|
color: {
|
822
|
-
swatchId: string;
|
822
|
+
swatchId: string | null;
|
823
823
|
alpha: number;
|
824
824
|
} | null;
|
825
825
|
location: number;
|
@@ -828,7 +828,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
828
828
|
stops: {
|
829
829
|
id: string;
|
830
830
|
color: {
|
831
|
-
swatchId: string;
|
831
|
+
swatchId: string | null;
|
832
832
|
alpha: number;
|
833
833
|
} | null;
|
834
834
|
location: number;
|
@@ -839,7 +839,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
839
839
|
stops: {
|
840
840
|
id: string;
|
841
841
|
color: {
|
842
|
-
swatchId: string;
|
842
|
+
swatchId: string | null;
|
843
843
|
alpha: number;
|
844
844
|
} | null;
|
845
845
|
location: number;
|
@@ -854,7 +854,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
854
854
|
stops: {
|
855
855
|
id: string;
|
856
856
|
color: {
|
857
|
-
swatchId: string;
|
857
|
+
swatchId: string | null;
|
858
858
|
alpha: number;
|
859
859
|
} | null;
|
860
860
|
location: number;
|
@@ -869,7 +869,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
869
869
|
stops: {
|
870
870
|
id: string;
|
871
871
|
color: {
|
872
|
-
swatchId: string;
|
872
|
+
swatchId: string | null;
|
873
873
|
alpha: number;
|
874
874
|
} | null;
|
875
875
|
location: number;
|
@@ -1104,13 +1104,13 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1104
1104
|
payload: z.ZodObject<{
|
1105
1105
|
url: z.ZodOptional<z.ZodString>;
|
1106
1106
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1107
|
-
swatchId: z.ZodString
|
1107
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1108
1108
|
alpha: z.ZodNumber;
|
1109
1109
|
}, "strip", z.ZodTypeAny, {
|
1110
|
-
swatchId: string;
|
1110
|
+
swatchId: string | null;
|
1111
1111
|
alpha: number;
|
1112
1112
|
}, {
|
1113
|
-
swatchId: string;
|
1113
|
+
swatchId: string | null;
|
1114
1114
|
alpha: number;
|
1115
1115
|
}>>>;
|
1116
1116
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -1120,7 +1120,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1120
1120
|
}, "strip", z.ZodTypeAny, {
|
1121
1121
|
url?: string | undefined;
|
1122
1122
|
maskColor?: {
|
1123
|
-
swatchId: string;
|
1123
|
+
swatchId: string | null;
|
1124
1124
|
alpha: number;
|
1125
1125
|
} | null | undefined;
|
1126
1126
|
opacity?: number | undefined;
|
@@ -1130,7 +1130,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1130
1130
|
}, {
|
1131
1131
|
url?: string | undefined;
|
1132
1132
|
maskColor?: {
|
1133
|
-
swatchId: string;
|
1133
|
+
swatchId: string | null;
|
1134
1134
|
alpha: number;
|
1135
1135
|
} | null | undefined;
|
1136
1136
|
opacity?: number | undefined;
|
@@ -1144,7 +1144,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1144
1144
|
payload: {
|
1145
1145
|
url?: string | undefined;
|
1146
1146
|
maskColor?: {
|
1147
|
-
swatchId: string;
|
1147
|
+
swatchId: string | null;
|
1148
1148
|
alpha: number;
|
1149
1149
|
} | null | undefined;
|
1150
1150
|
opacity?: number | undefined;
|
@@ -1158,7 +1158,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1158
1158
|
payload: {
|
1159
1159
|
url?: string | undefined;
|
1160
1160
|
maskColor?: {
|
1161
|
-
swatchId: string;
|
1161
|
+
swatchId: string | null;
|
1162
1162
|
alpha: number;
|
1163
1163
|
} | null | undefined;
|
1164
1164
|
opacity?: number | undefined;
|
@@ -1172,7 +1172,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1172
1172
|
type: "color";
|
1173
1173
|
id: string;
|
1174
1174
|
payload: {
|
1175
|
-
swatchId: string;
|
1175
|
+
swatchId: string | null;
|
1176
1176
|
alpha: number;
|
1177
1177
|
} | null;
|
1178
1178
|
} | {
|
@@ -1182,7 +1182,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1182
1182
|
stops: {
|
1183
1183
|
id: string;
|
1184
1184
|
color: {
|
1185
|
-
swatchId: string;
|
1185
|
+
swatchId: string | null;
|
1186
1186
|
alpha: number;
|
1187
1187
|
} | null;
|
1188
1188
|
location: number;
|
@@ -1237,7 +1237,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1237
1237
|
payload: {
|
1238
1238
|
url?: string | undefined;
|
1239
1239
|
maskColor?: {
|
1240
|
-
swatchId: string;
|
1240
|
+
swatchId: string | null;
|
1241
1241
|
alpha: number;
|
1242
1242
|
} | null | undefined;
|
1243
1243
|
opacity?: number | undefined;
|
@@ -1252,7 +1252,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1252
1252
|
type: "color";
|
1253
1253
|
id: string;
|
1254
1254
|
payload: {
|
1255
|
-
swatchId: string;
|
1255
|
+
swatchId: string | null;
|
1256
1256
|
alpha: number;
|
1257
1257
|
} | null;
|
1258
1258
|
} | {
|
@@ -1262,7 +1262,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1262
1262
|
stops: {
|
1263
1263
|
id: string;
|
1264
1264
|
color: {
|
1265
|
-
swatchId: string;
|
1265
|
+
swatchId: string | null;
|
1266
1266
|
alpha: number;
|
1267
1267
|
} | null;
|
1268
1268
|
location: number;
|
@@ -1317,7 +1317,7 @@ declare const responsiveBackgroundsDataSchema: z.ZodArray<z.ZodObject<{
|
|
1317
1317
|
payload: {
|
1318
1318
|
url?: string | undefined;
|
1319
1319
|
maskColor?: {
|
1320
|
-
swatchId: string;
|
1320
|
+
swatchId: string | null;
|
1321
1321
|
alpha: number;
|
1322
1322
|
} | null | undefined;
|
1323
1323
|
opacity?: number | undefined;
|
@@ -1335,27 +1335,27 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1335
1335
|
type: z.ZodLiteral<"color">;
|
1336
1336
|
id: z.ZodString;
|
1337
1337
|
payload: z.ZodNullable<z.ZodObject<{
|
1338
|
-
swatchId: z.ZodString
|
1338
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1339
1339
|
alpha: z.ZodNumber;
|
1340
1340
|
}, "strip", z.ZodTypeAny, {
|
1341
|
-
swatchId: string;
|
1341
|
+
swatchId: string | null;
|
1342
1342
|
alpha: number;
|
1343
1343
|
}, {
|
1344
|
-
swatchId: string;
|
1344
|
+
swatchId: string | null;
|
1345
1345
|
alpha: number;
|
1346
1346
|
}>>;
|
1347
1347
|
}, "strip", z.ZodTypeAny, {
|
1348
1348
|
type: "color";
|
1349
1349
|
id: string;
|
1350
1350
|
payload: {
|
1351
|
-
swatchId: string;
|
1351
|
+
swatchId: string | null;
|
1352
1352
|
alpha: number;
|
1353
1353
|
} | null;
|
1354
1354
|
}, {
|
1355
1355
|
type: "color";
|
1356
1356
|
id: string;
|
1357
1357
|
payload: {
|
1358
|
-
swatchId: string;
|
1358
|
+
swatchId: string | null;
|
1359
1359
|
alpha: number;
|
1360
1360
|
} | null;
|
1361
1361
|
}>, z.ZodObject<{
|
@@ -1368,26 +1368,26 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1368
1368
|
id: z.ZodString;
|
1369
1369
|
location: z.ZodNumber;
|
1370
1370
|
color: z.ZodNullable<z.ZodObject<{
|
1371
|
-
swatchId: z.ZodString
|
1371
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1372
1372
|
alpha: z.ZodNumber;
|
1373
1373
|
}, "strip", z.ZodTypeAny, {
|
1374
|
-
swatchId: string;
|
1374
|
+
swatchId: string | null;
|
1375
1375
|
alpha: number;
|
1376
1376
|
}, {
|
1377
|
-
swatchId: string;
|
1377
|
+
swatchId: string | null;
|
1378
1378
|
alpha: number;
|
1379
1379
|
}>>;
|
1380
1380
|
}, "strip", z.ZodTypeAny, {
|
1381
1381
|
id: string;
|
1382
1382
|
color: {
|
1383
|
-
swatchId: string;
|
1383
|
+
swatchId: string | null;
|
1384
1384
|
alpha: number;
|
1385
1385
|
} | null;
|
1386
1386
|
location: number;
|
1387
1387
|
}, {
|
1388
1388
|
id: string;
|
1389
1389
|
color: {
|
1390
|
-
swatchId: string;
|
1390
|
+
swatchId: string | null;
|
1391
1391
|
alpha: number;
|
1392
1392
|
} | null;
|
1393
1393
|
location: number;
|
@@ -1396,7 +1396,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1396
1396
|
stops: {
|
1397
1397
|
id: string;
|
1398
1398
|
color: {
|
1399
|
-
swatchId: string;
|
1399
|
+
swatchId: string | null;
|
1400
1400
|
alpha: number;
|
1401
1401
|
} | null;
|
1402
1402
|
location: number;
|
@@ -1407,7 +1407,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1407
1407
|
stops: {
|
1408
1408
|
id: string;
|
1409
1409
|
color: {
|
1410
|
-
swatchId: string;
|
1410
|
+
swatchId: string | null;
|
1411
1411
|
alpha: number;
|
1412
1412
|
} | null;
|
1413
1413
|
location: number;
|
@@ -1422,7 +1422,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1422
1422
|
stops: {
|
1423
1423
|
id: string;
|
1424
1424
|
color: {
|
1425
|
-
swatchId: string;
|
1425
|
+
swatchId: string | null;
|
1426
1426
|
alpha: number;
|
1427
1427
|
} | null;
|
1428
1428
|
location: number;
|
@@ -1437,7 +1437,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1437
1437
|
stops: {
|
1438
1438
|
id: string;
|
1439
1439
|
color: {
|
1440
|
-
swatchId: string;
|
1440
|
+
swatchId: string | null;
|
1441
1441
|
alpha: number;
|
1442
1442
|
} | null;
|
1443
1443
|
location: number;
|
@@ -1672,13 +1672,13 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1672
1672
|
payload: z.ZodObject<{
|
1673
1673
|
url: z.ZodOptional<z.ZodString>;
|
1674
1674
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1675
|
-
swatchId: z.ZodString
|
1675
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1676
1676
|
alpha: z.ZodNumber;
|
1677
1677
|
}, "strip", z.ZodTypeAny, {
|
1678
|
-
swatchId: string;
|
1678
|
+
swatchId: string | null;
|
1679
1679
|
alpha: number;
|
1680
1680
|
}, {
|
1681
|
-
swatchId: string;
|
1681
|
+
swatchId: string | null;
|
1682
1682
|
alpha: number;
|
1683
1683
|
}>>>;
|
1684
1684
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -1688,7 +1688,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1688
1688
|
}, "strip", z.ZodTypeAny, {
|
1689
1689
|
url?: string | undefined;
|
1690
1690
|
maskColor?: {
|
1691
|
-
swatchId: string;
|
1691
|
+
swatchId: string | null;
|
1692
1692
|
alpha: number;
|
1693
1693
|
} | null | undefined;
|
1694
1694
|
opacity?: number | undefined;
|
@@ -1698,7 +1698,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1698
1698
|
}, {
|
1699
1699
|
url?: string | undefined;
|
1700
1700
|
maskColor?: {
|
1701
|
-
swatchId: string;
|
1701
|
+
swatchId: string | null;
|
1702
1702
|
alpha: number;
|
1703
1703
|
} | null | undefined;
|
1704
1704
|
opacity?: number | undefined;
|
@@ -1712,7 +1712,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1712
1712
|
payload: {
|
1713
1713
|
url?: string | undefined;
|
1714
1714
|
maskColor?: {
|
1715
|
-
swatchId: string;
|
1715
|
+
swatchId: string | null;
|
1716
1716
|
alpha: number;
|
1717
1717
|
} | null | undefined;
|
1718
1718
|
opacity?: number | undefined;
|
@@ -1726,7 +1726,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1726
1726
|
payload: {
|
1727
1727
|
url?: string | undefined;
|
1728
1728
|
maskColor?: {
|
1729
|
-
swatchId: string;
|
1729
|
+
swatchId: string | null;
|
1730
1730
|
alpha: number;
|
1731
1731
|
} | null | undefined;
|
1732
1732
|
opacity?: number | undefined;
|
@@ -1740,7 +1740,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1740
1740
|
type: "color";
|
1741
1741
|
id: string;
|
1742
1742
|
payload: {
|
1743
|
-
swatchId: string;
|
1743
|
+
swatchId: string | null;
|
1744
1744
|
alpha: number;
|
1745
1745
|
} | null;
|
1746
1746
|
} | {
|
@@ -1750,7 +1750,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1750
1750
|
stops: {
|
1751
1751
|
id: string;
|
1752
1752
|
color: {
|
1753
|
-
swatchId: string;
|
1753
|
+
swatchId: string | null;
|
1754
1754
|
alpha: number;
|
1755
1755
|
} | null;
|
1756
1756
|
location: number;
|
@@ -1805,7 +1805,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1805
1805
|
payload: {
|
1806
1806
|
url?: string | undefined;
|
1807
1807
|
maskColor?: {
|
1808
|
-
swatchId: string;
|
1808
|
+
swatchId: string | null;
|
1809
1809
|
alpha: number;
|
1810
1810
|
} | null | undefined;
|
1811
1811
|
opacity?: number | undefined;
|
@@ -1820,7 +1820,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1820
1820
|
type: "color";
|
1821
1821
|
id: string;
|
1822
1822
|
payload: {
|
1823
|
-
swatchId: string;
|
1823
|
+
swatchId: string | null;
|
1824
1824
|
alpha: number;
|
1825
1825
|
} | null;
|
1826
1826
|
} | {
|
@@ -1830,7 +1830,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1830
1830
|
stops: {
|
1831
1831
|
id: string;
|
1832
1832
|
color: {
|
1833
|
-
swatchId: string;
|
1833
|
+
swatchId: string | null;
|
1834
1834
|
alpha: number;
|
1835
1835
|
} | null;
|
1836
1836
|
location: number;
|
@@ -1885,7 +1885,7 @@ declare const backgroundsPropControllerDataV1Schema: z.ZodArray<z.ZodObject<{
|
|
1885
1885
|
payload: {
|
1886
1886
|
url?: string | undefined;
|
1887
1887
|
maskColor?: {
|
1888
|
-
swatchId: string;
|
1888
|
+
swatchId: string | null;
|
1889
1889
|
alpha: number;
|
1890
1890
|
} | null | undefined;
|
1891
1891
|
opacity?: number | undefined;
|
@@ -1906,27 +1906,27 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
1906
1906
|
type: z.ZodLiteral<"color">;
|
1907
1907
|
id: z.ZodString;
|
1908
1908
|
payload: z.ZodNullable<z.ZodObject<{
|
1909
|
-
swatchId: z.ZodString
|
1909
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1910
1910
|
alpha: z.ZodNumber;
|
1911
1911
|
}, "strip", z.ZodTypeAny, {
|
1912
|
-
swatchId: string;
|
1912
|
+
swatchId: string | null;
|
1913
1913
|
alpha: number;
|
1914
1914
|
}, {
|
1915
|
-
swatchId: string;
|
1915
|
+
swatchId: string | null;
|
1916
1916
|
alpha: number;
|
1917
1917
|
}>>;
|
1918
1918
|
}, "strip", z.ZodTypeAny, {
|
1919
1919
|
type: "color";
|
1920
1920
|
id: string;
|
1921
1921
|
payload: {
|
1922
|
-
swatchId: string;
|
1922
|
+
swatchId: string | null;
|
1923
1923
|
alpha: number;
|
1924
1924
|
} | null;
|
1925
1925
|
}, {
|
1926
1926
|
type: "color";
|
1927
1927
|
id: string;
|
1928
1928
|
payload: {
|
1929
|
-
swatchId: string;
|
1929
|
+
swatchId: string | null;
|
1930
1930
|
alpha: number;
|
1931
1931
|
} | null;
|
1932
1932
|
}>, z.ZodObject<{
|
@@ -1939,26 +1939,26 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
1939
1939
|
id: z.ZodString;
|
1940
1940
|
location: z.ZodNumber;
|
1941
1941
|
color: z.ZodNullable<z.ZodObject<{
|
1942
|
-
swatchId: z.ZodString
|
1942
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
1943
1943
|
alpha: z.ZodNumber;
|
1944
1944
|
}, "strip", z.ZodTypeAny, {
|
1945
|
-
swatchId: string;
|
1945
|
+
swatchId: string | null;
|
1946
1946
|
alpha: number;
|
1947
1947
|
}, {
|
1948
|
-
swatchId: string;
|
1948
|
+
swatchId: string | null;
|
1949
1949
|
alpha: number;
|
1950
1950
|
}>>;
|
1951
1951
|
}, "strip", z.ZodTypeAny, {
|
1952
1952
|
id: string;
|
1953
1953
|
color: {
|
1954
|
-
swatchId: string;
|
1954
|
+
swatchId: string | null;
|
1955
1955
|
alpha: number;
|
1956
1956
|
} | null;
|
1957
1957
|
location: number;
|
1958
1958
|
}, {
|
1959
1959
|
id: string;
|
1960
1960
|
color: {
|
1961
|
-
swatchId: string;
|
1961
|
+
swatchId: string | null;
|
1962
1962
|
alpha: number;
|
1963
1963
|
} | null;
|
1964
1964
|
location: number;
|
@@ -1967,7 +1967,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
1967
1967
|
stops: {
|
1968
1968
|
id: string;
|
1969
1969
|
color: {
|
1970
|
-
swatchId: string;
|
1970
|
+
swatchId: string | null;
|
1971
1971
|
alpha: number;
|
1972
1972
|
} | null;
|
1973
1973
|
location: number;
|
@@ -1978,7 +1978,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
1978
1978
|
stops: {
|
1979
1979
|
id: string;
|
1980
1980
|
color: {
|
1981
|
-
swatchId: string;
|
1981
|
+
swatchId: string | null;
|
1982
1982
|
alpha: number;
|
1983
1983
|
} | null;
|
1984
1984
|
location: number;
|
@@ -1993,7 +1993,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
1993
1993
|
stops: {
|
1994
1994
|
id: string;
|
1995
1995
|
color: {
|
1996
|
-
swatchId: string;
|
1996
|
+
swatchId: string | null;
|
1997
1997
|
alpha: number;
|
1998
1998
|
} | null;
|
1999
1999
|
location: number;
|
@@ -2008,7 +2008,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2008
2008
|
stops: {
|
2009
2009
|
id: string;
|
2010
2010
|
color: {
|
2011
|
-
swatchId: string;
|
2011
|
+
swatchId: string | null;
|
2012
2012
|
alpha: number;
|
2013
2013
|
} | null;
|
2014
2014
|
location: number;
|
@@ -2243,13 +2243,13 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2243
2243
|
payload: z.ZodObject<{
|
2244
2244
|
url: z.ZodOptional<z.ZodString>;
|
2245
2245
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2246
|
-
swatchId: z.ZodString
|
2246
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
2247
2247
|
alpha: z.ZodNumber;
|
2248
2248
|
}, "strip", z.ZodTypeAny, {
|
2249
|
-
swatchId: string;
|
2249
|
+
swatchId: string | null;
|
2250
2250
|
alpha: number;
|
2251
2251
|
}, {
|
2252
|
-
swatchId: string;
|
2252
|
+
swatchId: string | null;
|
2253
2253
|
alpha: number;
|
2254
2254
|
}>>>;
|
2255
2255
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -2259,7 +2259,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2259
2259
|
}, "strip", z.ZodTypeAny, {
|
2260
2260
|
url?: string | undefined;
|
2261
2261
|
maskColor?: {
|
2262
|
-
swatchId: string;
|
2262
|
+
swatchId: string | null;
|
2263
2263
|
alpha: number;
|
2264
2264
|
} | null | undefined;
|
2265
2265
|
opacity?: number | undefined;
|
@@ -2269,7 +2269,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2269
2269
|
}, {
|
2270
2270
|
url?: string | undefined;
|
2271
2271
|
maskColor?: {
|
2272
|
-
swatchId: string;
|
2272
|
+
swatchId: string | null;
|
2273
2273
|
alpha: number;
|
2274
2274
|
} | null | undefined;
|
2275
2275
|
opacity?: number | undefined;
|
@@ -2283,7 +2283,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2283
2283
|
payload: {
|
2284
2284
|
url?: string | undefined;
|
2285
2285
|
maskColor?: {
|
2286
|
-
swatchId: string;
|
2286
|
+
swatchId: string | null;
|
2287
2287
|
alpha: number;
|
2288
2288
|
} | null | undefined;
|
2289
2289
|
opacity?: number | undefined;
|
@@ -2297,7 +2297,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2297
2297
|
payload: {
|
2298
2298
|
url?: string | undefined;
|
2299
2299
|
maskColor?: {
|
2300
|
-
swatchId: string;
|
2300
|
+
swatchId: string | null;
|
2301
2301
|
alpha: number;
|
2302
2302
|
} | null | undefined;
|
2303
2303
|
opacity?: number | undefined;
|
@@ -2311,7 +2311,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2311
2311
|
type: "color";
|
2312
2312
|
id: string;
|
2313
2313
|
payload: {
|
2314
|
-
swatchId: string;
|
2314
|
+
swatchId: string | null;
|
2315
2315
|
alpha: number;
|
2316
2316
|
} | null;
|
2317
2317
|
} | {
|
@@ -2321,7 +2321,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2321
2321
|
stops: {
|
2322
2322
|
id: string;
|
2323
2323
|
color: {
|
2324
|
-
swatchId: string;
|
2324
|
+
swatchId: string | null;
|
2325
2325
|
alpha: number;
|
2326
2326
|
} | null;
|
2327
2327
|
location: number;
|
@@ -2376,7 +2376,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2376
2376
|
payload: {
|
2377
2377
|
url?: string | undefined;
|
2378
2378
|
maskColor?: {
|
2379
|
-
swatchId: string;
|
2379
|
+
swatchId: string | null;
|
2380
2380
|
alpha: number;
|
2381
2381
|
} | null | undefined;
|
2382
2382
|
opacity?: number | undefined;
|
@@ -2391,7 +2391,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2391
2391
|
type: "color";
|
2392
2392
|
id: string;
|
2393
2393
|
payload: {
|
2394
|
-
swatchId: string;
|
2394
|
+
swatchId: string | null;
|
2395
2395
|
alpha: number;
|
2396
2396
|
} | null;
|
2397
2397
|
} | {
|
@@ -2401,7 +2401,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2401
2401
|
stops: {
|
2402
2402
|
id: string;
|
2403
2403
|
color: {
|
2404
|
-
swatchId: string;
|
2404
|
+
swatchId: string | null;
|
2405
2405
|
alpha: number;
|
2406
2406
|
} | null;
|
2407
2407
|
location: number;
|
@@ -2456,7 +2456,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2456
2456
|
payload: {
|
2457
2457
|
url?: string | undefined;
|
2458
2458
|
maskColor?: {
|
2459
|
-
swatchId: string;
|
2459
|
+
swatchId: string | null;
|
2460
2460
|
alpha: number;
|
2461
2461
|
} | null | undefined;
|
2462
2462
|
opacity?: number | undefined;
|
@@ -2473,7 +2473,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2473
2473
|
type: "color";
|
2474
2474
|
id: string;
|
2475
2475
|
payload: {
|
2476
|
-
swatchId: string;
|
2476
|
+
swatchId: string | null;
|
2477
2477
|
alpha: number;
|
2478
2478
|
} | null;
|
2479
2479
|
} | {
|
@@ -2483,7 +2483,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2483
2483
|
stops: {
|
2484
2484
|
id: string;
|
2485
2485
|
color: {
|
2486
|
-
swatchId: string;
|
2486
|
+
swatchId: string | null;
|
2487
2487
|
alpha: number;
|
2488
2488
|
} | null;
|
2489
2489
|
location: number;
|
@@ -2538,7 +2538,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2538
2538
|
payload: {
|
2539
2539
|
url?: string | undefined;
|
2540
2540
|
maskColor?: {
|
2541
|
-
swatchId: string;
|
2541
|
+
swatchId: string | null;
|
2542
2542
|
alpha: number;
|
2543
2543
|
} | null | undefined;
|
2544
2544
|
opacity?: number | undefined;
|
@@ -2556,7 +2556,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2556
2556
|
type: "color";
|
2557
2557
|
id: string;
|
2558
2558
|
payload: {
|
2559
|
-
swatchId: string;
|
2559
|
+
swatchId: string | null;
|
2560
2560
|
alpha: number;
|
2561
2561
|
} | null;
|
2562
2562
|
} | {
|
@@ -2566,7 +2566,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2566
2566
|
stops: {
|
2567
2567
|
id: string;
|
2568
2568
|
color: {
|
2569
|
-
swatchId: string;
|
2569
|
+
swatchId: string | null;
|
2570
2570
|
alpha: number;
|
2571
2571
|
} | null;
|
2572
2572
|
location: number;
|
@@ -2621,7 +2621,7 @@ declare const backgroundsPropControllerDataV2Schema: z.ZodObject<{
|
|
2621
2621
|
payload: {
|
2622
2622
|
url?: string | undefined;
|
2623
2623
|
maskColor?: {
|
2624
|
-
swatchId: string;
|
2624
|
+
swatchId: string | null;
|
2625
2625
|
alpha: number;
|
2626
2626
|
} | null | undefined;
|
2627
2627
|
opacity?: number | undefined;
|
@@ -2641,27 +2641,27 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2641
2641
|
type: z.ZodLiteral<"color">;
|
2642
2642
|
id: z.ZodString;
|
2643
2643
|
payload: z.ZodNullable<z.ZodObject<{
|
2644
|
-
swatchId: z.ZodString
|
2644
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
2645
2645
|
alpha: z.ZodNumber;
|
2646
2646
|
}, "strip", z.ZodTypeAny, {
|
2647
|
-
swatchId: string;
|
2647
|
+
swatchId: string | null;
|
2648
2648
|
alpha: number;
|
2649
2649
|
}, {
|
2650
|
-
swatchId: string;
|
2650
|
+
swatchId: string | null;
|
2651
2651
|
alpha: number;
|
2652
2652
|
}>>;
|
2653
2653
|
}, "strip", z.ZodTypeAny, {
|
2654
2654
|
type: "color";
|
2655
2655
|
id: string;
|
2656
2656
|
payload: {
|
2657
|
-
swatchId: string;
|
2657
|
+
swatchId: string | null;
|
2658
2658
|
alpha: number;
|
2659
2659
|
} | null;
|
2660
2660
|
}, {
|
2661
2661
|
type: "color";
|
2662
2662
|
id: string;
|
2663
2663
|
payload: {
|
2664
|
-
swatchId: string;
|
2664
|
+
swatchId: string | null;
|
2665
2665
|
alpha: number;
|
2666
2666
|
} | null;
|
2667
2667
|
}>, z.ZodObject<{
|
@@ -2674,26 +2674,26 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2674
2674
|
id: z.ZodString;
|
2675
2675
|
location: z.ZodNumber;
|
2676
2676
|
color: z.ZodNullable<z.ZodObject<{
|
2677
|
-
swatchId: z.ZodString
|
2677
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
2678
2678
|
alpha: z.ZodNumber;
|
2679
2679
|
}, "strip", z.ZodTypeAny, {
|
2680
|
-
swatchId: string;
|
2680
|
+
swatchId: string | null;
|
2681
2681
|
alpha: number;
|
2682
2682
|
}, {
|
2683
|
-
swatchId: string;
|
2683
|
+
swatchId: string | null;
|
2684
2684
|
alpha: number;
|
2685
2685
|
}>>;
|
2686
2686
|
}, "strip", z.ZodTypeAny, {
|
2687
2687
|
id: string;
|
2688
2688
|
color: {
|
2689
|
-
swatchId: string;
|
2689
|
+
swatchId: string | null;
|
2690
2690
|
alpha: number;
|
2691
2691
|
} | null;
|
2692
2692
|
location: number;
|
2693
2693
|
}, {
|
2694
2694
|
id: string;
|
2695
2695
|
color: {
|
2696
|
-
swatchId: string;
|
2696
|
+
swatchId: string | null;
|
2697
2697
|
alpha: number;
|
2698
2698
|
} | null;
|
2699
2699
|
location: number;
|
@@ -2702,7 +2702,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2702
2702
|
stops: {
|
2703
2703
|
id: string;
|
2704
2704
|
color: {
|
2705
|
-
swatchId: string;
|
2705
|
+
swatchId: string | null;
|
2706
2706
|
alpha: number;
|
2707
2707
|
} | null;
|
2708
2708
|
location: number;
|
@@ -2713,7 +2713,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2713
2713
|
stops: {
|
2714
2714
|
id: string;
|
2715
2715
|
color: {
|
2716
|
-
swatchId: string;
|
2716
|
+
swatchId: string | null;
|
2717
2717
|
alpha: number;
|
2718
2718
|
} | null;
|
2719
2719
|
location: number;
|
@@ -2728,7 +2728,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2728
2728
|
stops: {
|
2729
2729
|
id: string;
|
2730
2730
|
color: {
|
2731
|
-
swatchId: string;
|
2731
|
+
swatchId: string | null;
|
2732
2732
|
alpha: number;
|
2733
2733
|
} | null;
|
2734
2734
|
location: number;
|
@@ -2743,7 +2743,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2743
2743
|
stops: {
|
2744
2744
|
id: string;
|
2745
2745
|
color: {
|
2746
|
-
swatchId: string;
|
2746
|
+
swatchId: string | null;
|
2747
2747
|
alpha: number;
|
2748
2748
|
} | null;
|
2749
2749
|
location: number;
|
@@ -2978,13 +2978,13 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2978
2978
|
payload: z.ZodObject<{
|
2979
2979
|
url: z.ZodOptional<z.ZodString>;
|
2980
2980
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2981
|
-
swatchId: z.ZodString
|
2981
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
2982
2982
|
alpha: z.ZodNumber;
|
2983
2983
|
}, "strip", z.ZodTypeAny, {
|
2984
|
-
swatchId: string;
|
2984
|
+
swatchId: string | null;
|
2985
2985
|
alpha: number;
|
2986
2986
|
}, {
|
2987
|
-
swatchId: string;
|
2987
|
+
swatchId: string | null;
|
2988
2988
|
alpha: number;
|
2989
2989
|
}>>>;
|
2990
2990
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -2994,7 +2994,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
2994
2994
|
}, "strip", z.ZodTypeAny, {
|
2995
2995
|
url?: string | undefined;
|
2996
2996
|
maskColor?: {
|
2997
|
-
swatchId: string;
|
2997
|
+
swatchId: string | null;
|
2998
2998
|
alpha: number;
|
2999
2999
|
} | null | undefined;
|
3000
3000
|
opacity?: number | undefined;
|
@@ -3004,7 +3004,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3004
3004
|
}, {
|
3005
3005
|
url?: string | undefined;
|
3006
3006
|
maskColor?: {
|
3007
|
-
swatchId: string;
|
3007
|
+
swatchId: string | null;
|
3008
3008
|
alpha: number;
|
3009
3009
|
} | null | undefined;
|
3010
3010
|
opacity?: number | undefined;
|
@@ -3018,7 +3018,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3018
3018
|
payload: {
|
3019
3019
|
url?: string | undefined;
|
3020
3020
|
maskColor?: {
|
3021
|
-
swatchId: string;
|
3021
|
+
swatchId: string | null;
|
3022
3022
|
alpha: number;
|
3023
3023
|
} | null | undefined;
|
3024
3024
|
opacity?: number | undefined;
|
@@ -3032,7 +3032,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3032
3032
|
payload: {
|
3033
3033
|
url?: string | undefined;
|
3034
3034
|
maskColor?: {
|
3035
|
-
swatchId: string;
|
3035
|
+
swatchId: string | null;
|
3036
3036
|
alpha: number;
|
3037
3037
|
} | null | undefined;
|
3038
3038
|
opacity?: number | undefined;
|
@@ -3046,7 +3046,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3046
3046
|
type: "color";
|
3047
3047
|
id: string;
|
3048
3048
|
payload: {
|
3049
|
-
swatchId: string;
|
3049
|
+
swatchId: string | null;
|
3050
3050
|
alpha: number;
|
3051
3051
|
} | null;
|
3052
3052
|
} | {
|
@@ -3056,7 +3056,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3056
3056
|
stops: {
|
3057
3057
|
id: string;
|
3058
3058
|
color: {
|
3059
|
-
swatchId: string;
|
3059
|
+
swatchId: string | null;
|
3060
3060
|
alpha: number;
|
3061
3061
|
} | null;
|
3062
3062
|
location: number;
|
@@ -3111,7 +3111,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3111
3111
|
payload: {
|
3112
3112
|
url?: string | undefined;
|
3113
3113
|
maskColor?: {
|
3114
|
-
swatchId: string;
|
3114
|
+
swatchId: string | null;
|
3115
3115
|
alpha: number;
|
3116
3116
|
} | null | undefined;
|
3117
3117
|
opacity?: number | undefined;
|
@@ -3126,7 +3126,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3126
3126
|
type: "color";
|
3127
3127
|
id: string;
|
3128
3128
|
payload: {
|
3129
|
-
swatchId: string;
|
3129
|
+
swatchId: string | null;
|
3130
3130
|
alpha: number;
|
3131
3131
|
} | null;
|
3132
3132
|
} | {
|
@@ -3136,7 +3136,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3136
3136
|
stops: {
|
3137
3137
|
id: string;
|
3138
3138
|
color: {
|
3139
|
-
swatchId: string;
|
3139
|
+
swatchId: string | null;
|
3140
3140
|
alpha: number;
|
3141
3141
|
} | null;
|
3142
3142
|
location: number;
|
@@ -3191,7 +3191,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3191
3191
|
payload: {
|
3192
3192
|
url?: string | undefined;
|
3193
3193
|
maskColor?: {
|
3194
|
-
swatchId: string;
|
3194
|
+
swatchId: string | null;
|
3195
3195
|
alpha: number;
|
3196
3196
|
} | null | undefined;
|
3197
3197
|
opacity?: number | undefined;
|
@@ -3209,27 +3209,27 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3209
3209
|
type: z.ZodLiteral<"color">;
|
3210
3210
|
id: z.ZodString;
|
3211
3211
|
payload: z.ZodNullable<z.ZodObject<{
|
3212
|
-
swatchId: z.ZodString
|
3212
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
3213
3213
|
alpha: z.ZodNumber;
|
3214
3214
|
}, "strip", z.ZodTypeAny, {
|
3215
|
-
swatchId: string;
|
3215
|
+
swatchId: string | null;
|
3216
3216
|
alpha: number;
|
3217
3217
|
}, {
|
3218
|
-
swatchId: string;
|
3218
|
+
swatchId: string | null;
|
3219
3219
|
alpha: number;
|
3220
3220
|
}>>;
|
3221
3221
|
}, "strip", z.ZodTypeAny, {
|
3222
3222
|
type: "color";
|
3223
3223
|
id: string;
|
3224
3224
|
payload: {
|
3225
|
-
swatchId: string;
|
3225
|
+
swatchId: string | null;
|
3226
3226
|
alpha: number;
|
3227
3227
|
} | null;
|
3228
3228
|
}, {
|
3229
3229
|
type: "color";
|
3230
3230
|
id: string;
|
3231
3231
|
payload: {
|
3232
|
-
swatchId: string;
|
3232
|
+
swatchId: string | null;
|
3233
3233
|
alpha: number;
|
3234
3234
|
} | null;
|
3235
3235
|
}>, z.ZodObject<{
|
@@ -3242,26 +3242,26 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3242
3242
|
id: z.ZodString;
|
3243
3243
|
location: z.ZodNumber;
|
3244
3244
|
color: z.ZodNullable<z.ZodObject<{
|
3245
|
-
swatchId: z.ZodString
|
3245
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
3246
3246
|
alpha: z.ZodNumber;
|
3247
3247
|
}, "strip", z.ZodTypeAny, {
|
3248
|
-
swatchId: string;
|
3248
|
+
swatchId: string | null;
|
3249
3249
|
alpha: number;
|
3250
3250
|
}, {
|
3251
|
-
swatchId: string;
|
3251
|
+
swatchId: string | null;
|
3252
3252
|
alpha: number;
|
3253
3253
|
}>>;
|
3254
3254
|
}, "strip", z.ZodTypeAny, {
|
3255
3255
|
id: string;
|
3256
3256
|
color: {
|
3257
|
-
swatchId: string;
|
3257
|
+
swatchId: string | null;
|
3258
3258
|
alpha: number;
|
3259
3259
|
} | null;
|
3260
3260
|
location: number;
|
3261
3261
|
}, {
|
3262
3262
|
id: string;
|
3263
3263
|
color: {
|
3264
|
-
swatchId: string;
|
3264
|
+
swatchId: string | null;
|
3265
3265
|
alpha: number;
|
3266
3266
|
} | null;
|
3267
3267
|
location: number;
|
@@ -3270,7 +3270,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3270
3270
|
stops: {
|
3271
3271
|
id: string;
|
3272
3272
|
color: {
|
3273
|
-
swatchId: string;
|
3273
|
+
swatchId: string | null;
|
3274
3274
|
alpha: number;
|
3275
3275
|
} | null;
|
3276
3276
|
location: number;
|
@@ -3281,7 +3281,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3281
3281
|
stops: {
|
3282
3282
|
id: string;
|
3283
3283
|
color: {
|
3284
|
-
swatchId: string;
|
3284
|
+
swatchId: string | null;
|
3285
3285
|
alpha: number;
|
3286
3286
|
} | null;
|
3287
3287
|
location: number;
|
@@ -3296,7 +3296,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3296
3296
|
stops: {
|
3297
3297
|
id: string;
|
3298
3298
|
color: {
|
3299
|
-
swatchId: string;
|
3299
|
+
swatchId: string | null;
|
3300
3300
|
alpha: number;
|
3301
3301
|
} | null;
|
3302
3302
|
location: number;
|
@@ -3311,7 +3311,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3311
3311
|
stops: {
|
3312
3312
|
id: string;
|
3313
3313
|
color: {
|
3314
|
-
swatchId: string;
|
3314
|
+
swatchId: string | null;
|
3315
3315
|
alpha: number;
|
3316
3316
|
} | null;
|
3317
3317
|
location: number;
|
@@ -3546,13 +3546,13 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3546
3546
|
payload: z.ZodObject<{
|
3547
3547
|
url: z.ZodOptional<z.ZodString>;
|
3548
3548
|
maskColor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3549
|
-
swatchId: z.ZodString
|
3549
|
+
swatchId: z.ZodNullable<z.ZodString>;
|
3550
3550
|
alpha: z.ZodNumber;
|
3551
3551
|
}, "strip", z.ZodTypeAny, {
|
3552
|
-
swatchId: string;
|
3552
|
+
swatchId: string | null;
|
3553
3553
|
alpha: number;
|
3554
3554
|
}, {
|
3555
|
-
swatchId: string;
|
3555
|
+
swatchId: string | null;
|
3556
3556
|
alpha: number;
|
3557
3557
|
}>>>;
|
3558
3558
|
opacity: z.ZodOptional<z.ZodNumber>;
|
@@ -3562,7 +3562,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3562
3562
|
}, "strip", z.ZodTypeAny, {
|
3563
3563
|
url?: string | undefined;
|
3564
3564
|
maskColor?: {
|
3565
|
-
swatchId: string;
|
3565
|
+
swatchId: string | null;
|
3566
3566
|
alpha: number;
|
3567
3567
|
} | null | undefined;
|
3568
3568
|
opacity?: number | undefined;
|
@@ -3572,7 +3572,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3572
3572
|
}, {
|
3573
3573
|
url?: string | undefined;
|
3574
3574
|
maskColor?: {
|
3575
|
-
swatchId: string;
|
3575
|
+
swatchId: string | null;
|
3576
3576
|
alpha: number;
|
3577
3577
|
} | null | undefined;
|
3578
3578
|
opacity?: number | undefined;
|
@@ -3586,7 +3586,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3586
3586
|
payload: {
|
3587
3587
|
url?: string | undefined;
|
3588
3588
|
maskColor?: {
|
3589
|
-
swatchId: string;
|
3589
|
+
swatchId: string | null;
|
3590
3590
|
alpha: number;
|
3591
3591
|
} | null | undefined;
|
3592
3592
|
opacity?: number | undefined;
|
@@ -3600,7 +3600,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3600
3600
|
payload: {
|
3601
3601
|
url?: string | undefined;
|
3602
3602
|
maskColor?: {
|
3603
|
-
swatchId: string;
|
3603
|
+
swatchId: string | null;
|
3604
3604
|
alpha: number;
|
3605
3605
|
} | null | undefined;
|
3606
3606
|
opacity?: number | undefined;
|
@@ -3614,7 +3614,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3614
3614
|
type: "color";
|
3615
3615
|
id: string;
|
3616
3616
|
payload: {
|
3617
|
-
swatchId: string;
|
3617
|
+
swatchId: string | null;
|
3618
3618
|
alpha: number;
|
3619
3619
|
} | null;
|
3620
3620
|
} | {
|
@@ -3624,7 +3624,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3624
3624
|
stops: {
|
3625
3625
|
id: string;
|
3626
3626
|
color: {
|
3627
|
-
swatchId: string;
|
3627
|
+
swatchId: string | null;
|
3628
3628
|
alpha: number;
|
3629
3629
|
} | null;
|
3630
3630
|
location: number;
|
@@ -3679,7 +3679,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3679
3679
|
payload: {
|
3680
3680
|
url?: string | undefined;
|
3681
3681
|
maskColor?: {
|
3682
|
-
swatchId: string;
|
3682
|
+
swatchId: string | null;
|
3683
3683
|
alpha: number;
|
3684
3684
|
} | null | undefined;
|
3685
3685
|
opacity?: number | undefined;
|
@@ -3694,7 +3694,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3694
3694
|
type: "color";
|
3695
3695
|
id: string;
|
3696
3696
|
payload: {
|
3697
|
-
swatchId: string;
|
3697
|
+
swatchId: string | null;
|
3698
3698
|
alpha: number;
|
3699
3699
|
} | null;
|
3700
3700
|
} | {
|
@@ -3704,7 +3704,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3704
3704
|
stops: {
|
3705
3705
|
id: string;
|
3706
3706
|
color: {
|
3707
|
-
swatchId: string;
|
3707
|
+
swatchId: string | null;
|
3708
3708
|
alpha: number;
|
3709
3709
|
} | null;
|
3710
3710
|
location: number;
|
@@ -3759,7 +3759,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3759
3759
|
payload: {
|
3760
3760
|
url?: string | undefined;
|
3761
3761
|
maskColor?: {
|
3762
|
-
swatchId: string;
|
3762
|
+
swatchId: string | null;
|
3763
3763
|
alpha: number;
|
3764
3764
|
} | null | undefined;
|
3765
3765
|
opacity?: number | undefined;
|
@@ -3776,7 +3776,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3776
3776
|
type: "color";
|
3777
3777
|
id: string;
|
3778
3778
|
payload: {
|
3779
|
-
swatchId: string;
|
3779
|
+
swatchId: string | null;
|
3780
3780
|
alpha: number;
|
3781
3781
|
} | null;
|
3782
3782
|
} | {
|
@@ -3786,7 +3786,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3786
3786
|
stops: {
|
3787
3787
|
id: string;
|
3788
3788
|
color: {
|
3789
|
-
swatchId: string;
|
3789
|
+
swatchId: string | null;
|
3790
3790
|
alpha: number;
|
3791
3791
|
} | null;
|
3792
3792
|
location: number;
|
@@ -3841,7 +3841,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3841
3841
|
payload: {
|
3842
3842
|
url?: string | undefined;
|
3843
3843
|
maskColor?: {
|
3844
|
-
swatchId: string;
|
3844
|
+
swatchId: string | null;
|
3845
3845
|
alpha: number;
|
3846
3846
|
} | null | undefined;
|
3847
3847
|
opacity?: number | undefined;
|
@@ -3859,7 +3859,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3859
3859
|
type: "color";
|
3860
3860
|
id: string;
|
3861
3861
|
payload: {
|
3862
|
-
swatchId: string;
|
3862
|
+
swatchId: string | null;
|
3863
3863
|
alpha: number;
|
3864
3864
|
} | null;
|
3865
3865
|
} | {
|
@@ -3869,7 +3869,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3869
3869
|
stops: {
|
3870
3870
|
id: string;
|
3871
3871
|
color: {
|
3872
|
-
swatchId: string;
|
3872
|
+
swatchId: string | null;
|
3873
3873
|
alpha: number;
|
3874
3874
|
} | null;
|
3875
3875
|
location: number;
|
@@ -3924,7 +3924,7 @@ export declare const backgroundsPropControllerDataSchema: z.ZodUnion<[z.ZodArray
|
|
3924
3924
|
payload: {
|
3925
3925
|
url?: string | undefined;
|
3926
3926
|
maskColor?: {
|
3927
|
-
swatchId: string;
|
3927
|
+
swatchId: string | null;
|
3928
3928
|
alpha: number;
|
3929
3929
|
} | null | undefined;
|
3930
3930
|
opacity?: number | undefined;
|