@webstudio-is/react-sdk 0.182.0 → 0.185.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +74 -13
- package/lib/types/component-generator.d.ts +2 -1
- package/lib/types/components/component-meta.d.ts +469 -1629
- package/lib/types/core-components.d.ts +149 -1
- package/lib/types/embed-template.d.ts +417 -1595
- package/lib/types/props.d.ts +1 -0
- package/package.json +7 -7
|
@@ -163,7 +163,7 @@ export type EmbedTemplateProp = z.infer<typeof EmbedTemplateProp>;
|
|
|
163
163
|
declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
164
164
|
state: z.ZodOptional<z.ZodString>;
|
|
165
165
|
property: z.ZodString;
|
|
166
|
-
value: z.ZodUnion<[z.
|
|
166
|
+
value: z.ZodUnion<[z.ZodObject<{
|
|
167
167
|
type: z.ZodLiteral<"image">;
|
|
168
168
|
value: z.ZodUnion<[z.ZodObject<{
|
|
169
169
|
type: z.ZodLiteral<"asset">;
|
|
@@ -402,6 +402,61 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
402
402
|
name: string;
|
|
403
403
|
args: StyleValue;
|
|
404
404
|
hidden?: boolean;
|
|
405
|
+
}>, z.ZodObject<{
|
|
406
|
+
type: z.ZodLiteral<"var">;
|
|
407
|
+
value: z.ZodString;
|
|
408
|
+
fallback: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
409
|
+
type: z.ZodLiteral<"unparsed">;
|
|
410
|
+
value: z.ZodString;
|
|
411
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
412
|
+
}, "strip", z.ZodTypeAny, {
|
|
413
|
+
value: string;
|
|
414
|
+
type: "unparsed";
|
|
415
|
+
hidden?: boolean | undefined;
|
|
416
|
+
}, {
|
|
417
|
+
value: string;
|
|
418
|
+
type: "unparsed";
|
|
419
|
+
hidden?: boolean | undefined;
|
|
420
|
+
}>, z.ZodObject<{
|
|
421
|
+
type: z.ZodLiteral<"keyword">;
|
|
422
|
+
value: z.ZodString;
|
|
423
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
424
|
+
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
value: string;
|
|
426
|
+
type: "keyword";
|
|
427
|
+
hidden?: boolean | undefined;
|
|
428
|
+
}, {
|
|
429
|
+
value: string;
|
|
430
|
+
type: "keyword";
|
|
431
|
+
hidden?: boolean | undefined;
|
|
432
|
+
}>]>>;
|
|
433
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
434
|
+
}, "strip", z.ZodTypeAny, {
|
|
435
|
+
value: string;
|
|
436
|
+
type: "var";
|
|
437
|
+
fallback?: {
|
|
438
|
+
value: string;
|
|
439
|
+
type: "keyword";
|
|
440
|
+
hidden?: boolean | undefined;
|
|
441
|
+
} | {
|
|
442
|
+
value: string;
|
|
443
|
+
type: "unparsed";
|
|
444
|
+
hidden?: boolean | undefined;
|
|
445
|
+
} | undefined;
|
|
446
|
+
hidden?: boolean | undefined;
|
|
447
|
+
}, {
|
|
448
|
+
value: string;
|
|
449
|
+
type: "var";
|
|
450
|
+
fallback?: {
|
|
451
|
+
value: string;
|
|
452
|
+
type: "keyword";
|
|
453
|
+
hidden?: boolean | undefined;
|
|
454
|
+
} | {
|
|
455
|
+
value: string;
|
|
456
|
+
type: "unparsed";
|
|
457
|
+
hidden?: boolean | undefined;
|
|
458
|
+
} | undefined;
|
|
459
|
+
hidden?: boolean | undefined;
|
|
405
460
|
}>]>, "many">;
|
|
406
461
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
407
462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -440,6 +495,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
440
495
|
};
|
|
441
496
|
type: "image";
|
|
442
497
|
hidden?: boolean | undefined;
|
|
498
|
+
} | {
|
|
499
|
+
value: string;
|
|
500
|
+
type: "var";
|
|
501
|
+
fallback?: {
|
|
502
|
+
value: string;
|
|
503
|
+
type: "keyword";
|
|
504
|
+
hidden?: boolean | undefined;
|
|
505
|
+
} | {
|
|
506
|
+
value: string;
|
|
507
|
+
type: "unparsed";
|
|
508
|
+
hidden?: boolean | undefined;
|
|
509
|
+
} | undefined;
|
|
510
|
+
hidden?: boolean | undefined;
|
|
443
511
|
})[];
|
|
444
512
|
type: "tuple";
|
|
445
513
|
hidden?: boolean | undefined;
|
|
@@ -479,6 +547,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
479
547
|
};
|
|
480
548
|
type: "image";
|
|
481
549
|
hidden?: boolean | undefined;
|
|
550
|
+
} | {
|
|
551
|
+
value: string;
|
|
552
|
+
type: "var";
|
|
553
|
+
fallback?: {
|
|
554
|
+
value: string;
|
|
555
|
+
type: "keyword";
|
|
556
|
+
hidden?: boolean | undefined;
|
|
557
|
+
} | {
|
|
558
|
+
value: string;
|
|
559
|
+
type: "unparsed";
|
|
560
|
+
hidden?: boolean | undefined;
|
|
561
|
+
} | undefined;
|
|
562
|
+
hidden?: boolean | undefined;
|
|
482
563
|
})[];
|
|
483
564
|
type: "tuple";
|
|
484
565
|
hidden?: boolean | undefined;
|
|
@@ -525,6 +606,61 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
525
606
|
name: string;
|
|
526
607
|
args: StyleValue;
|
|
527
608
|
hidden?: boolean;
|
|
609
|
+
}>, z.ZodObject<{
|
|
610
|
+
type: z.ZodLiteral<"var">;
|
|
611
|
+
value: z.ZodString;
|
|
612
|
+
fallback: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
613
|
+
type: z.ZodLiteral<"unparsed">;
|
|
614
|
+
value: z.ZodString;
|
|
615
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
616
|
+
}, "strip", z.ZodTypeAny, {
|
|
617
|
+
value: string;
|
|
618
|
+
type: "unparsed";
|
|
619
|
+
hidden?: boolean | undefined;
|
|
620
|
+
}, {
|
|
621
|
+
value: string;
|
|
622
|
+
type: "unparsed";
|
|
623
|
+
hidden?: boolean | undefined;
|
|
624
|
+
}>, z.ZodObject<{
|
|
625
|
+
type: z.ZodLiteral<"keyword">;
|
|
626
|
+
value: z.ZodString;
|
|
627
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
628
|
+
}, "strip", z.ZodTypeAny, {
|
|
629
|
+
value: string;
|
|
630
|
+
type: "keyword";
|
|
631
|
+
hidden?: boolean | undefined;
|
|
632
|
+
}, {
|
|
633
|
+
value: string;
|
|
634
|
+
type: "keyword";
|
|
635
|
+
hidden?: boolean | undefined;
|
|
636
|
+
}>]>>;
|
|
637
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
638
|
+
}, "strip", z.ZodTypeAny, {
|
|
639
|
+
value: string;
|
|
640
|
+
type: "var";
|
|
641
|
+
fallback?: {
|
|
642
|
+
value: string;
|
|
643
|
+
type: "keyword";
|
|
644
|
+
hidden?: boolean | undefined;
|
|
645
|
+
} | {
|
|
646
|
+
value: string;
|
|
647
|
+
type: "unparsed";
|
|
648
|
+
hidden?: boolean | undefined;
|
|
649
|
+
} | undefined;
|
|
650
|
+
hidden?: boolean | undefined;
|
|
651
|
+
}, {
|
|
652
|
+
value: string;
|
|
653
|
+
type: "var";
|
|
654
|
+
fallback?: {
|
|
655
|
+
value: string;
|
|
656
|
+
type: "keyword";
|
|
657
|
+
hidden?: boolean | undefined;
|
|
658
|
+
} | {
|
|
659
|
+
value: string;
|
|
660
|
+
type: "unparsed";
|
|
661
|
+
hidden?: boolean | undefined;
|
|
662
|
+
} | undefined;
|
|
663
|
+
hidden?: boolean | undefined;
|
|
528
664
|
}>]>, "many">;
|
|
529
665
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
530
666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -563,6 +699,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
563
699
|
};
|
|
564
700
|
type: "image";
|
|
565
701
|
hidden?: boolean | undefined;
|
|
702
|
+
} | {
|
|
703
|
+
value: string;
|
|
704
|
+
type: "var";
|
|
705
|
+
fallback?: {
|
|
706
|
+
value: string;
|
|
707
|
+
type: "keyword";
|
|
708
|
+
hidden?: boolean | undefined;
|
|
709
|
+
} | {
|
|
710
|
+
value: string;
|
|
711
|
+
type: "unparsed";
|
|
712
|
+
hidden?: boolean | undefined;
|
|
713
|
+
} | undefined;
|
|
714
|
+
hidden?: boolean | undefined;
|
|
566
715
|
} | {
|
|
567
716
|
value: ({
|
|
568
717
|
value: number;
|
|
@@ -599,6 +748,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
599
748
|
};
|
|
600
749
|
type: "image";
|
|
601
750
|
hidden?: boolean | undefined;
|
|
751
|
+
} | {
|
|
752
|
+
value: string;
|
|
753
|
+
type: "var";
|
|
754
|
+
fallback?: {
|
|
755
|
+
value: string;
|
|
756
|
+
type: "keyword";
|
|
757
|
+
hidden?: boolean | undefined;
|
|
758
|
+
} | {
|
|
759
|
+
value: string;
|
|
760
|
+
type: "unparsed";
|
|
761
|
+
hidden?: boolean | undefined;
|
|
762
|
+
} | undefined;
|
|
763
|
+
hidden?: boolean | undefined;
|
|
602
764
|
})[];
|
|
603
765
|
type: "tuple";
|
|
604
766
|
hidden?: boolean | undefined;
|
|
@@ -645,6 +807,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
645
807
|
};
|
|
646
808
|
type: "image";
|
|
647
809
|
hidden?: boolean | undefined;
|
|
810
|
+
} | {
|
|
811
|
+
value: string;
|
|
812
|
+
type: "var";
|
|
813
|
+
fallback?: {
|
|
814
|
+
value: string;
|
|
815
|
+
type: "keyword";
|
|
816
|
+
hidden?: boolean | undefined;
|
|
817
|
+
} | {
|
|
818
|
+
value: string;
|
|
819
|
+
type: "unparsed";
|
|
820
|
+
hidden?: boolean | undefined;
|
|
821
|
+
} | undefined;
|
|
822
|
+
hidden?: boolean | undefined;
|
|
648
823
|
} | {
|
|
649
824
|
value: ({
|
|
650
825
|
value: number;
|
|
@@ -681,6 +856,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
681
856
|
};
|
|
682
857
|
type: "image";
|
|
683
858
|
hidden?: boolean | undefined;
|
|
859
|
+
} | {
|
|
860
|
+
value: string;
|
|
861
|
+
type: "var";
|
|
862
|
+
fallback?: {
|
|
863
|
+
value: string;
|
|
864
|
+
type: "keyword";
|
|
865
|
+
hidden?: boolean | undefined;
|
|
866
|
+
} | {
|
|
867
|
+
value: string;
|
|
868
|
+
type: "unparsed";
|
|
869
|
+
hidden?: boolean | undefined;
|
|
870
|
+
} | undefined;
|
|
871
|
+
hidden?: boolean | undefined;
|
|
684
872
|
})[];
|
|
685
873
|
type: "tuple";
|
|
686
874
|
hidden?: boolean | undefined;
|
|
@@ -877,6 +1065,61 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
877
1065
|
name: string;
|
|
878
1066
|
args: StyleValue;
|
|
879
1067
|
hidden?: boolean;
|
|
1068
|
+
}>, z.ZodObject<{
|
|
1069
|
+
type: z.ZodLiteral<"var">;
|
|
1070
|
+
value: z.ZodString;
|
|
1071
|
+
fallback: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1072
|
+
type: z.ZodLiteral<"unparsed">;
|
|
1073
|
+
value: z.ZodString;
|
|
1074
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1075
|
+
}, "strip", z.ZodTypeAny, {
|
|
1076
|
+
value: string;
|
|
1077
|
+
type: "unparsed";
|
|
1078
|
+
hidden?: boolean | undefined;
|
|
1079
|
+
}, {
|
|
1080
|
+
value: string;
|
|
1081
|
+
type: "unparsed";
|
|
1082
|
+
hidden?: boolean | undefined;
|
|
1083
|
+
}>, z.ZodObject<{
|
|
1084
|
+
type: z.ZodLiteral<"keyword">;
|
|
1085
|
+
value: z.ZodString;
|
|
1086
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1087
|
+
}, "strip", z.ZodTypeAny, {
|
|
1088
|
+
value: string;
|
|
1089
|
+
type: "keyword";
|
|
1090
|
+
hidden?: boolean | undefined;
|
|
1091
|
+
}, {
|
|
1092
|
+
value: string;
|
|
1093
|
+
type: "keyword";
|
|
1094
|
+
hidden?: boolean | undefined;
|
|
1095
|
+
}>]>>;
|
|
1096
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1097
|
+
}, "strip", z.ZodTypeAny, {
|
|
1098
|
+
value: string;
|
|
1099
|
+
type: "var";
|
|
1100
|
+
fallback?: {
|
|
1101
|
+
value: string;
|
|
1102
|
+
type: "keyword";
|
|
1103
|
+
hidden?: boolean | undefined;
|
|
1104
|
+
} | {
|
|
1105
|
+
value: string;
|
|
1106
|
+
type: "unparsed";
|
|
1107
|
+
hidden?: boolean | undefined;
|
|
1108
|
+
} | undefined;
|
|
1109
|
+
hidden?: boolean | undefined;
|
|
1110
|
+
}, {
|
|
1111
|
+
value: string;
|
|
1112
|
+
type: "var";
|
|
1113
|
+
fallback?: {
|
|
1114
|
+
value: string;
|
|
1115
|
+
type: "keyword";
|
|
1116
|
+
hidden?: boolean | undefined;
|
|
1117
|
+
} | {
|
|
1118
|
+
value: string;
|
|
1119
|
+
type: "unparsed";
|
|
1120
|
+
hidden?: boolean | undefined;
|
|
1121
|
+
} | undefined;
|
|
1122
|
+
hidden?: boolean | undefined;
|
|
880
1123
|
}>]>, "many">;
|
|
881
1124
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
882
1125
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -915,6 +1158,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
915
1158
|
};
|
|
916
1159
|
type: "image";
|
|
917
1160
|
hidden?: boolean | undefined;
|
|
1161
|
+
} | {
|
|
1162
|
+
value: string;
|
|
1163
|
+
type: "var";
|
|
1164
|
+
fallback?: {
|
|
1165
|
+
value: string;
|
|
1166
|
+
type: "keyword";
|
|
1167
|
+
hidden?: boolean | undefined;
|
|
1168
|
+
} | {
|
|
1169
|
+
value: string;
|
|
1170
|
+
type: "unparsed";
|
|
1171
|
+
hidden?: boolean | undefined;
|
|
1172
|
+
} | undefined;
|
|
1173
|
+
hidden?: boolean | undefined;
|
|
918
1174
|
})[];
|
|
919
1175
|
type: "tuple";
|
|
920
1176
|
hidden?: boolean | undefined;
|
|
@@ -954,6 +1210,19 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
954
1210
|
};
|
|
955
1211
|
type: "image";
|
|
956
1212
|
hidden?: boolean | undefined;
|
|
1213
|
+
} | {
|
|
1214
|
+
value: string;
|
|
1215
|
+
type: "var";
|
|
1216
|
+
fallback?: {
|
|
1217
|
+
value: string;
|
|
1218
|
+
type: "keyword";
|
|
1219
|
+
hidden?: boolean | undefined;
|
|
1220
|
+
} | {
|
|
1221
|
+
value: string;
|
|
1222
|
+
type: "unparsed";
|
|
1223
|
+
hidden?: boolean | undefined;
|
|
1224
|
+
} | undefined;
|
|
1225
|
+
hidden?: boolean | undefined;
|
|
957
1226
|
})[];
|
|
958
1227
|
type: "tuple";
|
|
959
1228
|
hidden?: boolean | undefined;
|
|
@@ -976,7 +1245,7 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
976
1245
|
}, {
|
|
977
1246
|
type: "guaranteedInvalid";
|
|
978
1247
|
hidden?: boolean | undefined;
|
|
979
|
-
}
|
|
1248
|
+
}>, z.ZodObject<{
|
|
980
1249
|
type: z.ZodLiteral<"invalid">;
|
|
981
1250
|
value: z.ZodString;
|
|
982
1251
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1003,1156 +1272,57 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
1003
1272
|
}>, z.ZodObject<{
|
|
1004
1273
|
type: z.ZodLiteral<"var">;
|
|
1005
1274
|
value: z.ZodString;
|
|
1006
|
-
|
|
1007
|
-
type: z.ZodLiteral<"
|
|
1008
|
-
value: z.
|
|
1009
|
-
type: z.ZodLiteral<"asset">;
|
|
1010
|
-
value: z.ZodString;
|
|
1011
|
-
}, "strip", z.ZodTypeAny, {
|
|
1012
|
-
value: string;
|
|
1013
|
-
type: "asset";
|
|
1014
|
-
}, {
|
|
1015
|
-
value: string;
|
|
1016
|
-
type: "asset";
|
|
1017
|
-
}>, z.ZodObject<{
|
|
1018
|
-
type: z.ZodLiteral<"url">;
|
|
1019
|
-
url: z.ZodString;
|
|
1020
|
-
}, "strip", z.ZodTypeAny, {
|
|
1021
|
-
type: "url";
|
|
1022
|
-
url: string;
|
|
1023
|
-
}, {
|
|
1024
|
-
type: "url";
|
|
1025
|
-
url: string;
|
|
1026
|
-
}>]>;
|
|
1275
|
+
fallback: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1276
|
+
type: z.ZodLiteral<"unparsed">;
|
|
1277
|
+
value: z.ZodString;
|
|
1027
1278
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1028
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1029
|
-
value: {
|
|
1030
|
-
value: string;
|
|
1031
|
-
type: "asset";
|
|
1032
|
-
} | {
|
|
1033
|
-
type: "url";
|
|
1034
|
-
url: string;
|
|
1035
|
-
};
|
|
1036
|
-
type: "image";
|
|
1037
|
-
hidden?: boolean | undefined;
|
|
1038
|
-
}, {
|
|
1039
|
-
value: {
|
|
1040
|
-
value: string;
|
|
1041
|
-
type: "asset";
|
|
1042
|
-
} | {
|
|
1043
|
-
type: "url";
|
|
1044
|
-
url: string;
|
|
1045
|
-
};
|
|
1046
|
-
type: "image";
|
|
1047
|
-
hidden?: boolean | undefined;
|
|
1048
|
-
}>, z.ZodObject<{
|
|
1049
|
-
type: z.ZodLiteral<"layers">;
|
|
1050
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1051
|
-
type: z.ZodLiteral<"unit">;
|
|
1052
|
-
unit: z.ZodType<"number" | import("@webstudio-is/css-engine").__Unit, z.ZodTypeDef, "number" | import("@webstudio-is/css-engine").__Unit>;
|
|
1053
|
-
value: z.ZodNumber;
|
|
1054
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1055
|
-
}, "strip", z.ZodTypeAny, {
|
|
1056
|
-
value: number;
|
|
1057
|
-
type: "unit";
|
|
1058
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1059
|
-
hidden?: boolean | undefined;
|
|
1060
|
-
}, {
|
|
1061
|
-
value: number;
|
|
1062
|
-
type: "unit";
|
|
1063
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1064
|
-
hidden?: boolean | undefined;
|
|
1065
|
-
}>, z.ZodObject<{
|
|
1066
|
-
type: z.ZodLiteral<"keyword">;
|
|
1067
|
-
value: z.ZodString;
|
|
1068
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1069
|
-
}, "strip", z.ZodTypeAny, {
|
|
1070
|
-
value: string;
|
|
1071
|
-
type: "keyword";
|
|
1072
|
-
hidden?: boolean | undefined;
|
|
1073
|
-
}, {
|
|
1074
|
-
value: string;
|
|
1075
|
-
type: "keyword";
|
|
1076
|
-
hidden?: boolean | undefined;
|
|
1077
|
-
}>, z.ZodObject<{
|
|
1078
|
-
type: z.ZodLiteral<"unparsed">;
|
|
1079
|
-
value: z.ZodString;
|
|
1080
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1081
|
-
}, "strip", z.ZodTypeAny, {
|
|
1082
|
-
value: string;
|
|
1083
|
-
type: "unparsed";
|
|
1084
|
-
hidden?: boolean | undefined;
|
|
1085
|
-
}, {
|
|
1086
|
-
value: string;
|
|
1087
|
-
type: "unparsed";
|
|
1088
|
-
hidden?: boolean | undefined;
|
|
1089
|
-
}>, z.ZodObject<{
|
|
1090
|
-
type: z.ZodLiteral<"image">;
|
|
1091
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
1092
|
-
type: z.ZodLiteral<"asset">;
|
|
1093
|
-
value: z.ZodString;
|
|
1094
|
-
}, "strip", z.ZodTypeAny, {
|
|
1095
|
-
value: string;
|
|
1096
|
-
type: "asset";
|
|
1097
|
-
}, {
|
|
1098
|
-
value: string;
|
|
1099
|
-
type: "asset";
|
|
1100
|
-
}>, z.ZodObject<{
|
|
1101
|
-
type: z.ZodLiteral<"url">;
|
|
1102
|
-
url: z.ZodString;
|
|
1103
|
-
}, "strip", z.ZodTypeAny, {
|
|
1104
|
-
type: "url";
|
|
1105
|
-
url: string;
|
|
1106
|
-
}, {
|
|
1107
|
-
type: "url";
|
|
1108
|
-
url: string;
|
|
1109
|
-
}>]>;
|
|
1110
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1111
|
-
}, "strip", z.ZodTypeAny, {
|
|
1112
|
-
value: {
|
|
1113
|
-
value: string;
|
|
1114
|
-
type: "asset";
|
|
1115
|
-
} | {
|
|
1116
|
-
type: "url";
|
|
1117
|
-
url: string;
|
|
1118
|
-
};
|
|
1119
|
-
type: "image";
|
|
1120
|
-
hidden?: boolean | undefined;
|
|
1121
|
-
}, {
|
|
1122
|
-
value: {
|
|
1123
|
-
value: string;
|
|
1124
|
-
type: "asset";
|
|
1125
|
-
} | {
|
|
1126
|
-
type: "url";
|
|
1127
|
-
url: string;
|
|
1128
|
-
};
|
|
1129
|
-
type: "image";
|
|
1130
|
-
hidden?: boolean | undefined;
|
|
1131
|
-
}>, z.ZodObject<{
|
|
1132
|
-
type: z.ZodLiteral<"tuple">;
|
|
1133
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1134
|
-
type: z.ZodLiteral<"unit">;
|
|
1135
|
-
unit: z.ZodType<"number" | import("@webstudio-is/css-engine").__Unit, z.ZodTypeDef, "number" | import("@webstudio-is/css-engine").__Unit>;
|
|
1136
|
-
value: z.ZodNumber;
|
|
1137
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1138
|
-
}, "strip", z.ZodTypeAny, {
|
|
1139
|
-
value: number;
|
|
1140
|
-
type: "unit";
|
|
1141
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1142
|
-
hidden?: boolean | undefined;
|
|
1143
|
-
}, {
|
|
1144
|
-
value: number;
|
|
1145
|
-
type: "unit";
|
|
1146
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1147
|
-
hidden?: boolean | undefined;
|
|
1148
|
-
}>, z.ZodObject<{
|
|
1149
|
-
type: z.ZodLiteral<"keyword">;
|
|
1150
|
-
value: z.ZodString;
|
|
1151
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1152
|
-
}, "strip", z.ZodTypeAny, {
|
|
1153
|
-
value: string;
|
|
1154
|
-
type: "keyword";
|
|
1155
|
-
hidden?: boolean | undefined;
|
|
1156
|
-
}, {
|
|
1157
|
-
value: string;
|
|
1158
|
-
type: "keyword";
|
|
1159
|
-
hidden?: boolean | undefined;
|
|
1160
|
-
}>, z.ZodObject<{
|
|
1161
|
-
type: z.ZodLiteral<"unparsed">;
|
|
1162
|
-
value: z.ZodString;
|
|
1163
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1164
|
-
}, "strip", z.ZodTypeAny, {
|
|
1165
|
-
value: string;
|
|
1166
|
-
type: "unparsed";
|
|
1167
|
-
hidden?: boolean | undefined;
|
|
1168
|
-
}, {
|
|
1169
|
-
value: string;
|
|
1170
|
-
type: "unparsed";
|
|
1171
|
-
hidden?: boolean | undefined;
|
|
1172
|
-
}>, z.ZodObject<{
|
|
1173
|
-
type: z.ZodLiteral<"image">;
|
|
1174
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
1175
|
-
type: z.ZodLiteral<"asset">;
|
|
1176
|
-
value: z.ZodString;
|
|
1177
|
-
}, "strip", z.ZodTypeAny, {
|
|
1178
|
-
value: string;
|
|
1179
|
-
type: "asset";
|
|
1180
|
-
}, {
|
|
1181
|
-
value: string;
|
|
1182
|
-
type: "asset";
|
|
1183
|
-
}>, z.ZodObject<{
|
|
1184
|
-
type: z.ZodLiteral<"url">;
|
|
1185
|
-
url: z.ZodString;
|
|
1186
|
-
}, "strip", z.ZodTypeAny, {
|
|
1187
|
-
type: "url";
|
|
1188
|
-
url: string;
|
|
1189
|
-
}, {
|
|
1190
|
-
type: "url";
|
|
1191
|
-
url: string;
|
|
1192
|
-
}>]>;
|
|
1193
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1194
|
-
}, "strip", z.ZodTypeAny, {
|
|
1195
|
-
value: {
|
|
1196
|
-
value: string;
|
|
1197
|
-
type: "asset";
|
|
1198
|
-
} | {
|
|
1199
|
-
type: "url";
|
|
1200
|
-
url: string;
|
|
1201
|
-
};
|
|
1202
|
-
type: "image";
|
|
1203
|
-
hidden?: boolean | undefined;
|
|
1204
|
-
}, {
|
|
1205
|
-
value: {
|
|
1206
|
-
value: string;
|
|
1207
|
-
type: "asset";
|
|
1208
|
-
} | {
|
|
1209
|
-
type: "url";
|
|
1210
|
-
url: string;
|
|
1211
|
-
};
|
|
1212
|
-
type: "image";
|
|
1213
|
-
hidden?: boolean | undefined;
|
|
1214
|
-
}>, z.ZodObject<{
|
|
1215
|
-
type: z.ZodLiteral<"rgb">;
|
|
1216
|
-
r: z.ZodNumber;
|
|
1217
|
-
g: z.ZodNumber;
|
|
1218
|
-
b: z.ZodNumber;
|
|
1219
|
-
alpha: z.ZodNumber;
|
|
1220
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1221
|
-
}, "strip", z.ZodTypeAny, {
|
|
1222
|
-
type: "rgb";
|
|
1223
|
-
r: number;
|
|
1224
|
-
g: number;
|
|
1225
|
-
b: number;
|
|
1226
|
-
alpha: number;
|
|
1227
|
-
hidden?: boolean | undefined;
|
|
1228
|
-
}, {
|
|
1229
|
-
type: "rgb";
|
|
1230
|
-
r: number;
|
|
1231
|
-
g: number;
|
|
1232
|
-
b: number;
|
|
1233
|
-
alpha: number;
|
|
1234
|
-
hidden?: boolean | undefined;
|
|
1235
|
-
}>, z.ZodType<{
|
|
1236
|
-
type: "function";
|
|
1237
|
-
name: string;
|
|
1238
|
-
args: StyleValue;
|
|
1239
|
-
hidden?: boolean;
|
|
1240
|
-
}, z.ZodTypeDef, {
|
|
1241
|
-
type: "function";
|
|
1242
|
-
name: string;
|
|
1243
|
-
args: StyleValue;
|
|
1244
|
-
hidden?: boolean;
|
|
1245
|
-
}>]>, "many">;
|
|
1246
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1247
|
-
}, "strip", z.ZodTypeAny, {
|
|
1248
|
-
value: ({
|
|
1249
|
-
value: number;
|
|
1250
|
-
type: "unit";
|
|
1251
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1252
|
-
hidden?: boolean | undefined;
|
|
1253
|
-
} | {
|
|
1254
|
-
value: string;
|
|
1255
|
-
type: "keyword";
|
|
1256
|
-
hidden?: boolean | undefined;
|
|
1257
|
-
} | {
|
|
1258
|
-
value: string;
|
|
1259
|
-
type: "unparsed";
|
|
1260
|
-
hidden?: boolean | undefined;
|
|
1261
|
-
} | {
|
|
1262
|
-
type: "rgb";
|
|
1263
|
-
r: number;
|
|
1264
|
-
g: number;
|
|
1265
|
-
b: number;
|
|
1266
|
-
alpha: number;
|
|
1267
|
-
hidden?: boolean | undefined;
|
|
1268
|
-
} | {
|
|
1269
|
-
type: "function";
|
|
1270
|
-
name: string;
|
|
1271
|
-
args: StyleValue;
|
|
1272
|
-
hidden?: boolean;
|
|
1273
|
-
} | {
|
|
1274
|
-
value: {
|
|
1275
|
-
value: string;
|
|
1276
|
-
type: "asset";
|
|
1277
|
-
} | {
|
|
1278
|
-
type: "url";
|
|
1279
|
-
url: string;
|
|
1280
|
-
};
|
|
1281
|
-
type: "image";
|
|
1282
|
-
hidden?: boolean | undefined;
|
|
1283
|
-
})[];
|
|
1284
|
-
type: "tuple";
|
|
1285
|
-
hidden?: boolean | undefined;
|
|
1286
|
-
}, {
|
|
1287
|
-
value: ({
|
|
1288
|
-
value: number;
|
|
1289
|
-
type: "unit";
|
|
1290
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1291
|
-
hidden?: boolean | undefined;
|
|
1292
|
-
} | {
|
|
1293
|
-
value: string;
|
|
1294
|
-
type: "keyword";
|
|
1295
|
-
hidden?: boolean | undefined;
|
|
1296
|
-
} | {
|
|
1297
|
-
value: string;
|
|
1298
|
-
type: "unparsed";
|
|
1299
|
-
hidden?: boolean | undefined;
|
|
1300
|
-
} | {
|
|
1301
|
-
type: "rgb";
|
|
1302
|
-
r: number;
|
|
1303
|
-
g: number;
|
|
1304
|
-
b: number;
|
|
1305
|
-
alpha: number;
|
|
1306
|
-
hidden?: boolean | undefined;
|
|
1307
|
-
} | {
|
|
1308
|
-
type: "function";
|
|
1309
|
-
name: string;
|
|
1310
|
-
args: StyleValue;
|
|
1311
|
-
hidden?: boolean;
|
|
1312
|
-
} | {
|
|
1313
|
-
value: {
|
|
1314
|
-
value: string;
|
|
1315
|
-
type: "asset";
|
|
1316
|
-
} | {
|
|
1317
|
-
type: "url";
|
|
1318
|
-
url: string;
|
|
1319
|
-
};
|
|
1320
|
-
type: "image";
|
|
1321
|
-
hidden?: boolean | undefined;
|
|
1322
|
-
})[];
|
|
1323
|
-
type: "tuple";
|
|
1324
|
-
hidden?: boolean | undefined;
|
|
1325
|
-
}>, z.ZodObject<{
|
|
1326
|
-
type: z.ZodLiteral<"rgb">;
|
|
1327
|
-
r: z.ZodNumber;
|
|
1328
|
-
g: z.ZodNumber;
|
|
1329
|
-
b: z.ZodNumber;
|
|
1330
|
-
alpha: z.ZodNumber;
|
|
1331
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1332
|
-
}, "strip", z.ZodTypeAny, {
|
|
1333
|
-
type: "rgb";
|
|
1334
|
-
r: number;
|
|
1335
|
-
g: number;
|
|
1336
|
-
b: number;
|
|
1337
|
-
alpha: number;
|
|
1338
|
-
hidden?: boolean | undefined;
|
|
1339
|
-
}, {
|
|
1340
|
-
type: "rgb";
|
|
1341
|
-
r: number;
|
|
1342
|
-
g: number;
|
|
1343
|
-
b: number;
|
|
1344
|
-
alpha: number;
|
|
1345
|
-
hidden?: boolean | undefined;
|
|
1346
|
-
}>, z.ZodObject<{
|
|
1347
|
-
type: z.ZodLiteral<"invalid">;
|
|
1348
|
-
value: z.ZodString;
|
|
1349
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1350
|
-
}, "strip", z.ZodTypeAny, {
|
|
1351
|
-
value: string;
|
|
1352
|
-
type: "invalid";
|
|
1353
|
-
hidden?: boolean | undefined;
|
|
1354
|
-
}, {
|
|
1355
|
-
value: string;
|
|
1356
|
-
type: "invalid";
|
|
1357
|
-
hidden?: boolean | undefined;
|
|
1358
|
-
}>, z.ZodType<{
|
|
1359
|
-
type: "function";
|
|
1360
|
-
name: string;
|
|
1361
|
-
args: StyleValue;
|
|
1362
|
-
hidden?: boolean;
|
|
1363
|
-
}, z.ZodTypeDef, {
|
|
1364
|
-
type: "function";
|
|
1365
|
-
name: string;
|
|
1366
|
-
args: StyleValue;
|
|
1367
|
-
hidden?: boolean;
|
|
1368
|
-
}>]>, "many">;
|
|
1369
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1370
|
-
}, "strip", z.ZodTypeAny, {
|
|
1371
|
-
value: ({
|
|
1372
|
-
value: number;
|
|
1373
|
-
type: "unit";
|
|
1374
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1375
|
-
hidden?: boolean | undefined;
|
|
1376
|
-
} | {
|
|
1377
|
-
value: string;
|
|
1378
|
-
type: "keyword";
|
|
1379
|
-
hidden?: boolean | undefined;
|
|
1380
|
-
} | {
|
|
1381
|
-
value: string;
|
|
1382
|
-
type: "unparsed";
|
|
1383
|
-
hidden?: boolean | undefined;
|
|
1384
|
-
} | {
|
|
1385
|
-
type: "rgb";
|
|
1386
|
-
r: number;
|
|
1387
|
-
g: number;
|
|
1388
|
-
b: number;
|
|
1389
|
-
alpha: number;
|
|
1390
|
-
hidden?: boolean | undefined;
|
|
1391
|
-
} | {
|
|
1392
|
-
type: "function";
|
|
1393
|
-
name: string;
|
|
1394
|
-
args: StyleValue;
|
|
1395
|
-
hidden?: boolean;
|
|
1396
|
-
} | {
|
|
1397
|
-
value: {
|
|
1398
|
-
value: string;
|
|
1399
|
-
type: "asset";
|
|
1400
|
-
} | {
|
|
1401
|
-
type: "url";
|
|
1402
|
-
url: string;
|
|
1403
|
-
};
|
|
1404
|
-
type: "image";
|
|
1405
|
-
hidden?: boolean | undefined;
|
|
1406
|
-
} | {
|
|
1407
|
-
value: ({
|
|
1408
|
-
value: number;
|
|
1409
|
-
type: "unit";
|
|
1410
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1411
|
-
hidden?: boolean | undefined;
|
|
1412
|
-
} | {
|
|
1413
|
-
value: string;
|
|
1414
|
-
type: "keyword";
|
|
1415
|
-
hidden?: boolean | undefined;
|
|
1416
|
-
} | {
|
|
1417
|
-
value: string;
|
|
1418
|
-
type: "unparsed";
|
|
1419
|
-
hidden?: boolean | undefined;
|
|
1420
|
-
} | {
|
|
1421
|
-
type: "rgb";
|
|
1422
|
-
r: number;
|
|
1423
|
-
g: number;
|
|
1424
|
-
b: number;
|
|
1425
|
-
alpha: number;
|
|
1426
|
-
hidden?: boolean | undefined;
|
|
1427
|
-
} | {
|
|
1428
|
-
type: "function";
|
|
1429
|
-
name: string;
|
|
1430
|
-
args: StyleValue;
|
|
1431
|
-
hidden?: boolean;
|
|
1432
|
-
} | {
|
|
1433
|
-
value: {
|
|
1434
|
-
value: string;
|
|
1435
|
-
type: "asset";
|
|
1436
|
-
} | {
|
|
1437
|
-
type: "url";
|
|
1438
|
-
url: string;
|
|
1439
|
-
};
|
|
1440
|
-
type: "image";
|
|
1441
|
-
hidden?: boolean | undefined;
|
|
1442
|
-
})[];
|
|
1443
|
-
type: "tuple";
|
|
1444
|
-
hidden?: boolean | undefined;
|
|
1445
|
-
} | {
|
|
1446
|
-
value: string;
|
|
1447
|
-
type: "invalid";
|
|
1448
|
-
hidden?: boolean | undefined;
|
|
1449
|
-
})[];
|
|
1450
|
-
type: "layers";
|
|
1451
|
-
hidden?: boolean | undefined;
|
|
1452
|
-
}, {
|
|
1453
|
-
value: ({
|
|
1454
|
-
value: number;
|
|
1455
|
-
type: "unit";
|
|
1456
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1457
|
-
hidden?: boolean | undefined;
|
|
1458
|
-
} | {
|
|
1459
|
-
value: string;
|
|
1460
|
-
type: "keyword";
|
|
1461
|
-
hidden?: boolean | undefined;
|
|
1462
|
-
} | {
|
|
1463
|
-
value: string;
|
|
1464
|
-
type: "unparsed";
|
|
1465
|
-
hidden?: boolean | undefined;
|
|
1466
|
-
} | {
|
|
1467
|
-
type: "rgb";
|
|
1468
|
-
r: number;
|
|
1469
|
-
g: number;
|
|
1470
|
-
b: number;
|
|
1471
|
-
alpha: number;
|
|
1472
|
-
hidden?: boolean | undefined;
|
|
1473
|
-
} | {
|
|
1474
|
-
type: "function";
|
|
1475
|
-
name: string;
|
|
1476
|
-
args: StyleValue;
|
|
1477
|
-
hidden?: boolean;
|
|
1478
|
-
} | {
|
|
1479
|
-
value: {
|
|
1480
|
-
value: string;
|
|
1481
|
-
type: "asset";
|
|
1482
|
-
} | {
|
|
1483
|
-
type: "url";
|
|
1484
|
-
url: string;
|
|
1485
|
-
};
|
|
1486
|
-
type: "image";
|
|
1487
|
-
hidden?: boolean | undefined;
|
|
1488
|
-
} | {
|
|
1489
|
-
value: ({
|
|
1490
|
-
value: number;
|
|
1491
|
-
type: "unit";
|
|
1492
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1493
|
-
hidden?: boolean | undefined;
|
|
1494
|
-
} | {
|
|
1495
|
-
value: string;
|
|
1496
|
-
type: "keyword";
|
|
1497
|
-
hidden?: boolean | undefined;
|
|
1498
|
-
} | {
|
|
1499
|
-
value: string;
|
|
1500
|
-
type: "unparsed";
|
|
1501
|
-
hidden?: boolean | undefined;
|
|
1502
|
-
} | {
|
|
1503
|
-
type: "rgb";
|
|
1504
|
-
r: number;
|
|
1505
|
-
g: number;
|
|
1506
|
-
b: number;
|
|
1507
|
-
alpha: number;
|
|
1508
|
-
hidden?: boolean | undefined;
|
|
1509
|
-
} | {
|
|
1510
|
-
type: "function";
|
|
1511
|
-
name: string;
|
|
1512
|
-
args: StyleValue;
|
|
1513
|
-
hidden?: boolean;
|
|
1514
|
-
} | {
|
|
1515
|
-
value: {
|
|
1516
|
-
value: string;
|
|
1517
|
-
type: "asset";
|
|
1518
|
-
} | {
|
|
1519
|
-
type: "url";
|
|
1520
|
-
url: string;
|
|
1521
|
-
};
|
|
1522
|
-
type: "image";
|
|
1523
|
-
hidden?: boolean | undefined;
|
|
1524
|
-
})[];
|
|
1525
|
-
type: "tuple";
|
|
1526
|
-
hidden?: boolean | undefined;
|
|
1527
|
-
} | {
|
|
1528
|
-
value: string;
|
|
1529
|
-
type: "invalid";
|
|
1530
|
-
hidden?: boolean | undefined;
|
|
1531
|
-
})[];
|
|
1532
|
-
type: "layers";
|
|
1533
|
-
hidden?: boolean | undefined;
|
|
1534
|
-
}>, z.ZodObject<{
|
|
1535
|
-
type: z.ZodLiteral<"unit">;
|
|
1536
|
-
unit: z.ZodType<"number" | import("@webstudio-is/css-engine").__Unit, z.ZodTypeDef, "number" | import("@webstudio-is/css-engine").__Unit>;
|
|
1537
|
-
value: z.ZodNumber;
|
|
1538
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1539
|
-
}, "strip", z.ZodTypeAny, {
|
|
1540
|
-
value: number;
|
|
1541
|
-
type: "unit";
|
|
1542
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1543
|
-
hidden?: boolean | undefined;
|
|
1544
|
-
}, {
|
|
1545
|
-
value: number;
|
|
1546
|
-
type: "unit";
|
|
1547
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1548
|
-
hidden?: boolean | undefined;
|
|
1549
|
-
}>, z.ZodObject<{
|
|
1550
|
-
type: z.ZodLiteral<"keyword">;
|
|
1551
|
-
value: z.ZodString;
|
|
1552
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1553
|
-
}, "strip", z.ZodTypeAny, {
|
|
1554
|
-
value: string;
|
|
1555
|
-
type: "keyword";
|
|
1556
|
-
hidden?: boolean | undefined;
|
|
1557
|
-
}, {
|
|
1558
|
-
value: string;
|
|
1559
|
-
type: "keyword";
|
|
1560
|
-
hidden?: boolean | undefined;
|
|
1561
|
-
}>, z.ZodObject<{
|
|
1562
|
-
type: z.ZodLiteral<"fontFamily">;
|
|
1563
|
-
value: z.ZodArray<z.ZodString, "many">;
|
|
1564
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1565
|
-
}, "strip", z.ZodTypeAny, {
|
|
1566
|
-
value: string[];
|
|
1567
|
-
type: "fontFamily";
|
|
1568
|
-
hidden?: boolean | undefined;
|
|
1569
|
-
}, {
|
|
1570
|
-
value: string[];
|
|
1571
|
-
type: "fontFamily";
|
|
1572
|
-
hidden?: boolean | undefined;
|
|
1573
|
-
}>, z.ZodObject<{
|
|
1574
|
-
type: z.ZodLiteral<"rgb">;
|
|
1575
|
-
r: z.ZodNumber;
|
|
1576
|
-
g: z.ZodNumber;
|
|
1577
|
-
b: z.ZodNumber;
|
|
1578
|
-
alpha: z.ZodNumber;
|
|
1579
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1580
|
-
}, "strip", z.ZodTypeAny, {
|
|
1581
|
-
type: "rgb";
|
|
1582
|
-
r: number;
|
|
1583
|
-
g: number;
|
|
1584
|
-
b: number;
|
|
1585
|
-
alpha: number;
|
|
1586
|
-
hidden?: boolean | undefined;
|
|
1587
|
-
}, {
|
|
1588
|
-
type: "rgb";
|
|
1589
|
-
r: number;
|
|
1590
|
-
g: number;
|
|
1591
|
-
b: number;
|
|
1592
|
-
alpha: number;
|
|
1593
|
-
hidden?: boolean | undefined;
|
|
1594
|
-
}>, z.ZodObject<{
|
|
1595
|
-
type: z.ZodLiteral<"unparsed">;
|
|
1596
|
-
value: z.ZodString;
|
|
1597
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1598
|
-
}, "strip", z.ZodTypeAny, {
|
|
1599
|
-
value: string;
|
|
1600
|
-
type: "unparsed";
|
|
1601
|
-
hidden?: boolean | undefined;
|
|
1602
|
-
}, {
|
|
1603
|
-
value: string;
|
|
1604
|
-
type: "unparsed";
|
|
1605
|
-
hidden?: boolean | undefined;
|
|
1606
|
-
}>, z.ZodObject<{
|
|
1607
|
-
type: z.ZodLiteral<"tuple">;
|
|
1608
|
-
value: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
1609
|
-
type: z.ZodLiteral<"unit">;
|
|
1610
|
-
unit: z.ZodType<"number" | import("@webstudio-is/css-engine").__Unit, z.ZodTypeDef, "number" | import("@webstudio-is/css-engine").__Unit>;
|
|
1611
|
-
value: z.ZodNumber;
|
|
1612
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1613
|
-
}, "strip", z.ZodTypeAny, {
|
|
1614
|
-
value: number;
|
|
1615
|
-
type: "unit";
|
|
1616
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1617
|
-
hidden?: boolean | undefined;
|
|
1618
|
-
}, {
|
|
1619
|
-
value: number;
|
|
1620
|
-
type: "unit";
|
|
1621
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1622
|
-
hidden?: boolean | undefined;
|
|
1623
|
-
}>, z.ZodObject<{
|
|
1624
|
-
type: z.ZodLiteral<"keyword">;
|
|
1625
|
-
value: z.ZodString;
|
|
1626
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1627
|
-
}, "strip", z.ZodTypeAny, {
|
|
1628
|
-
value: string;
|
|
1629
|
-
type: "keyword";
|
|
1630
|
-
hidden?: boolean | undefined;
|
|
1631
|
-
}, {
|
|
1632
|
-
value: string;
|
|
1633
|
-
type: "keyword";
|
|
1634
|
-
hidden?: boolean | undefined;
|
|
1635
|
-
}>, z.ZodObject<{
|
|
1636
|
-
type: z.ZodLiteral<"unparsed">;
|
|
1637
|
-
value: z.ZodString;
|
|
1638
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1639
|
-
}, "strip", z.ZodTypeAny, {
|
|
1640
|
-
value: string;
|
|
1641
|
-
type: "unparsed";
|
|
1642
|
-
hidden?: boolean | undefined;
|
|
1643
|
-
}, {
|
|
1644
|
-
value: string;
|
|
1645
|
-
type: "unparsed";
|
|
1646
|
-
hidden?: boolean | undefined;
|
|
1647
|
-
}>, z.ZodObject<{
|
|
1648
|
-
type: z.ZodLiteral<"image">;
|
|
1649
|
-
value: z.ZodUnion<[z.ZodObject<{
|
|
1650
|
-
type: z.ZodLiteral<"asset">;
|
|
1651
|
-
value: z.ZodString;
|
|
1652
|
-
}, "strip", z.ZodTypeAny, {
|
|
1653
|
-
value: string;
|
|
1654
|
-
type: "asset";
|
|
1655
|
-
}, {
|
|
1656
|
-
value: string;
|
|
1657
|
-
type: "asset";
|
|
1658
|
-
}>, z.ZodObject<{
|
|
1659
|
-
type: z.ZodLiteral<"url">;
|
|
1660
|
-
url: z.ZodString;
|
|
1661
|
-
}, "strip", z.ZodTypeAny, {
|
|
1662
|
-
type: "url";
|
|
1663
|
-
url: string;
|
|
1664
|
-
}, {
|
|
1665
|
-
type: "url";
|
|
1666
|
-
url: string;
|
|
1667
|
-
}>]>;
|
|
1668
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1669
|
-
}, "strip", z.ZodTypeAny, {
|
|
1670
|
-
value: {
|
|
1671
|
-
value: string;
|
|
1672
|
-
type: "asset";
|
|
1673
|
-
} | {
|
|
1674
|
-
type: "url";
|
|
1675
|
-
url: string;
|
|
1676
|
-
};
|
|
1677
|
-
type: "image";
|
|
1678
|
-
hidden?: boolean | undefined;
|
|
1679
|
-
}, {
|
|
1680
|
-
value: {
|
|
1681
|
-
value: string;
|
|
1682
|
-
type: "asset";
|
|
1683
|
-
} | {
|
|
1684
|
-
type: "url";
|
|
1685
|
-
url: string;
|
|
1686
|
-
};
|
|
1687
|
-
type: "image";
|
|
1688
|
-
hidden?: boolean | undefined;
|
|
1689
|
-
}>, z.ZodObject<{
|
|
1690
|
-
type: z.ZodLiteral<"rgb">;
|
|
1691
|
-
r: z.ZodNumber;
|
|
1692
|
-
g: z.ZodNumber;
|
|
1693
|
-
b: z.ZodNumber;
|
|
1694
|
-
alpha: z.ZodNumber;
|
|
1695
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1696
|
-
}, "strip", z.ZodTypeAny, {
|
|
1697
|
-
type: "rgb";
|
|
1698
|
-
r: number;
|
|
1699
|
-
g: number;
|
|
1700
|
-
b: number;
|
|
1701
|
-
alpha: number;
|
|
1702
|
-
hidden?: boolean | undefined;
|
|
1703
|
-
}, {
|
|
1704
|
-
type: "rgb";
|
|
1705
|
-
r: number;
|
|
1706
|
-
g: number;
|
|
1707
|
-
b: number;
|
|
1708
|
-
alpha: number;
|
|
1709
|
-
hidden?: boolean | undefined;
|
|
1710
|
-
}>, z.ZodType<{
|
|
1711
|
-
type: "function";
|
|
1712
|
-
name: string;
|
|
1713
|
-
args: StyleValue;
|
|
1714
|
-
hidden?: boolean;
|
|
1715
|
-
}, z.ZodTypeDef, {
|
|
1716
|
-
type: "function";
|
|
1717
|
-
name: string;
|
|
1718
|
-
args: StyleValue;
|
|
1719
|
-
hidden?: boolean;
|
|
1720
|
-
}>]>, "many">;
|
|
1721
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1722
|
-
}, "strip", z.ZodTypeAny, {
|
|
1723
|
-
value: ({
|
|
1724
|
-
value: number;
|
|
1725
|
-
type: "unit";
|
|
1726
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1727
|
-
hidden?: boolean | undefined;
|
|
1728
|
-
} | {
|
|
1729
|
-
value: string;
|
|
1730
|
-
type: "keyword";
|
|
1731
|
-
hidden?: boolean | undefined;
|
|
1732
|
-
} | {
|
|
1733
|
-
value: string;
|
|
1734
|
-
type: "unparsed";
|
|
1735
|
-
hidden?: boolean | undefined;
|
|
1736
|
-
} | {
|
|
1737
|
-
type: "rgb";
|
|
1738
|
-
r: number;
|
|
1739
|
-
g: number;
|
|
1740
|
-
b: number;
|
|
1741
|
-
alpha: number;
|
|
1742
|
-
hidden?: boolean | undefined;
|
|
1743
|
-
} | {
|
|
1744
|
-
type: "function";
|
|
1745
|
-
name: string;
|
|
1746
|
-
args: StyleValue;
|
|
1747
|
-
hidden?: boolean;
|
|
1748
|
-
} | {
|
|
1749
|
-
value: {
|
|
1750
|
-
value: string;
|
|
1751
|
-
type: "asset";
|
|
1752
|
-
} | {
|
|
1753
|
-
type: "url";
|
|
1754
|
-
url: string;
|
|
1755
|
-
};
|
|
1756
|
-
type: "image";
|
|
1757
|
-
hidden?: boolean | undefined;
|
|
1758
|
-
})[];
|
|
1759
|
-
type: "tuple";
|
|
1760
|
-
hidden?: boolean | undefined;
|
|
1761
|
-
}, {
|
|
1762
|
-
value: ({
|
|
1763
|
-
value: number;
|
|
1764
|
-
type: "unit";
|
|
1765
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1766
|
-
hidden?: boolean | undefined;
|
|
1767
|
-
} | {
|
|
1768
|
-
value: string;
|
|
1769
|
-
type: "keyword";
|
|
1770
|
-
hidden?: boolean | undefined;
|
|
1771
|
-
} | {
|
|
1772
|
-
value: string;
|
|
1773
|
-
type: "unparsed";
|
|
1774
|
-
hidden?: boolean | undefined;
|
|
1775
|
-
} | {
|
|
1776
|
-
type: "rgb";
|
|
1777
|
-
r: number;
|
|
1778
|
-
g: number;
|
|
1779
|
-
b: number;
|
|
1780
|
-
alpha: number;
|
|
1781
|
-
hidden?: boolean | undefined;
|
|
1782
|
-
} | {
|
|
1783
|
-
type: "function";
|
|
1784
|
-
name: string;
|
|
1785
|
-
args: StyleValue;
|
|
1786
|
-
hidden?: boolean;
|
|
1787
|
-
} | {
|
|
1788
|
-
value: {
|
|
1789
|
-
value: string;
|
|
1790
|
-
type: "asset";
|
|
1791
|
-
} | {
|
|
1792
|
-
type: "url";
|
|
1793
|
-
url: string;
|
|
1794
|
-
};
|
|
1795
|
-
type: "image";
|
|
1796
|
-
hidden?: boolean | undefined;
|
|
1797
|
-
})[];
|
|
1798
|
-
type: "tuple";
|
|
1799
|
-
hidden?: boolean | undefined;
|
|
1800
|
-
}>, z.ZodType<{
|
|
1801
|
-
type: "function";
|
|
1802
|
-
name: string;
|
|
1803
|
-
args: StyleValue;
|
|
1804
|
-
hidden?: boolean;
|
|
1805
|
-
}, z.ZodTypeDef, {
|
|
1806
|
-
type: "function";
|
|
1807
|
-
name: string;
|
|
1808
|
-
args: StyleValue;
|
|
1809
|
-
hidden?: boolean;
|
|
1810
|
-
}>, z.ZodObject<{
|
|
1811
|
-
type: z.ZodLiteral<"guaranteedInvalid">;
|
|
1812
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1813
|
-
}, "strip", z.ZodTypeAny, {
|
|
1814
|
-
type: "guaranteedInvalid";
|
|
1815
|
-
hidden?: boolean | undefined;
|
|
1816
|
-
}, {
|
|
1817
|
-
type: "guaranteedInvalid";
|
|
1818
|
-
hidden?: boolean | undefined;
|
|
1819
|
-
}>]>, "many">;
|
|
1820
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1821
|
-
}, "strip", z.ZodTypeAny, {
|
|
1822
|
-
value: string;
|
|
1823
|
-
type: "var";
|
|
1824
|
-
fallbacks: ({
|
|
1825
|
-
value: number;
|
|
1826
|
-
type: "unit";
|
|
1827
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1828
|
-
hidden?: boolean | undefined;
|
|
1829
|
-
} | {
|
|
1830
|
-
value: string;
|
|
1831
|
-
type: "keyword";
|
|
1832
|
-
hidden?: boolean | undefined;
|
|
1833
|
-
} | {
|
|
1834
|
-
value: string;
|
|
1835
|
-
type: "unparsed";
|
|
1836
|
-
hidden?: boolean | undefined;
|
|
1837
|
-
} | {
|
|
1838
|
-
value: string[];
|
|
1839
|
-
type: "fontFamily";
|
|
1840
|
-
hidden?: boolean | undefined;
|
|
1841
|
-
} | {
|
|
1842
|
-
type: "rgb";
|
|
1843
|
-
r: number;
|
|
1844
|
-
g: number;
|
|
1845
|
-
b: number;
|
|
1846
|
-
alpha: number;
|
|
1847
|
-
hidden?: boolean | undefined;
|
|
1848
|
-
} | {
|
|
1849
|
-
type: "function";
|
|
1850
|
-
name: string;
|
|
1851
|
-
args: StyleValue;
|
|
1852
|
-
hidden?: boolean;
|
|
1853
|
-
} | {
|
|
1854
|
-
value: {
|
|
1855
|
-
value: string;
|
|
1856
|
-
type: "asset";
|
|
1857
|
-
} | {
|
|
1858
|
-
type: "url";
|
|
1859
|
-
url: string;
|
|
1860
|
-
};
|
|
1861
|
-
type: "image";
|
|
1862
|
-
hidden?: boolean | undefined;
|
|
1863
|
-
} | {
|
|
1864
|
-
value: ({
|
|
1865
|
-
value: number;
|
|
1866
|
-
type: "unit";
|
|
1867
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1868
|
-
hidden?: boolean | undefined;
|
|
1869
|
-
} | {
|
|
1870
|
-
value: string;
|
|
1871
|
-
type: "keyword";
|
|
1872
|
-
hidden?: boolean | undefined;
|
|
1873
|
-
} | {
|
|
1874
|
-
value: string;
|
|
1875
|
-
type: "unparsed";
|
|
1876
|
-
hidden?: boolean | undefined;
|
|
1877
|
-
} | {
|
|
1878
|
-
type: "rgb";
|
|
1879
|
-
r: number;
|
|
1880
|
-
g: number;
|
|
1881
|
-
b: number;
|
|
1882
|
-
alpha: number;
|
|
1883
|
-
hidden?: boolean | undefined;
|
|
1884
|
-
} | {
|
|
1885
|
-
type: "function";
|
|
1886
|
-
name: string;
|
|
1887
|
-
args: StyleValue;
|
|
1888
|
-
hidden?: boolean;
|
|
1889
|
-
} | {
|
|
1890
|
-
value: {
|
|
1891
|
-
value: string;
|
|
1892
|
-
type: "asset";
|
|
1893
|
-
} | {
|
|
1894
|
-
type: "url";
|
|
1895
|
-
url: string;
|
|
1896
|
-
};
|
|
1897
|
-
type: "image";
|
|
1898
|
-
hidden?: boolean | undefined;
|
|
1899
|
-
})[];
|
|
1900
|
-
type: "tuple";
|
|
1901
|
-
hidden?: boolean | undefined;
|
|
1902
|
-
} | {
|
|
1903
|
-
value: ({
|
|
1904
|
-
value: number;
|
|
1905
|
-
type: "unit";
|
|
1906
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1907
|
-
hidden?: boolean | undefined;
|
|
1908
|
-
} | {
|
|
1909
|
-
value: string;
|
|
1910
|
-
type: "keyword";
|
|
1911
|
-
hidden?: boolean | undefined;
|
|
1912
|
-
} | {
|
|
1913
|
-
value: string;
|
|
1914
|
-
type: "unparsed";
|
|
1915
|
-
hidden?: boolean | undefined;
|
|
1916
|
-
} | {
|
|
1917
|
-
type: "rgb";
|
|
1918
|
-
r: number;
|
|
1919
|
-
g: number;
|
|
1920
|
-
b: number;
|
|
1921
|
-
alpha: number;
|
|
1922
|
-
hidden?: boolean | undefined;
|
|
1923
|
-
} | {
|
|
1924
|
-
type: "function";
|
|
1925
|
-
name: string;
|
|
1926
|
-
args: StyleValue;
|
|
1927
|
-
hidden?: boolean;
|
|
1928
|
-
} | {
|
|
1929
|
-
value: {
|
|
1930
|
-
value: string;
|
|
1931
|
-
type: "asset";
|
|
1932
|
-
} | {
|
|
1933
|
-
type: "url";
|
|
1934
|
-
url: string;
|
|
1935
|
-
};
|
|
1936
|
-
type: "image";
|
|
1937
|
-
hidden?: boolean | undefined;
|
|
1938
|
-
} | {
|
|
1939
|
-
value: ({
|
|
1940
|
-
value: number;
|
|
1941
|
-
type: "unit";
|
|
1942
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1943
|
-
hidden?: boolean | undefined;
|
|
1944
|
-
} | {
|
|
1945
|
-
value: string;
|
|
1946
|
-
type: "keyword";
|
|
1947
|
-
hidden?: boolean | undefined;
|
|
1948
|
-
} | {
|
|
1949
|
-
value: string;
|
|
1950
|
-
type: "unparsed";
|
|
1951
|
-
hidden?: boolean | undefined;
|
|
1952
|
-
} | {
|
|
1953
|
-
type: "rgb";
|
|
1954
|
-
r: number;
|
|
1955
|
-
g: number;
|
|
1956
|
-
b: number;
|
|
1957
|
-
alpha: number;
|
|
1958
|
-
hidden?: boolean | undefined;
|
|
1959
|
-
} | {
|
|
1960
|
-
type: "function";
|
|
1961
|
-
name: string;
|
|
1962
|
-
args: StyleValue;
|
|
1963
|
-
hidden?: boolean;
|
|
1964
|
-
} | {
|
|
1965
|
-
value: {
|
|
1966
|
-
value: string;
|
|
1967
|
-
type: "asset";
|
|
1968
|
-
} | {
|
|
1969
|
-
type: "url";
|
|
1970
|
-
url: string;
|
|
1971
|
-
};
|
|
1972
|
-
type: "image";
|
|
1973
|
-
hidden?: boolean | undefined;
|
|
1974
|
-
})[];
|
|
1975
|
-
type: "tuple";
|
|
1976
|
-
hidden?: boolean | undefined;
|
|
1977
|
-
} | {
|
|
1978
|
-
value: string;
|
|
1979
|
-
type: "invalid";
|
|
1980
|
-
hidden?: boolean | undefined;
|
|
1981
|
-
})[];
|
|
1982
|
-
type: "layers";
|
|
1983
|
-
hidden?: boolean | undefined;
|
|
1984
|
-
} | {
|
|
1985
|
-
type: "guaranteedInvalid";
|
|
1986
|
-
hidden?: boolean | undefined;
|
|
1987
|
-
})[];
|
|
1988
|
-
hidden?: boolean | undefined;
|
|
1989
|
-
}, {
|
|
1990
|
-
value: string;
|
|
1991
|
-
type: "var";
|
|
1992
|
-
fallbacks: ({
|
|
1993
|
-
value: number;
|
|
1994
|
-
type: "unit";
|
|
1995
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
1996
|
-
hidden?: boolean | undefined;
|
|
1997
|
-
} | {
|
|
1998
1280
|
value: string;
|
|
1999
|
-
type: "
|
|
1281
|
+
type: "unparsed";
|
|
2000
1282
|
hidden?: boolean | undefined;
|
|
2001
|
-
}
|
|
1283
|
+
}, {
|
|
2002
1284
|
value: string;
|
|
2003
1285
|
type: "unparsed";
|
|
2004
1286
|
hidden?: boolean | undefined;
|
|
2005
|
-
}
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
hidden
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
g: number;
|
|
2013
|
-
b: number;
|
|
2014
|
-
alpha: number;
|
|
2015
|
-
hidden?: boolean | undefined;
|
|
2016
|
-
} | {
|
|
2017
|
-
type: "function";
|
|
2018
|
-
name: string;
|
|
2019
|
-
args: StyleValue;
|
|
2020
|
-
hidden?: boolean;
|
|
2021
|
-
} | {
|
|
2022
|
-
value: {
|
|
2023
|
-
value: string;
|
|
2024
|
-
type: "asset";
|
|
2025
|
-
} | {
|
|
2026
|
-
type: "url";
|
|
2027
|
-
url: string;
|
|
2028
|
-
};
|
|
2029
|
-
type: "image";
|
|
2030
|
-
hidden?: boolean | undefined;
|
|
2031
|
-
} | {
|
|
2032
|
-
value: ({
|
|
2033
|
-
value: number;
|
|
2034
|
-
type: "unit";
|
|
2035
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2036
|
-
hidden?: boolean | undefined;
|
|
2037
|
-
} | {
|
|
2038
|
-
value: string;
|
|
2039
|
-
type: "keyword";
|
|
2040
|
-
hidden?: boolean | undefined;
|
|
2041
|
-
} | {
|
|
2042
|
-
value: string;
|
|
2043
|
-
type: "unparsed";
|
|
2044
|
-
hidden?: boolean | undefined;
|
|
2045
|
-
} | {
|
|
2046
|
-
type: "rgb";
|
|
2047
|
-
r: number;
|
|
2048
|
-
g: number;
|
|
2049
|
-
b: number;
|
|
2050
|
-
alpha: number;
|
|
2051
|
-
hidden?: boolean | undefined;
|
|
2052
|
-
} | {
|
|
2053
|
-
type: "function";
|
|
2054
|
-
name: string;
|
|
2055
|
-
args: StyleValue;
|
|
2056
|
-
hidden?: boolean;
|
|
2057
|
-
} | {
|
|
2058
|
-
value: {
|
|
2059
|
-
value: string;
|
|
2060
|
-
type: "asset";
|
|
2061
|
-
} | {
|
|
2062
|
-
type: "url";
|
|
2063
|
-
url: string;
|
|
2064
|
-
};
|
|
2065
|
-
type: "image";
|
|
2066
|
-
hidden?: boolean | undefined;
|
|
2067
|
-
})[];
|
|
2068
|
-
type: "tuple";
|
|
1287
|
+
}>, z.ZodObject<{
|
|
1288
|
+
type: z.ZodLiteral<"keyword">;
|
|
1289
|
+
value: z.ZodString;
|
|
1290
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1291
|
+
}, "strip", z.ZodTypeAny, {
|
|
1292
|
+
value: string;
|
|
1293
|
+
type: "keyword";
|
|
2069
1294
|
hidden?: boolean | undefined;
|
|
2070
|
-
}
|
|
2071
|
-
value:
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
type: "unparsed";
|
|
2083
|
-
hidden?: boolean | undefined;
|
|
2084
|
-
} | {
|
|
2085
|
-
type: "rgb";
|
|
2086
|
-
r: number;
|
|
2087
|
-
g: number;
|
|
2088
|
-
b: number;
|
|
2089
|
-
alpha: number;
|
|
2090
|
-
hidden?: boolean | undefined;
|
|
2091
|
-
} | {
|
|
2092
|
-
type: "function";
|
|
2093
|
-
name: string;
|
|
2094
|
-
args: StyleValue;
|
|
2095
|
-
hidden?: boolean;
|
|
2096
|
-
} | {
|
|
2097
|
-
value: {
|
|
2098
|
-
value: string;
|
|
2099
|
-
type: "asset";
|
|
2100
|
-
} | {
|
|
2101
|
-
type: "url";
|
|
2102
|
-
url: string;
|
|
2103
|
-
};
|
|
2104
|
-
type: "image";
|
|
2105
|
-
hidden?: boolean | undefined;
|
|
2106
|
-
} | {
|
|
2107
|
-
value: ({
|
|
2108
|
-
value: number;
|
|
2109
|
-
type: "unit";
|
|
2110
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2111
|
-
hidden?: boolean | undefined;
|
|
2112
|
-
} | {
|
|
2113
|
-
value: string;
|
|
2114
|
-
type: "keyword";
|
|
2115
|
-
hidden?: boolean | undefined;
|
|
2116
|
-
} | {
|
|
2117
|
-
value: string;
|
|
2118
|
-
type: "unparsed";
|
|
2119
|
-
hidden?: boolean | undefined;
|
|
2120
|
-
} | {
|
|
2121
|
-
type: "rgb";
|
|
2122
|
-
r: number;
|
|
2123
|
-
g: number;
|
|
2124
|
-
b: number;
|
|
2125
|
-
alpha: number;
|
|
2126
|
-
hidden?: boolean | undefined;
|
|
2127
|
-
} | {
|
|
2128
|
-
type: "function";
|
|
2129
|
-
name: string;
|
|
2130
|
-
args: StyleValue;
|
|
2131
|
-
hidden?: boolean;
|
|
2132
|
-
} | {
|
|
2133
|
-
value: {
|
|
2134
|
-
value: string;
|
|
2135
|
-
type: "asset";
|
|
2136
|
-
} | {
|
|
2137
|
-
type: "url";
|
|
2138
|
-
url: string;
|
|
2139
|
-
};
|
|
2140
|
-
type: "image";
|
|
2141
|
-
hidden?: boolean | undefined;
|
|
2142
|
-
})[];
|
|
2143
|
-
type: "tuple";
|
|
2144
|
-
hidden?: boolean | undefined;
|
|
2145
|
-
} | {
|
|
2146
|
-
value: string;
|
|
2147
|
-
type: "invalid";
|
|
2148
|
-
hidden?: boolean | undefined;
|
|
2149
|
-
})[];
|
|
2150
|
-
type: "layers";
|
|
1295
|
+
}, {
|
|
1296
|
+
value: string;
|
|
1297
|
+
type: "keyword";
|
|
1298
|
+
hidden?: boolean | undefined;
|
|
1299
|
+
}>]>>;
|
|
1300
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1301
|
+
}, "strip", z.ZodTypeAny, {
|
|
1302
|
+
value: string;
|
|
1303
|
+
type: "var";
|
|
1304
|
+
fallback?: {
|
|
1305
|
+
value: string;
|
|
1306
|
+
type: "keyword";
|
|
2151
1307
|
hidden?: boolean | undefined;
|
|
2152
1308
|
} | {
|
|
2153
|
-
|
|
1309
|
+
value: string;
|
|
1310
|
+
type: "unparsed";
|
|
2154
1311
|
hidden?: boolean | undefined;
|
|
2155
|
-
}
|
|
1312
|
+
} | undefined;
|
|
1313
|
+
hidden?: boolean | undefined;
|
|
1314
|
+
}, {
|
|
1315
|
+
value: string;
|
|
1316
|
+
type: "var";
|
|
1317
|
+
fallback?: {
|
|
1318
|
+
value: string;
|
|
1319
|
+
type: "keyword";
|
|
1320
|
+
hidden?: boolean | undefined;
|
|
1321
|
+
} | {
|
|
1322
|
+
value: string;
|
|
1323
|
+
type: "unparsed";
|
|
1324
|
+
hidden?: boolean | undefined;
|
|
1325
|
+
} | undefined;
|
|
2156
1326
|
hidden?: boolean | undefined;
|
|
2157
1327
|
}>]>;
|
|
2158
1328
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2196,12 +1366,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2196
1366
|
type: "image";
|
|
2197
1367
|
hidden?: boolean | undefined;
|
|
2198
1368
|
} | {
|
|
2199
|
-
value:
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2203
|
-
hidden?: boolean | undefined;
|
|
2204
|
-
} | {
|
|
1369
|
+
value: string;
|
|
1370
|
+
type: "var";
|
|
1371
|
+
fallback?: {
|
|
2205
1372
|
value: string;
|
|
2206
1373
|
type: "keyword";
|
|
2207
1374
|
hidden?: boolean | undefined;
|
|
@@ -2209,34 +1376,7 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2209
1376
|
value: string;
|
|
2210
1377
|
type: "unparsed";
|
|
2211
1378
|
hidden?: boolean | undefined;
|
|
2212
|
-
} |
|
|
2213
|
-
type: "rgb";
|
|
2214
|
-
r: number;
|
|
2215
|
-
g: number;
|
|
2216
|
-
b: number;
|
|
2217
|
-
alpha: number;
|
|
2218
|
-
hidden?: boolean | undefined;
|
|
2219
|
-
} | {
|
|
2220
|
-
type: "function";
|
|
2221
|
-
name: string;
|
|
2222
|
-
args: StyleValue;
|
|
2223
|
-
hidden?: boolean;
|
|
2224
|
-
} | {
|
|
2225
|
-
value: {
|
|
2226
|
-
value: string;
|
|
2227
|
-
type: "asset";
|
|
2228
|
-
} | {
|
|
2229
|
-
type: "url";
|
|
2230
|
-
url: string;
|
|
2231
|
-
};
|
|
2232
|
-
type: "image";
|
|
2233
|
-
hidden?: boolean | undefined;
|
|
2234
|
-
})[];
|
|
2235
|
-
type: "tuple";
|
|
2236
|
-
hidden?: boolean | undefined;
|
|
2237
|
-
} | {
|
|
2238
|
-
value: string;
|
|
2239
|
-
type: "invalid";
|
|
1379
|
+
} | undefined;
|
|
2240
1380
|
hidden?: boolean | undefined;
|
|
2241
1381
|
} | {
|
|
2242
1382
|
value: ({
|
|
@@ -2275,12 +1415,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2275
1415
|
type: "image";
|
|
2276
1416
|
hidden?: boolean | undefined;
|
|
2277
1417
|
} | {
|
|
2278
|
-
value:
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2282
|
-
hidden?: boolean | undefined;
|
|
2283
|
-
} | {
|
|
1418
|
+
value: string;
|
|
1419
|
+
type: "var";
|
|
1420
|
+
fallback?: {
|
|
2284
1421
|
value: string;
|
|
2285
1422
|
type: "keyword";
|
|
2286
1423
|
hidden?: boolean | undefined;
|
|
@@ -2288,49 +1425,17 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2288
1425
|
value: string;
|
|
2289
1426
|
type: "unparsed";
|
|
2290
1427
|
hidden?: boolean | undefined;
|
|
2291
|
-
} |
|
|
2292
|
-
type: "rgb";
|
|
2293
|
-
r: number;
|
|
2294
|
-
g: number;
|
|
2295
|
-
b: number;
|
|
2296
|
-
alpha: number;
|
|
2297
|
-
hidden?: boolean | undefined;
|
|
2298
|
-
} | {
|
|
2299
|
-
type: "function";
|
|
2300
|
-
name: string;
|
|
2301
|
-
args: StyleValue;
|
|
2302
|
-
hidden?: boolean;
|
|
2303
|
-
} | {
|
|
2304
|
-
value: {
|
|
2305
|
-
value: string;
|
|
2306
|
-
type: "asset";
|
|
2307
|
-
} | {
|
|
2308
|
-
type: "url";
|
|
2309
|
-
url: string;
|
|
2310
|
-
};
|
|
2311
|
-
type: "image";
|
|
2312
|
-
hidden?: boolean | undefined;
|
|
2313
|
-
})[];
|
|
2314
|
-
type: "tuple";
|
|
2315
|
-
hidden?: boolean | undefined;
|
|
2316
|
-
} | {
|
|
2317
|
-
value: string;
|
|
2318
|
-
type: "invalid";
|
|
1428
|
+
} | undefined;
|
|
2319
1429
|
hidden?: boolean | undefined;
|
|
2320
1430
|
})[];
|
|
2321
|
-
type: "
|
|
2322
|
-
hidden?: boolean | undefined;
|
|
2323
|
-
} | {
|
|
2324
|
-
type: "guaranteedInvalid";
|
|
1431
|
+
type: "tuple";
|
|
2325
1432
|
hidden?: boolean | undefined;
|
|
2326
1433
|
} | {
|
|
2327
|
-
value:
|
|
2328
|
-
type: "
|
|
1434
|
+
value: string;
|
|
1435
|
+
type: "invalid";
|
|
2329
1436
|
hidden?: boolean | undefined;
|
|
2330
1437
|
} | {
|
|
2331
|
-
value:
|
|
2332
|
-
type: "var";
|
|
2333
|
-
fallbacks: ({
|
|
1438
|
+
value: ({
|
|
2334
1439
|
value: number;
|
|
2335
1440
|
type: "unit";
|
|
2336
1441
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
@@ -2343,10 +1448,6 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2343
1448
|
value: string;
|
|
2344
1449
|
type: "unparsed";
|
|
2345
1450
|
hidden?: boolean | undefined;
|
|
2346
|
-
} | {
|
|
2347
|
-
value: string[];
|
|
2348
|
-
type: "fontFamily";
|
|
2349
|
-
hidden?: boolean | undefined;
|
|
2350
1451
|
} | {
|
|
2351
1452
|
type: "rgb";
|
|
2352
1453
|
r: number;
|
|
@@ -2370,12 +1471,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2370
1471
|
type: "image";
|
|
2371
1472
|
hidden?: boolean | undefined;
|
|
2372
1473
|
} | {
|
|
2373
|
-
value:
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2377
|
-
hidden?: boolean | undefined;
|
|
2378
|
-
} | {
|
|
1474
|
+
value: string;
|
|
1475
|
+
type: "var";
|
|
1476
|
+
fallback?: {
|
|
2379
1477
|
value: string;
|
|
2380
1478
|
type: "keyword";
|
|
2381
1479
|
hidden?: boolean | undefined;
|
|
@@ -2383,30 +1481,7 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2383
1481
|
value: string;
|
|
2384
1482
|
type: "unparsed";
|
|
2385
1483
|
hidden?: boolean | undefined;
|
|
2386
|
-
} |
|
|
2387
|
-
type: "rgb";
|
|
2388
|
-
r: number;
|
|
2389
|
-
g: number;
|
|
2390
|
-
b: number;
|
|
2391
|
-
alpha: number;
|
|
2392
|
-
hidden?: boolean | undefined;
|
|
2393
|
-
} | {
|
|
2394
|
-
type: "function";
|
|
2395
|
-
name: string;
|
|
2396
|
-
args: StyleValue;
|
|
2397
|
-
hidden?: boolean;
|
|
2398
|
-
} | {
|
|
2399
|
-
value: {
|
|
2400
|
-
value: string;
|
|
2401
|
-
type: "asset";
|
|
2402
|
-
} | {
|
|
2403
|
-
type: "url";
|
|
2404
|
-
url: string;
|
|
2405
|
-
};
|
|
2406
|
-
type: "image";
|
|
2407
|
-
hidden?: boolean | undefined;
|
|
2408
|
-
})[];
|
|
2409
|
-
type: "tuple";
|
|
1484
|
+
} | undefined;
|
|
2410
1485
|
hidden?: boolean | undefined;
|
|
2411
1486
|
} | {
|
|
2412
1487
|
value: ({
|
|
@@ -2445,12 +1520,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2445
1520
|
type: "image";
|
|
2446
1521
|
hidden?: boolean | undefined;
|
|
2447
1522
|
} | {
|
|
2448
|
-
value:
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2452
|
-
hidden?: boolean | undefined;
|
|
2453
|
-
} | {
|
|
1523
|
+
value: string;
|
|
1524
|
+
type: "var";
|
|
1525
|
+
fallback?: {
|
|
2454
1526
|
value: string;
|
|
2455
1527
|
type: "keyword";
|
|
2456
1528
|
hidden?: boolean | undefined;
|
|
@@ -2458,42 +1530,24 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2458
1530
|
value: string;
|
|
2459
1531
|
type: "unparsed";
|
|
2460
1532
|
hidden?: boolean | undefined;
|
|
2461
|
-
} |
|
|
2462
|
-
type: "rgb";
|
|
2463
|
-
r: number;
|
|
2464
|
-
g: number;
|
|
2465
|
-
b: number;
|
|
2466
|
-
alpha: number;
|
|
2467
|
-
hidden?: boolean | undefined;
|
|
2468
|
-
} | {
|
|
2469
|
-
type: "function";
|
|
2470
|
-
name: string;
|
|
2471
|
-
args: StyleValue;
|
|
2472
|
-
hidden?: boolean;
|
|
2473
|
-
} | {
|
|
2474
|
-
value: {
|
|
2475
|
-
value: string;
|
|
2476
|
-
type: "asset";
|
|
2477
|
-
} | {
|
|
2478
|
-
type: "url";
|
|
2479
|
-
url: string;
|
|
2480
|
-
};
|
|
2481
|
-
type: "image";
|
|
2482
|
-
hidden?: boolean | undefined;
|
|
2483
|
-
})[];
|
|
2484
|
-
type: "tuple";
|
|
2485
|
-
hidden?: boolean | undefined;
|
|
2486
|
-
} | {
|
|
2487
|
-
value: string;
|
|
2488
|
-
type: "invalid";
|
|
1533
|
+
} | undefined;
|
|
2489
1534
|
hidden?: boolean | undefined;
|
|
2490
1535
|
})[];
|
|
2491
|
-
type: "
|
|
1536
|
+
type: "tuple";
|
|
2492
1537
|
hidden?: boolean | undefined;
|
|
2493
1538
|
} | {
|
|
2494
|
-
|
|
1539
|
+
value: string;
|
|
1540
|
+
type: "invalid";
|
|
2495
1541
|
hidden?: boolean | undefined;
|
|
2496
1542
|
})[];
|
|
1543
|
+
type: "layers";
|
|
1544
|
+
hidden?: boolean | undefined;
|
|
1545
|
+
} | {
|
|
1546
|
+
type: "guaranteedInvalid";
|
|
1547
|
+
hidden?: boolean | undefined;
|
|
1548
|
+
} | {
|
|
1549
|
+
value: "";
|
|
1550
|
+
type: "unset";
|
|
2497
1551
|
hidden?: boolean | undefined;
|
|
2498
1552
|
};
|
|
2499
1553
|
property: string;
|
|
@@ -2539,12 +1593,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2539
1593
|
type: "image";
|
|
2540
1594
|
hidden?: boolean | undefined;
|
|
2541
1595
|
} | {
|
|
2542
|
-
value:
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2546
|
-
hidden?: boolean | undefined;
|
|
2547
|
-
} | {
|
|
1596
|
+
value: string;
|
|
1597
|
+
type: "var";
|
|
1598
|
+
fallback?: {
|
|
2548
1599
|
value: string;
|
|
2549
1600
|
type: "keyword";
|
|
2550
1601
|
hidden?: boolean | undefined;
|
|
@@ -2552,34 +1603,7 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2552
1603
|
value: string;
|
|
2553
1604
|
type: "unparsed";
|
|
2554
1605
|
hidden?: boolean | undefined;
|
|
2555
|
-
} |
|
|
2556
|
-
type: "rgb";
|
|
2557
|
-
r: number;
|
|
2558
|
-
g: number;
|
|
2559
|
-
b: number;
|
|
2560
|
-
alpha: number;
|
|
2561
|
-
hidden?: boolean | undefined;
|
|
2562
|
-
} | {
|
|
2563
|
-
type: "function";
|
|
2564
|
-
name: string;
|
|
2565
|
-
args: StyleValue;
|
|
2566
|
-
hidden?: boolean;
|
|
2567
|
-
} | {
|
|
2568
|
-
value: {
|
|
2569
|
-
value: string;
|
|
2570
|
-
type: "asset";
|
|
2571
|
-
} | {
|
|
2572
|
-
type: "url";
|
|
2573
|
-
url: string;
|
|
2574
|
-
};
|
|
2575
|
-
type: "image";
|
|
2576
|
-
hidden?: boolean | undefined;
|
|
2577
|
-
})[];
|
|
2578
|
-
type: "tuple";
|
|
2579
|
-
hidden?: boolean | undefined;
|
|
2580
|
-
} | {
|
|
2581
|
-
value: string;
|
|
2582
|
-
type: "invalid";
|
|
1606
|
+
} | undefined;
|
|
2583
1607
|
hidden?: boolean | undefined;
|
|
2584
1608
|
} | {
|
|
2585
1609
|
value: ({
|
|
@@ -2608,72 +1632,37 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2608
1632
|
args: StyleValue;
|
|
2609
1633
|
hidden?: boolean;
|
|
2610
1634
|
} | {
|
|
2611
|
-
value: {
|
|
2612
|
-
value: string;
|
|
2613
|
-
type: "asset";
|
|
2614
|
-
} | {
|
|
2615
|
-
type: "url";
|
|
2616
|
-
url: string;
|
|
2617
|
-
};
|
|
2618
|
-
type: "image";
|
|
2619
|
-
hidden?: boolean | undefined;
|
|
2620
|
-
} | {
|
|
2621
|
-
value: ({
|
|
2622
|
-
value: number;
|
|
2623
|
-
type: "unit";
|
|
2624
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2625
|
-
hidden?: boolean | undefined;
|
|
2626
|
-
} | {
|
|
2627
|
-
value: string;
|
|
2628
|
-
type: "keyword";
|
|
2629
|
-
hidden?: boolean | undefined;
|
|
2630
|
-
} | {
|
|
2631
|
-
value: string;
|
|
2632
|
-
type: "unparsed";
|
|
2633
|
-
hidden?: boolean | undefined;
|
|
2634
|
-
} | {
|
|
2635
|
-
type: "rgb";
|
|
2636
|
-
r: number;
|
|
2637
|
-
g: number;
|
|
2638
|
-
b: number;
|
|
2639
|
-
alpha: number;
|
|
2640
|
-
hidden?: boolean | undefined;
|
|
2641
|
-
} | {
|
|
2642
|
-
type: "function";
|
|
2643
|
-
name: string;
|
|
2644
|
-
args: StyleValue;
|
|
2645
|
-
hidden?: boolean;
|
|
1635
|
+
value: {
|
|
1636
|
+
value: string;
|
|
1637
|
+
type: "asset";
|
|
2646
1638
|
} | {
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
type: "url";
|
|
2652
|
-
url: string;
|
|
2653
|
-
};
|
|
2654
|
-
type: "image";
|
|
2655
|
-
hidden?: boolean | undefined;
|
|
2656
|
-
})[];
|
|
2657
|
-
type: "tuple";
|
|
1639
|
+
type: "url";
|
|
1640
|
+
url: string;
|
|
1641
|
+
};
|
|
1642
|
+
type: "image";
|
|
2658
1643
|
hidden?: boolean | undefined;
|
|
2659
1644
|
} | {
|
|
2660
1645
|
value: string;
|
|
2661
|
-
type: "
|
|
1646
|
+
type: "var";
|
|
1647
|
+
fallback?: {
|
|
1648
|
+
value: string;
|
|
1649
|
+
type: "keyword";
|
|
1650
|
+
hidden?: boolean | undefined;
|
|
1651
|
+
} | {
|
|
1652
|
+
value: string;
|
|
1653
|
+
type: "unparsed";
|
|
1654
|
+
hidden?: boolean | undefined;
|
|
1655
|
+
} | undefined;
|
|
2662
1656
|
hidden?: boolean | undefined;
|
|
2663
1657
|
})[];
|
|
2664
|
-
type: "
|
|
2665
|
-
hidden?: boolean | undefined;
|
|
2666
|
-
} | {
|
|
2667
|
-
type: "guaranteedInvalid";
|
|
1658
|
+
type: "tuple";
|
|
2668
1659
|
hidden?: boolean | undefined;
|
|
2669
1660
|
} | {
|
|
2670
|
-
value:
|
|
2671
|
-
type: "
|
|
1661
|
+
value: string;
|
|
1662
|
+
type: "invalid";
|
|
2672
1663
|
hidden?: boolean | undefined;
|
|
2673
1664
|
} | {
|
|
2674
|
-
value:
|
|
2675
|
-
type: "var";
|
|
2676
|
-
fallbacks: ({
|
|
1665
|
+
value: ({
|
|
2677
1666
|
value: number;
|
|
2678
1667
|
type: "unit";
|
|
2679
1668
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
@@ -2686,10 +1675,6 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2686
1675
|
value: string;
|
|
2687
1676
|
type: "unparsed";
|
|
2688
1677
|
hidden?: boolean | undefined;
|
|
2689
|
-
} | {
|
|
2690
|
-
value: string[];
|
|
2691
|
-
type: "fontFamily";
|
|
2692
|
-
hidden?: boolean | undefined;
|
|
2693
1678
|
} | {
|
|
2694
1679
|
type: "rgb";
|
|
2695
1680
|
r: number;
|
|
@@ -2713,12 +1698,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2713
1698
|
type: "image";
|
|
2714
1699
|
hidden?: boolean | undefined;
|
|
2715
1700
|
} | {
|
|
2716
|
-
value:
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2720
|
-
hidden?: boolean | undefined;
|
|
2721
|
-
} | {
|
|
1701
|
+
value: string;
|
|
1702
|
+
type: "var";
|
|
1703
|
+
fallback?: {
|
|
2722
1704
|
value: string;
|
|
2723
1705
|
type: "keyword";
|
|
2724
1706
|
hidden?: boolean | undefined;
|
|
@@ -2726,30 +1708,7 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2726
1708
|
value: string;
|
|
2727
1709
|
type: "unparsed";
|
|
2728
1710
|
hidden?: boolean | undefined;
|
|
2729
|
-
} |
|
|
2730
|
-
type: "rgb";
|
|
2731
|
-
r: number;
|
|
2732
|
-
g: number;
|
|
2733
|
-
b: number;
|
|
2734
|
-
alpha: number;
|
|
2735
|
-
hidden?: boolean | undefined;
|
|
2736
|
-
} | {
|
|
2737
|
-
type: "function";
|
|
2738
|
-
name: string;
|
|
2739
|
-
args: StyleValue;
|
|
2740
|
-
hidden?: boolean;
|
|
2741
|
-
} | {
|
|
2742
|
-
value: {
|
|
2743
|
-
value: string;
|
|
2744
|
-
type: "asset";
|
|
2745
|
-
} | {
|
|
2746
|
-
type: "url";
|
|
2747
|
-
url: string;
|
|
2748
|
-
};
|
|
2749
|
-
type: "image";
|
|
2750
|
-
hidden?: boolean | undefined;
|
|
2751
|
-
})[];
|
|
2752
|
-
type: "tuple";
|
|
1711
|
+
} | undefined;
|
|
2753
1712
|
hidden?: boolean | undefined;
|
|
2754
1713
|
} | {
|
|
2755
1714
|
value: ({
|
|
@@ -2788,12 +1747,9 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2788
1747
|
type: "image";
|
|
2789
1748
|
hidden?: boolean | undefined;
|
|
2790
1749
|
} | {
|
|
2791
|
-
value:
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2795
|
-
hidden?: boolean | undefined;
|
|
2796
|
-
} | {
|
|
1750
|
+
value: string;
|
|
1751
|
+
type: "var";
|
|
1752
|
+
fallback?: {
|
|
2797
1753
|
value: string;
|
|
2798
1754
|
type: "keyword";
|
|
2799
1755
|
hidden?: boolean | undefined;
|
|
@@ -2801,42 +1757,24 @@ declare const EmbedTemplateStyleDeclRaw: z.ZodObject<{
|
|
|
2801
1757
|
value: string;
|
|
2802
1758
|
type: "unparsed";
|
|
2803
1759
|
hidden?: boolean | undefined;
|
|
2804
|
-
} |
|
|
2805
|
-
type: "rgb";
|
|
2806
|
-
r: number;
|
|
2807
|
-
g: number;
|
|
2808
|
-
b: number;
|
|
2809
|
-
alpha: number;
|
|
2810
|
-
hidden?: boolean | undefined;
|
|
2811
|
-
} | {
|
|
2812
|
-
type: "function";
|
|
2813
|
-
name: string;
|
|
2814
|
-
args: StyleValue;
|
|
2815
|
-
hidden?: boolean;
|
|
2816
|
-
} | {
|
|
2817
|
-
value: {
|
|
2818
|
-
value: string;
|
|
2819
|
-
type: "asset";
|
|
2820
|
-
} | {
|
|
2821
|
-
type: "url";
|
|
2822
|
-
url: string;
|
|
2823
|
-
};
|
|
2824
|
-
type: "image";
|
|
2825
|
-
hidden?: boolean | undefined;
|
|
2826
|
-
})[];
|
|
2827
|
-
type: "tuple";
|
|
2828
|
-
hidden?: boolean | undefined;
|
|
2829
|
-
} | {
|
|
2830
|
-
value: string;
|
|
2831
|
-
type: "invalid";
|
|
1760
|
+
} | undefined;
|
|
2832
1761
|
hidden?: boolean | undefined;
|
|
2833
1762
|
})[];
|
|
2834
|
-
type: "
|
|
1763
|
+
type: "tuple";
|
|
2835
1764
|
hidden?: boolean | undefined;
|
|
2836
1765
|
} | {
|
|
2837
|
-
|
|
1766
|
+
value: string;
|
|
1767
|
+
type: "invalid";
|
|
2838
1768
|
hidden?: boolean | undefined;
|
|
2839
1769
|
})[];
|
|
1770
|
+
type: "layers";
|
|
1771
|
+
hidden?: boolean | undefined;
|
|
1772
|
+
} | {
|
|
1773
|
+
type: "guaranteedInvalid";
|
|
1774
|
+
hidden?: boolean | undefined;
|
|
1775
|
+
} | {
|
|
1776
|
+
value: "";
|
|
1777
|
+
type: "unset";
|
|
2840
1778
|
hidden?: boolean | undefined;
|
|
2841
1779
|
};
|
|
2842
1780
|
property: string;
|
|
@@ -2943,12 +1881,9 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
2943
1881
|
type: "image";
|
|
2944
1882
|
hidden?: boolean | undefined;
|
|
2945
1883
|
} | {
|
|
2946
|
-
value:
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
2950
|
-
hidden?: boolean | undefined;
|
|
2951
|
-
} | {
|
|
1884
|
+
value: string;
|
|
1885
|
+
type: "var";
|
|
1886
|
+
fallback?: {
|
|
2952
1887
|
value: string;
|
|
2953
1888
|
type: "keyword";
|
|
2954
1889
|
hidden?: boolean | undefined;
|
|
@@ -2956,34 +1891,7 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
2956
1891
|
value: string;
|
|
2957
1892
|
type: "unparsed";
|
|
2958
1893
|
hidden?: boolean | undefined;
|
|
2959
|
-
} |
|
|
2960
|
-
type: "rgb";
|
|
2961
|
-
r: number;
|
|
2962
|
-
g: number;
|
|
2963
|
-
b: number;
|
|
2964
|
-
alpha: number;
|
|
2965
|
-
hidden?: boolean | undefined;
|
|
2966
|
-
} | {
|
|
2967
|
-
type: "function";
|
|
2968
|
-
name: string;
|
|
2969
|
-
args: StyleValue;
|
|
2970
|
-
hidden?: boolean;
|
|
2971
|
-
} | {
|
|
2972
|
-
value: {
|
|
2973
|
-
value: string;
|
|
2974
|
-
type: "asset";
|
|
2975
|
-
} | {
|
|
2976
|
-
type: "url";
|
|
2977
|
-
url: string;
|
|
2978
|
-
};
|
|
2979
|
-
type: "image";
|
|
2980
|
-
hidden?: boolean | undefined;
|
|
2981
|
-
})[];
|
|
2982
|
-
type: "tuple";
|
|
2983
|
-
hidden?: boolean | undefined;
|
|
2984
|
-
} | {
|
|
2985
|
-
value: string;
|
|
2986
|
-
type: "invalid";
|
|
1894
|
+
} | undefined;
|
|
2987
1895
|
hidden?: boolean | undefined;
|
|
2988
1896
|
} | {
|
|
2989
1897
|
value: ({
|
|
@@ -3022,12 +1930,9 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3022
1930
|
type: "image";
|
|
3023
1931
|
hidden?: boolean | undefined;
|
|
3024
1932
|
} | {
|
|
3025
|
-
value:
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3029
|
-
hidden?: boolean | undefined;
|
|
3030
|
-
} | {
|
|
1933
|
+
value: string;
|
|
1934
|
+
type: "var";
|
|
1935
|
+
fallback?: {
|
|
3031
1936
|
value: string;
|
|
3032
1937
|
type: "keyword";
|
|
3033
1938
|
hidden?: boolean | undefined;
|
|
@@ -3035,49 +1940,17 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3035
1940
|
value: string;
|
|
3036
1941
|
type: "unparsed";
|
|
3037
1942
|
hidden?: boolean | undefined;
|
|
3038
|
-
} |
|
|
3039
|
-
type: "rgb";
|
|
3040
|
-
r: number;
|
|
3041
|
-
g: number;
|
|
3042
|
-
b: number;
|
|
3043
|
-
alpha: number;
|
|
3044
|
-
hidden?: boolean | undefined;
|
|
3045
|
-
} | {
|
|
3046
|
-
type: "function";
|
|
3047
|
-
name: string;
|
|
3048
|
-
args: StyleValue;
|
|
3049
|
-
hidden?: boolean;
|
|
3050
|
-
} | {
|
|
3051
|
-
value: {
|
|
3052
|
-
value: string;
|
|
3053
|
-
type: "asset";
|
|
3054
|
-
} | {
|
|
3055
|
-
type: "url";
|
|
3056
|
-
url: string;
|
|
3057
|
-
};
|
|
3058
|
-
type: "image";
|
|
3059
|
-
hidden?: boolean | undefined;
|
|
3060
|
-
})[];
|
|
3061
|
-
type: "tuple";
|
|
3062
|
-
hidden?: boolean | undefined;
|
|
3063
|
-
} | {
|
|
3064
|
-
value: string;
|
|
3065
|
-
type: "invalid";
|
|
1943
|
+
} | undefined;
|
|
3066
1944
|
hidden?: boolean | undefined;
|
|
3067
1945
|
})[];
|
|
3068
|
-
type: "
|
|
3069
|
-
hidden?: boolean | undefined;
|
|
3070
|
-
} | {
|
|
3071
|
-
type: "guaranteedInvalid";
|
|
1946
|
+
type: "tuple";
|
|
3072
1947
|
hidden?: boolean | undefined;
|
|
3073
1948
|
} | {
|
|
3074
|
-
value:
|
|
3075
|
-
type: "
|
|
1949
|
+
value: string;
|
|
1950
|
+
type: "invalid";
|
|
3076
1951
|
hidden?: boolean | undefined;
|
|
3077
1952
|
} | {
|
|
3078
|
-
value:
|
|
3079
|
-
type: "var";
|
|
3080
|
-
fallbacks: ({
|
|
1953
|
+
value: ({
|
|
3081
1954
|
value: number;
|
|
3082
1955
|
type: "unit";
|
|
3083
1956
|
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
@@ -3090,10 +1963,6 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3090
1963
|
value: string;
|
|
3091
1964
|
type: "unparsed";
|
|
3092
1965
|
hidden?: boolean | undefined;
|
|
3093
|
-
} | {
|
|
3094
|
-
value: string[];
|
|
3095
|
-
type: "fontFamily";
|
|
3096
|
-
hidden?: boolean | undefined;
|
|
3097
1966
|
} | {
|
|
3098
1967
|
type: "rgb";
|
|
3099
1968
|
r: number;
|
|
@@ -3117,12 +1986,9 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3117
1986
|
type: "image";
|
|
3118
1987
|
hidden?: boolean | undefined;
|
|
3119
1988
|
} | {
|
|
3120
|
-
value:
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3124
|
-
hidden?: boolean | undefined;
|
|
3125
|
-
} | {
|
|
1989
|
+
value: string;
|
|
1990
|
+
type: "var";
|
|
1991
|
+
fallback?: {
|
|
3126
1992
|
value: string;
|
|
3127
1993
|
type: "keyword";
|
|
3128
1994
|
hidden?: boolean | undefined;
|
|
@@ -3130,30 +1996,7 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3130
1996
|
value: string;
|
|
3131
1997
|
type: "unparsed";
|
|
3132
1998
|
hidden?: boolean | undefined;
|
|
3133
|
-
} |
|
|
3134
|
-
type: "rgb";
|
|
3135
|
-
r: number;
|
|
3136
|
-
g: number;
|
|
3137
|
-
b: number;
|
|
3138
|
-
alpha: number;
|
|
3139
|
-
hidden?: boolean | undefined;
|
|
3140
|
-
} | {
|
|
3141
|
-
type: "function";
|
|
3142
|
-
name: string;
|
|
3143
|
-
args: StyleValue;
|
|
3144
|
-
hidden?: boolean;
|
|
3145
|
-
} | {
|
|
3146
|
-
value: {
|
|
3147
|
-
value: string;
|
|
3148
|
-
type: "asset";
|
|
3149
|
-
} | {
|
|
3150
|
-
type: "url";
|
|
3151
|
-
url: string;
|
|
3152
|
-
};
|
|
3153
|
-
type: "image";
|
|
3154
|
-
hidden?: boolean | undefined;
|
|
3155
|
-
})[];
|
|
3156
|
-
type: "tuple";
|
|
1999
|
+
} | undefined;
|
|
3157
2000
|
hidden?: boolean | undefined;
|
|
3158
2001
|
} | {
|
|
3159
2002
|
value: ({
|
|
@@ -3192,12 +2035,9 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3192
2035
|
type: "image";
|
|
3193
2036
|
hidden?: boolean | undefined;
|
|
3194
2037
|
} | {
|
|
3195
|
-
value:
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
unit: "number" | "%" | "deg" | "grad" | "rad" | "turn" | "db" | "fr" | "hz" | "khz" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "ic" | "ric" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax" | "cqw" | "cqh" | "cqi" | "cqb" | "cqmin" | "cqmax" | "dpi" | "dpcm" | "dppx" | "x" | "st" | "s" | "ms";
|
|
3199
|
-
hidden?: boolean | undefined;
|
|
3200
|
-
} | {
|
|
2038
|
+
value: string;
|
|
2039
|
+
type: "var";
|
|
2040
|
+
fallback?: {
|
|
3201
2041
|
value: string;
|
|
3202
2042
|
type: "keyword";
|
|
3203
2043
|
hidden?: boolean | undefined;
|
|
@@ -3205,42 +2045,24 @@ export declare const namespaceMeta: (meta: WsComponentMeta, namespace: string, c
|
|
|
3205
2045
|
value: string;
|
|
3206
2046
|
type: "unparsed";
|
|
3207
2047
|
hidden?: boolean | undefined;
|
|
3208
|
-
} |
|
|
3209
|
-
type: "rgb";
|
|
3210
|
-
r: number;
|
|
3211
|
-
g: number;
|
|
3212
|
-
b: number;
|
|
3213
|
-
alpha: number;
|
|
3214
|
-
hidden?: boolean | undefined;
|
|
3215
|
-
} | {
|
|
3216
|
-
type: "function";
|
|
3217
|
-
name: string;
|
|
3218
|
-
args: StyleValue;
|
|
3219
|
-
hidden?: boolean;
|
|
3220
|
-
} | {
|
|
3221
|
-
value: {
|
|
3222
|
-
value: string;
|
|
3223
|
-
type: "asset";
|
|
3224
|
-
} | {
|
|
3225
|
-
type: "url";
|
|
3226
|
-
url: string;
|
|
3227
|
-
};
|
|
3228
|
-
type: "image";
|
|
3229
|
-
hidden?: boolean | undefined;
|
|
3230
|
-
})[];
|
|
3231
|
-
type: "tuple";
|
|
3232
|
-
hidden?: boolean | undefined;
|
|
3233
|
-
} | {
|
|
3234
|
-
value: string;
|
|
3235
|
-
type: "invalid";
|
|
2048
|
+
} | undefined;
|
|
3236
2049
|
hidden?: boolean | undefined;
|
|
3237
2050
|
})[];
|
|
3238
|
-
type: "
|
|
2051
|
+
type: "tuple";
|
|
3239
2052
|
hidden?: boolean | undefined;
|
|
3240
2053
|
} | {
|
|
3241
|
-
|
|
2054
|
+
value: string;
|
|
2055
|
+
type: "invalid";
|
|
3242
2056
|
hidden?: boolean | undefined;
|
|
3243
2057
|
})[];
|
|
2058
|
+
type: "layers";
|
|
2059
|
+
hidden?: boolean | undefined;
|
|
2060
|
+
} | {
|
|
2061
|
+
type: "guaranteedInvalid";
|
|
2062
|
+
hidden?: boolean | undefined;
|
|
2063
|
+
} | {
|
|
2064
|
+
value: "";
|
|
2065
|
+
type: "unset";
|
|
3244
2066
|
hidden?: boolean | undefined;
|
|
3245
2067
|
};
|
|
3246
2068
|
state?: string | undefined;
|