@webstudio-is/sdk 0.209.0 → 0.212.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/core-templates.js +19 -7
- package/lib/index.js +55 -7
- package/lib/runtime.js +15 -1
- package/lib/types/core-metas.d.ts +211 -1
- package/lib/types/index.d.ts +2 -2
- package/lib/types/runtime.d.ts +4 -0
- package/lib/types/schema/animation-schema.d.ts +909 -0
- package/lib/types/schema/component-meta.d.ts +68 -28
- package/lib/types/schema/instances.d.ts +24 -18
- package/lib/types/schema/pages.d.ts +1 -0
- package/lib/types/schema/prop-meta.d.ts +24 -0
- package/lib/types/schema/props.d.ts +695 -3
- package/lib/types/schema/webstudio.d.ts +419 -0
- package/package.json +5 -5
|
@@ -49,6 +49,7 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
49
49
|
type: z.ZodLiteral<"instance">;
|
|
50
50
|
id: z.ZodString;
|
|
51
51
|
component: z.ZodString;
|
|
52
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
52
53
|
label: z.ZodOptional<z.ZodString>;
|
|
53
54
|
children: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
54
55
|
type: z.ZodLiteral<"id">;
|
|
@@ -97,6 +98,7 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
97
98
|
type: "expression";
|
|
98
99
|
})[];
|
|
99
100
|
label?: string | undefined;
|
|
101
|
+
tag?: string | undefined;
|
|
100
102
|
}, {
|
|
101
103
|
type: "instance";
|
|
102
104
|
id: string;
|
|
@@ -113,6 +115,7 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
113
115
|
type: "expression";
|
|
114
116
|
})[];
|
|
115
117
|
label?: string | undefined;
|
|
118
|
+
tag?: string | undefined;
|
|
116
119
|
}>, "many">;
|
|
117
120
|
assets: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
118
121
|
format: z.ZodUnion<[z.ZodLiteral<"ttf">, z.ZodLiteral<"woff">, z.ZodLiteral<"woff2">]>;
|
|
@@ -5760,6 +5763,28 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5760
5763
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
5761
5764
|
easing: z.ZodOptional<z.ZodString>;
|
|
5762
5765
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
5766
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5767
|
+
type: z.ZodLiteral<"unit">;
|
|
5768
|
+
value: z.ZodNumber;
|
|
5769
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
5770
|
+
}, "strip", z.ZodTypeAny, {
|
|
5771
|
+
value: number;
|
|
5772
|
+
type: "unit";
|
|
5773
|
+
unit: "s" | "ms";
|
|
5774
|
+
}, {
|
|
5775
|
+
value: number;
|
|
5776
|
+
type: "unit";
|
|
5777
|
+
unit: "s" | "ms";
|
|
5778
|
+
}>, z.ZodObject<{
|
|
5779
|
+
type: z.ZodLiteral<"var">;
|
|
5780
|
+
value: z.ZodString;
|
|
5781
|
+
}, "strip", z.ZodTypeAny, {
|
|
5782
|
+
value: string;
|
|
5783
|
+
type: "var";
|
|
5784
|
+
}, {
|
|
5785
|
+
value: string;
|
|
5786
|
+
type: "var";
|
|
5787
|
+
}>]>>;
|
|
5763
5788
|
}, {
|
|
5764
5789
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
5765
5790
|
type: z.ZodLiteral<"unit">;
|
|
@@ -5782,6 +5807,15 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5782
5807
|
}, {
|
|
5783
5808
|
value: string;
|
|
5784
5809
|
type: "unparsed";
|
|
5810
|
+
}>, z.ZodObject<{
|
|
5811
|
+
type: z.ZodLiteral<"var">;
|
|
5812
|
+
value: z.ZodString;
|
|
5813
|
+
}, "strip", z.ZodTypeAny, {
|
|
5814
|
+
value: string;
|
|
5815
|
+
type: "var";
|
|
5816
|
+
}, {
|
|
5817
|
+
value: string;
|
|
5818
|
+
type: "var";
|
|
5785
5819
|
}>]>], null>>;
|
|
5786
5820
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
5787
5821
|
type: z.ZodLiteral<"unit">;
|
|
@@ -5804,10 +5838,27 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5804
5838
|
}, {
|
|
5805
5839
|
value: string;
|
|
5806
5840
|
type: "unparsed";
|
|
5841
|
+
}>, z.ZodObject<{
|
|
5842
|
+
type: z.ZodLiteral<"var">;
|
|
5843
|
+
value: z.ZodString;
|
|
5844
|
+
}, "strip", z.ZodTypeAny, {
|
|
5845
|
+
value: string;
|
|
5846
|
+
type: "var";
|
|
5847
|
+
}, {
|
|
5848
|
+
value: string;
|
|
5849
|
+
type: "var";
|
|
5807
5850
|
}>]>], null>>;
|
|
5808
5851
|
}>, "strip", z.ZodTypeAny, {
|
|
5809
5852
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
5810
5853
|
easing?: string | undefined;
|
|
5854
|
+
duration?: {
|
|
5855
|
+
value: number;
|
|
5856
|
+
type: "unit";
|
|
5857
|
+
unit: "s" | "ms";
|
|
5858
|
+
} | {
|
|
5859
|
+
value: string;
|
|
5860
|
+
type: "var";
|
|
5861
|
+
} | undefined;
|
|
5811
5862
|
rangeStart?: ["start" | "end", {
|
|
5812
5863
|
value: number;
|
|
5813
5864
|
type: "unit";
|
|
@@ -5815,6 +5866,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5815
5866
|
} | {
|
|
5816
5867
|
value: string;
|
|
5817
5868
|
type: "unparsed";
|
|
5869
|
+
} | {
|
|
5870
|
+
value: string;
|
|
5871
|
+
type: "var";
|
|
5818
5872
|
}] | undefined;
|
|
5819
5873
|
rangeEnd?: ["start" | "end", {
|
|
5820
5874
|
value: number;
|
|
@@ -5823,10 +5877,21 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5823
5877
|
} | {
|
|
5824
5878
|
value: string;
|
|
5825
5879
|
type: "unparsed";
|
|
5880
|
+
} | {
|
|
5881
|
+
value: string;
|
|
5882
|
+
type: "var";
|
|
5826
5883
|
}] | undefined;
|
|
5827
5884
|
}, {
|
|
5828
5885
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
5829
5886
|
easing?: string | undefined;
|
|
5887
|
+
duration?: {
|
|
5888
|
+
value: number;
|
|
5889
|
+
type: "unit";
|
|
5890
|
+
unit: "s" | "ms";
|
|
5891
|
+
} | {
|
|
5892
|
+
value: string;
|
|
5893
|
+
type: "var";
|
|
5894
|
+
} | undefined;
|
|
5830
5895
|
rangeStart?: ["start" | "end", {
|
|
5831
5896
|
value: number;
|
|
5832
5897
|
type: "unit";
|
|
@@ -5834,6 +5899,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5834
5899
|
} | {
|
|
5835
5900
|
value: string;
|
|
5836
5901
|
type: "unparsed";
|
|
5902
|
+
} | {
|
|
5903
|
+
value: string;
|
|
5904
|
+
type: "var";
|
|
5837
5905
|
}] | undefined;
|
|
5838
5906
|
rangeEnd?: ["start" | "end", {
|
|
5839
5907
|
value: number;
|
|
@@ -5842,6 +5910,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
5842
5910
|
} | {
|
|
5843
5911
|
value: string;
|
|
5844
5912
|
type: "unparsed";
|
|
5913
|
+
} | {
|
|
5914
|
+
value: string;
|
|
5915
|
+
type: "var";
|
|
5845
5916
|
}] | undefined;
|
|
5846
5917
|
}>;
|
|
5847
5918
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6453,6 +6524,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
6453
6524
|
timing: {
|
|
6454
6525
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
6455
6526
|
easing?: string | undefined;
|
|
6527
|
+
duration?: {
|
|
6528
|
+
value: number;
|
|
6529
|
+
type: "unit";
|
|
6530
|
+
unit: "s" | "ms";
|
|
6531
|
+
} | {
|
|
6532
|
+
value: string;
|
|
6533
|
+
type: "var";
|
|
6534
|
+
} | undefined;
|
|
6456
6535
|
rangeStart?: ["start" | "end", {
|
|
6457
6536
|
value: number;
|
|
6458
6537
|
type: "unit";
|
|
@@ -6460,6 +6539,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
6460
6539
|
} | {
|
|
6461
6540
|
value: string;
|
|
6462
6541
|
type: "unparsed";
|
|
6542
|
+
} | {
|
|
6543
|
+
value: string;
|
|
6544
|
+
type: "var";
|
|
6463
6545
|
}] | undefined;
|
|
6464
6546
|
rangeEnd?: ["start" | "end", {
|
|
6465
6547
|
value: number;
|
|
@@ -6468,6 +6550,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
6468
6550
|
} | {
|
|
6469
6551
|
value: string;
|
|
6470
6552
|
type: "unparsed";
|
|
6553
|
+
} | {
|
|
6554
|
+
value: string;
|
|
6555
|
+
type: "var";
|
|
6471
6556
|
}] | undefined;
|
|
6472
6557
|
};
|
|
6473
6558
|
name?: string | undefined;
|
|
@@ -7082,6 +7167,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7082
7167
|
timing: {
|
|
7083
7168
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
7084
7169
|
easing?: string | undefined;
|
|
7170
|
+
duration?: {
|
|
7171
|
+
value: number;
|
|
7172
|
+
type: "unit";
|
|
7173
|
+
unit: "s" | "ms";
|
|
7174
|
+
} | {
|
|
7175
|
+
value: string;
|
|
7176
|
+
type: "var";
|
|
7177
|
+
} | undefined;
|
|
7085
7178
|
rangeStart?: ["start" | "end", {
|
|
7086
7179
|
value: number;
|
|
7087
7180
|
type: "unit";
|
|
@@ -7089,6 +7182,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7089
7182
|
} | {
|
|
7090
7183
|
value: string;
|
|
7091
7184
|
type: "unparsed";
|
|
7185
|
+
} | {
|
|
7186
|
+
value: string;
|
|
7187
|
+
type: "var";
|
|
7092
7188
|
}] | undefined;
|
|
7093
7189
|
rangeEnd?: ["start" | "end", {
|
|
7094
7190
|
value: number;
|
|
@@ -7097,6 +7193,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7097
7193
|
} | {
|
|
7098
7194
|
value: string;
|
|
7099
7195
|
type: "unparsed";
|
|
7196
|
+
} | {
|
|
7197
|
+
value: string;
|
|
7198
|
+
type: "var";
|
|
7100
7199
|
}] | undefined;
|
|
7101
7200
|
};
|
|
7102
7201
|
name?: string | undefined;
|
|
@@ -7716,6 +7815,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7716
7815
|
timing: {
|
|
7717
7816
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
7718
7817
|
easing?: string | undefined;
|
|
7818
|
+
duration?: {
|
|
7819
|
+
value: number;
|
|
7820
|
+
type: "unit";
|
|
7821
|
+
unit: "s" | "ms";
|
|
7822
|
+
} | {
|
|
7823
|
+
value: string;
|
|
7824
|
+
type: "var";
|
|
7825
|
+
} | undefined;
|
|
7719
7826
|
rangeStart?: ["start" | "end", {
|
|
7720
7827
|
value: number;
|
|
7721
7828
|
type: "unit";
|
|
@@ -7723,6 +7830,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7723
7830
|
} | {
|
|
7724
7831
|
value: string;
|
|
7725
7832
|
type: "unparsed";
|
|
7833
|
+
} | {
|
|
7834
|
+
value: string;
|
|
7835
|
+
type: "var";
|
|
7726
7836
|
}] | undefined;
|
|
7727
7837
|
rangeEnd?: ["start" | "end", {
|
|
7728
7838
|
value: number;
|
|
@@ -7731,6 +7841,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
7731
7841
|
} | {
|
|
7732
7842
|
value: string;
|
|
7733
7843
|
type: "unparsed";
|
|
7844
|
+
} | {
|
|
7845
|
+
value: string;
|
|
7846
|
+
type: "var";
|
|
7734
7847
|
}] | undefined;
|
|
7735
7848
|
};
|
|
7736
7849
|
name?: string | undefined;
|
|
@@ -8352,6 +8465,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
8352
8465
|
timing: {
|
|
8353
8466
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
8354
8467
|
easing?: string | undefined;
|
|
8468
|
+
duration?: {
|
|
8469
|
+
value: number;
|
|
8470
|
+
type: "unit";
|
|
8471
|
+
unit: "s" | "ms";
|
|
8472
|
+
} | {
|
|
8473
|
+
value: string;
|
|
8474
|
+
type: "var";
|
|
8475
|
+
} | undefined;
|
|
8355
8476
|
rangeStart?: ["start" | "end", {
|
|
8356
8477
|
value: number;
|
|
8357
8478
|
type: "unit";
|
|
@@ -8359,6 +8480,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
8359
8480
|
} | {
|
|
8360
8481
|
value: string;
|
|
8361
8482
|
type: "unparsed";
|
|
8483
|
+
} | {
|
|
8484
|
+
value: string;
|
|
8485
|
+
type: "var";
|
|
8362
8486
|
}] | undefined;
|
|
8363
8487
|
rangeEnd?: ["start" | "end", {
|
|
8364
8488
|
value: number;
|
|
@@ -8367,6 +8491,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
8367
8491
|
} | {
|
|
8368
8492
|
value: string;
|
|
8369
8493
|
type: "unparsed";
|
|
8494
|
+
} | {
|
|
8495
|
+
value: string;
|
|
8496
|
+
type: "var";
|
|
8370
8497
|
}] | undefined;
|
|
8371
8498
|
};
|
|
8372
8499
|
name?: string | undefined;
|
|
@@ -13442,6 +13569,28 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13442
13569
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
13443
13570
|
easing: z.ZodOptional<z.ZodString>;
|
|
13444
13571
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
13572
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13573
|
+
type: z.ZodLiteral<"unit">;
|
|
13574
|
+
value: z.ZodNumber;
|
|
13575
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
13576
|
+
}, "strip", z.ZodTypeAny, {
|
|
13577
|
+
value: number;
|
|
13578
|
+
type: "unit";
|
|
13579
|
+
unit: "s" | "ms";
|
|
13580
|
+
}, {
|
|
13581
|
+
value: number;
|
|
13582
|
+
type: "unit";
|
|
13583
|
+
unit: "s" | "ms";
|
|
13584
|
+
}>, z.ZodObject<{
|
|
13585
|
+
type: z.ZodLiteral<"var">;
|
|
13586
|
+
value: z.ZodString;
|
|
13587
|
+
}, "strip", z.ZodTypeAny, {
|
|
13588
|
+
value: string;
|
|
13589
|
+
type: "var";
|
|
13590
|
+
}, {
|
|
13591
|
+
value: string;
|
|
13592
|
+
type: "var";
|
|
13593
|
+
}>]>>;
|
|
13445
13594
|
}, {
|
|
13446
13595
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<[z.ZodObject<{
|
|
13447
13596
|
type: z.ZodLiteral<"unit">;
|
|
@@ -13464,6 +13613,15 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13464
13613
|
}, {
|
|
13465
13614
|
value: string;
|
|
13466
13615
|
type: "unparsed";
|
|
13616
|
+
}>, z.ZodObject<{
|
|
13617
|
+
type: z.ZodLiteral<"var">;
|
|
13618
|
+
value: z.ZodString;
|
|
13619
|
+
}, "strip", z.ZodTypeAny, {
|
|
13620
|
+
value: string;
|
|
13621
|
+
type: "var";
|
|
13622
|
+
}, {
|
|
13623
|
+
value: string;
|
|
13624
|
+
type: "var";
|
|
13467
13625
|
}>]>], null>>;
|
|
13468
13626
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>, z.ZodUnion<[z.ZodObject<{
|
|
13469
13627
|
type: z.ZodLiteral<"unit">;
|
|
@@ -13486,10 +13644,27 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13486
13644
|
}, {
|
|
13487
13645
|
value: string;
|
|
13488
13646
|
type: "unparsed";
|
|
13647
|
+
}>, z.ZodObject<{
|
|
13648
|
+
type: z.ZodLiteral<"var">;
|
|
13649
|
+
value: z.ZodString;
|
|
13650
|
+
}, "strip", z.ZodTypeAny, {
|
|
13651
|
+
value: string;
|
|
13652
|
+
type: "var";
|
|
13653
|
+
}, {
|
|
13654
|
+
value: string;
|
|
13655
|
+
type: "var";
|
|
13489
13656
|
}>]>], null>>;
|
|
13490
13657
|
}>, "strip", z.ZodTypeAny, {
|
|
13491
13658
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
13492
13659
|
easing?: string | undefined;
|
|
13660
|
+
duration?: {
|
|
13661
|
+
value: number;
|
|
13662
|
+
type: "unit";
|
|
13663
|
+
unit: "s" | "ms";
|
|
13664
|
+
} | {
|
|
13665
|
+
value: string;
|
|
13666
|
+
type: "var";
|
|
13667
|
+
} | undefined;
|
|
13493
13668
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13494
13669
|
value: number;
|
|
13495
13670
|
type: "unit";
|
|
@@ -13497,6 +13672,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13497
13672
|
} | {
|
|
13498
13673
|
value: string;
|
|
13499
13674
|
type: "unparsed";
|
|
13675
|
+
} | {
|
|
13676
|
+
value: string;
|
|
13677
|
+
type: "var";
|
|
13500
13678
|
}] | undefined;
|
|
13501
13679
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13502
13680
|
value: number;
|
|
@@ -13505,10 +13683,21 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13505
13683
|
} | {
|
|
13506
13684
|
value: string;
|
|
13507
13685
|
type: "unparsed";
|
|
13686
|
+
} | {
|
|
13687
|
+
value: string;
|
|
13688
|
+
type: "var";
|
|
13508
13689
|
}] | undefined;
|
|
13509
13690
|
}, {
|
|
13510
13691
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
13511
13692
|
easing?: string | undefined;
|
|
13693
|
+
duration?: {
|
|
13694
|
+
value: number;
|
|
13695
|
+
type: "unit";
|
|
13696
|
+
unit: "s" | "ms";
|
|
13697
|
+
} | {
|
|
13698
|
+
value: string;
|
|
13699
|
+
type: "var";
|
|
13700
|
+
} | undefined;
|
|
13512
13701
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13513
13702
|
value: number;
|
|
13514
13703
|
type: "unit";
|
|
@@ -13516,6 +13705,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13516
13705
|
} | {
|
|
13517
13706
|
value: string;
|
|
13518
13707
|
type: "unparsed";
|
|
13708
|
+
} | {
|
|
13709
|
+
value: string;
|
|
13710
|
+
type: "var";
|
|
13519
13711
|
}] | undefined;
|
|
13520
13712
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13521
13713
|
value: number;
|
|
@@ -13524,6 +13716,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
13524
13716
|
} | {
|
|
13525
13717
|
value: string;
|
|
13526
13718
|
type: "unparsed";
|
|
13719
|
+
} | {
|
|
13720
|
+
value: string;
|
|
13721
|
+
type: "var";
|
|
13527
13722
|
}] | undefined;
|
|
13528
13723
|
}>;
|
|
13529
13724
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -14135,6 +14330,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14135
14330
|
timing: {
|
|
14136
14331
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14137
14332
|
easing?: string | undefined;
|
|
14333
|
+
duration?: {
|
|
14334
|
+
value: number;
|
|
14335
|
+
type: "unit";
|
|
14336
|
+
unit: "s" | "ms";
|
|
14337
|
+
} | {
|
|
14338
|
+
value: string;
|
|
14339
|
+
type: "var";
|
|
14340
|
+
} | undefined;
|
|
14138
14341
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14139
14342
|
value: number;
|
|
14140
14343
|
type: "unit";
|
|
@@ -14142,6 +14345,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14142
14345
|
} | {
|
|
14143
14346
|
value: string;
|
|
14144
14347
|
type: "unparsed";
|
|
14348
|
+
} | {
|
|
14349
|
+
value: string;
|
|
14350
|
+
type: "var";
|
|
14145
14351
|
}] | undefined;
|
|
14146
14352
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14147
14353
|
value: number;
|
|
@@ -14150,6 +14356,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14150
14356
|
} | {
|
|
14151
14357
|
value: string;
|
|
14152
14358
|
type: "unparsed";
|
|
14359
|
+
} | {
|
|
14360
|
+
value: string;
|
|
14361
|
+
type: "var";
|
|
14153
14362
|
}] | undefined;
|
|
14154
14363
|
};
|
|
14155
14364
|
name?: string | undefined;
|
|
@@ -14764,6 +14973,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14764
14973
|
timing: {
|
|
14765
14974
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14766
14975
|
easing?: string | undefined;
|
|
14976
|
+
duration?: {
|
|
14977
|
+
value: number;
|
|
14978
|
+
type: "unit";
|
|
14979
|
+
unit: "s" | "ms";
|
|
14980
|
+
} | {
|
|
14981
|
+
value: string;
|
|
14982
|
+
type: "var";
|
|
14983
|
+
} | undefined;
|
|
14767
14984
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14768
14985
|
value: number;
|
|
14769
14986
|
type: "unit";
|
|
@@ -14771,6 +14988,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14771
14988
|
} | {
|
|
14772
14989
|
value: string;
|
|
14773
14990
|
type: "unparsed";
|
|
14991
|
+
} | {
|
|
14992
|
+
value: string;
|
|
14993
|
+
type: "var";
|
|
14774
14994
|
}] | undefined;
|
|
14775
14995
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14776
14996
|
value: number;
|
|
@@ -14779,6 +14999,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14779
14999
|
} | {
|
|
14780
15000
|
value: string;
|
|
14781
15001
|
type: "unparsed";
|
|
15002
|
+
} | {
|
|
15003
|
+
value: string;
|
|
15004
|
+
type: "var";
|
|
14782
15005
|
}] | undefined;
|
|
14783
15006
|
};
|
|
14784
15007
|
name?: string | undefined;
|
|
@@ -14806,6 +15029,15 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14806
15029
|
}, {
|
|
14807
15030
|
value: string;
|
|
14808
15031
|
type: "unparsed";
|
|
15032
|
+
}>, z.ZodObject<{
|
|
15033
|
+
type: z.ZodLiteral<"var">;
|
|
15034
|
+
value: z.ZodString;
|
|
15035
|
+
}, "strip", z.ZodTypeAny, {
|
|
15036
|
+
value: string;
|
|
15037
|
+
type: "var";
|
|
15038
|
+
}, {
|
|
15039
|
+
value: string;
|
|
15040
|
+
type: "var";
|
|
14809
15041
|
}>]>, z.ZodObject<{
|
|
14810
15042
|
type: z.ZodLiteral<"keyword">;
|
|
14811
15043
|
value: z.ZodLiteral<"auto">;
|
|
@@ -14837,6 +15069,15 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
14837
15069
|
}, {
|
|
14838
15070
|
value: string;
|
|
14839
15071
|
type: "unparsed";
|
|
15072
|
+
}>, z.ZodObject<{
|
|
15073
|
+
type: z.ZodLiteral<"var">;
|
|
15074
|
+
value: z.ZodString;
|
|
15075
|
+
}, "strip", z.ZodTypeAny, {
|
|
15076
|
+
value: string;
|
|
15077
|
+
type: "var";
|
|
15078
|
+
}, {
|
|
15079
|
+
value: string;
|
|
15080
|
+
type: "var";
|
|
14840
15081
|
}>]>, z.ZodObject<{
|
|
14841
15082
|
type: z.ZodLiteral<"keyword">;
|
|
14842
15083
|
value: z.ZodLiteral<"auto">;
|
|
@@ -15460,6 +15701,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
15460
15701
|
timing: {
|
|
15461
15702
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
15462
15703
|
easing?: string | undefined;
|
|
15704
|
+
duration?: {
|
|
15705
|
+
value: number;
|
|
15706
|
+
type: "unit";
|
|
15707
|
+
unit: "s" | "ms";
|
|
15708
|
+
} | {
|
|
15709
|
+
value: string;
|
|
15710
|
+
type: "var";
|
|
15711
|
+
} | undefined;
|
|
15463
15712
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15464
15713
|
value: number;
|
|
15465
15714
|
type: "unit";
|
|
@@ -15467,6 +15716,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
15467
15716
|
} | {
|
|
15468
15717
|
value: string;
|
|
15469
15718
|
type: "unparsed";
|
|
15719
|
+
} | {
|
|
15720
|
+
value: string;
|
|
15721
|
+
type: "var";
|
|
15470
15722
|
}] | undefined;
|
|
15471
15723
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15472
15724
|
value: number;
|
|
@@ -15475,6 +15727,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
15475
15727
|
} | {
|
|
15476
15728
|
value: string;
|
|
15477
15729
|
type: "unparsed";
|
|
15730
|
+
} | {
|
|
15731
|
+
value: string;
|
|
15732
|
+
type: "var";
|
|
15478
15733
|
}] | undefined;
|
|
15479
15734
|
};
|
|
15480
15735
|
name?: string | undefined;
|
|
@@ -15492,6 +15747,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
15492
15747
|
} | {
|
|
15493
15748
|
value: string;
|
|
15494
15749
|
type: "unparsed";
|
|
15750
|
+
} | {
|
|
15751
|
+
value: string;
|
|
15752
|
+
type: "var";
|
|
15495
15753
|
} | {
|
|
15496
15754
|
value: "auto";
|
|
15497
15755
|
type: "keyword";
|
|
@@ -15503,6 +15761,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
15503
15761
|
} | {
|
|
15504
15762
|
value: string;
|
|
15505
15763
|
type: "unparsed";
|
|
15764
|
+
} | {
|
|
15765
|
+
value: string;
|
|
15766
|
+
type: "var";
|
|
15506
15767
|
} | {
|
|
15507
15768
|
value: "auto";
|
|
15508
15769
|
type: "keyword";
|
|
@@ -16118,6 +16379,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16118
16379
|
timing: {
|
|
16119
16380
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
16120
16381
|
easing?: string | undefined;
|
|
16382
|
+
duration?: {
|
|
16383
|
+
value: number;
|
|
16384
|
+
type: "unit";
|
|
16385
|
+
unit: "s" | "ms";
|
|
16386
|
+
} | {
|
|
16387
|
+
value: string;
|
|
16388
|
+
type: "var";
|
|
16389
|
+
} | undefined;
|
|
16121
16390
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
16122
16391
|
value: number;
|
|
16123
16392
|
type: "unit";
|
|
@@ -16125,6 +16394,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16125
16394
|
} | {
|
|
16126
16395
|
value: string;
|
|
16127
16396
|
type: "unparsed";
|
|
16397
|
+
} | {
|
|
16398
|
+
value: string;
|
|
16399
|
+
type: "var";
|
|
16128
16400
|
}] | undefined;
|
|
16129
16401
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
16130
16402
|
value: number;
|
|
@@ -16133,6 +16405,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16133
16405
|
} | {
|
|
16134
16406
|
value: string;
|
|
16135
16407
|
type: "unparsed";
|
|
16408
|
+
} | {
|
|
16409
|
+
value: string;
|
|
16410
|
+
type: "var";
|
|
16136
16411
|
}] | undefined;
|
|
16137
16412
|
};
|
|
16138
16413
|
name?: string | undefined;
|
|
@@ -16150,6 +16425,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16150
16425
|
} | {
|
|
16151
16426
|
value: string;
|
|
16152
16427
|
type: "unparsed";
|
|
16428
|
+
} | {
|
|
16429
|
+
value: string;
|
|
16430
|
+
type: "var";
|
|
16153
16431
|
} | {
|
|
16154
16432
|
value: "auto";
|
|
16155
16433
|
type: "keyword";
|
|
@@ -16161,6 +16439,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16161
16439
|
} | {
|
|
16162
16440
|
value: string;
|
|
16163
16441
|
type: "unparsed";
|
|
16442
|
+
} | {
|
|
16443
|
+
value: string;
|
|
16444
|
+
type: "var";
|
|
16164
16445
|
} | {
|
|
16165
16446
|
value: "auto";
|
|
16166
16447
|
type: "keyword";
|
|
@@ -16782,6 +17063,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16782
17063
|
timing: {
|
|
16783
17064
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
16784
17065
|
easing?: string | undefined;
|
|
17066
|
+
duration?: {
|
|
17067
|
+
value: number;
|
|
17068
|
+
type: "unit";
|
|
17069
|
+
unit: "s" | "ms";
|
|
17070
|
+
} | {
|
|
17071
|
+
value: string;
|
|
17072
|
+
type: "var";
|
|
17073
|
+
} | undefined;
|
|
16785
17074
|
rangeStart?: ["start" | "end", {
|
|
16786
17075
|
value: number;
|
|
16787
17076
|
type: "unit";
|
|
@@ -16789,6 +17078,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16789
17078
|
} | {
|
|
16790
17079
|
value: string;
|
|
16791
17080
|
type: "unparsed";
|
|
17081
|
+
} | {
|
|
17082
|
+
value: string;
|
|
17083
|
+
type: "var";
|
|
16792
17084
|
}] | undefined;
|
|
16793
17085
|
rangeEnd?: ["start" | "end", {
|
|
16794
17086
|
value: number;
|
|
@@ -16797,6 +17089,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
16797
17089
|
} | {
|
|
16798
17090
|
value: string;
|
|
16799
17091
|
type: "unparsed";
|
|
17092
|
+
} | {
|
|
17093
|
+
value: string;
|
|
17094
|
+
type: "var";
|
|
16800
17095
|
}] | undefined;
|
|
16801
17096
|
};
|
|
16802
17097
|
name?: string | undefined;
|
|
@@ -17418,6 +17713,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
17418
17713
|
timing: {
|
|
17419
17714
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
17420
17715
|
easing?: string | undefined;
|
|
17716
|
+
duration?: {
|
|
17717
|
+
value: number;
|
|
17718
|
+
type: "unit";
|
|
17719
|
+
unit: "s" | "ms";
|
|
17720
|
+
} | {
|
|
17721
|
+
value: string;
|
|
17722
|
+
type: "var";
|
|
17723
|
+
} | undefined;
|
|
17421
17724
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
17422
17725
|
value: number;
|
|
17423
17726
|
type: "unit";
|
|
@@ -17425,6 +17728,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
17425
17728
|
} | {
|
|
17426
17729
|
value: string;
|
|
17427
17730
|
type: "unparsed";
|
|
17731
|
+
} | {
|
|
17732
|
+
value: string;
|
|
17733
|
+
type: "var";
|
|
17428
17734
|
}] | undefined;
|
|
17429
17735
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
17430
17736
|
value: number;
|
|
@@ -17433,6 +17739,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
17433
17739
|
} | {
|
|
17434
17740
|
value: string;
|
|
17435
17741
|
type: "unparsed";
|
|
17742
|
+
} | {
|
|
17743
|
+
value: string;
|
|
17744
|
+
type: "var";
|
|
17436
17745
|
}] | undefined;
|
|
17437
17746
|
};
|
|
17438
17747
|
name?: string | undefined;
|
|
@@ -17450,6 +17759,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
17450
17759
|
} | {
|
|
17451
17760
|
value: string;
|
|
17452
17761
|
type: "unparsed";
|
|
17762
|
+
} | {
|
|
17763
|
+
value: string;
|
|
17764
|
+
type: "var";
|
|
17453
17765
|
} | {
|
|
17454
17766
|
value: "auto";
|
|
17455
17767
|
type: "keyword";
|
|
@@ -17461,6 +17773,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
17461
17773
|
} | {
|
|
17462
17774
|
value: string;
|
|
17463
17775
|
type: "unparsed";
|
|
17776
|
+
} | {
|
|
17777
|
+
value: string;
|
|
17778
|
+
type: "var";
|
|
17464
17779
|
} | {
|
|
17465
17780
|
value: "auto";
|
|
17466
17781
|
type: "keyword";
|
|
@@ -18083,6 +18398,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18083
18398
|
timing: {
|
|
18084
18399
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
18085
18400
|
easing?: string | undefined;
|
|
18401
|
+
duration?: {
|
|
18402
|
+
value: number;
|
|
18403
|
+
type: "unit";
|
|
18404
|
+
unit: "s" | "ms";
|
|
18405
|
+
} | {
|
|
18406
|
+
value: string;
|
|
18407
|
+
type: "var";
|
|
18408
|
+
} | undefined;
|
|
18086
18409
|
rangeStart?: ["start" | "end", {
|
|
18087
18410
|
value: number;
|
|
18088
18411
|
type: "unit";
|
|
@@ -18090,6 +18413,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18090
18413
|
} | {
|
|
18091
18414
|
value: string;
|
|
18092
18415
|
type: "unparsed";
|
|
18416
|
+
} | {
|
|
18417
|
+
value: string;
|
|
18418
|
+
type: "var";
|
|
18093
18419
|
}] | undefined;
|
|
18094
18420
|
rangeEnd?: ["start" | "end", {
|
|
18095
18421
|
value: number;
|
|
@@ -18098,6 +18424,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18098
18424
|
} | {
|
|
18099
18425
|
value: string;
|
|
18100
18426
|
type: "unparsed";
|
|
18427
|
+
} | {
|
|
18428
|
+
value: string;
|
|
18429
|
+
type: "var";
|
|
18101
18430
|
}] | undefined;
|
|
18102
18431
|
};
|
|
18103
18432
|
name?: string | undefined;
|
|
@@ -18719,6 +19048,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18719
19048
|
timing: {
|
|
18720
19049
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
18721
19050
|
easing?: string | undefined;
|
|
19051
|
+
duration?: {
|
|
19052
|
+
value: number;
|
|
19053
|
+
type: "unit";
|
|
19054
|
+
unit: "s" | "ms";
|
|
19055
|
+
} | {
|
|
19056
|
+
value: string;
|
|
19057
|
+
type: "var";
|
|
19058
|
+
} | undefined;
|
|
18722
19059
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
18723
19060
|
value: number;
|
|
18724
19061
|
type: "unit";
|
|
@@ -18726,6 +19063,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18726
19063
|
} | {
|
|
18727
19064
|
value: string;
|
|
18728
19065
|
type: "unparsed";
|
|
19066
|
+
} | {
|
|
19067
|
+
value: string;
|
|
19068
|
+
type: "var";
|
|
18729
19069
|
}] | undefined;
|
|
18730
19070
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
18731
19071
|
value: number;
|
|
@@ -18734,6 +19074,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18734
19074
|
} | {
|
|
18735
19075
|
value: string;
|
|
18736
19076
|
type: "unparsed";
|
|
19077
|
+
} | {
|
|
19078
|
+
value: string;
|
|
19079
|
+
type: "var";
|
|
18737
19080
|
}] | undefined;
|
|
18738
19081
|
};
|
|
18739
19082
|
name?: string | undefined;
|
|
@@ -18751,6 +19094,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18751
19094
|
} | {
|
|
18752
19095
|
value: string;
|
|
18753
19096
|
type: "unparsed";
|
|
19097
|
+
} | {
|
|
19098
|
+
value: string;
|
|
19099
|
+
type: "var";
|
|
18754
19100
|
} | {
|
|
18755
19101
|
value: "auto";
|
|
18756
19102
|
type: "keyword";
|
|
@@ -18762,6 +19108,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
18762
19108
|
} | {
|
|
18763
19109
|
value: string;
|
|
18764
19110
|
type: "unparsed";
|
|
19111
|
+
} | {
|
|
19112
|
+
value: string;
|
|
19113
|
+
type: "var";
|
|
18765
19114
|
} | {
|
|
18766
19115
|
value: "auto";
|
|
18767
19116
|
type: "keyword";
|
|
@@ -20756,6 +21105,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
20756
21105
|
timing: {
|
|
20757
21106
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
20758
21107
|
easing?: string | undefined;
|
|
21108
|
+
duration?: {
|
|
21109
|
+
value: number;
|
|
21110
|
+
type: "unit";
|
|
21111
|
+
unit: "s" | "ms";
|
|
21112
|
+
} | {
|
|
21113
|
+
value: string;
|
|
21114
|
+
type: "var";
|
|
21115
|
+
} | undefined;
|
|
20759
21116
|
rangeStart?: ["start" | "end", {
|
|
20760
21117
|
value: number;
|
|
20761
21118
|
type: "unit";
|
|
@@ -20763,6 +21120,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
20763
21120
|
} | {
|
|
20764
21121
|
value: string;
|
|
20765
21122
|
type: "unparsed";
|
|
21123
|
+
} | {
|
|
21124
|
+
value: string;
|
|
21125
|
+
type: "var";
|
|
20766
21126
|
}] | undefined;
|
|
20767
21127
|
rangeEnd?: ["start" | "end", {
|
|
20768
21128
|
value: number;
|
|
@@ -20771,6 +21131,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
20771
21131
|
} | {
|
|
20772
21132
|
value: string;
|
|
20773
21133
|
type: "unparsed";
|
|
21134
|
+
} | {
|
|
21135
|
+
value: string;
|
|
21136
|
+
type: "var";
|
|
20774
21137
|
}] | undefined;
|
|
20775
21138
|
};
|
|
20776
21139
|
name?: string | undefined;
|
|
@@ -21392,6 +21755,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
21392
21755
|
timing: {
|
|
21393
21756
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
21394
21757
|
easing?: string | undefined;
|
|
21758
|
+
duration?: {
|
|
21759
|
+
value: number;
|
|
21760
|
+
type: "unit";
|
|
21761
|
+
unit: "s" | "ms";
|
|
21762
|
+
} | {
|
|
21763
|
+
value: string;
|
|
21764
|
+
type: "var";
|
|
21765
|
+
} | undefined;
|
|
21395
21766
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
21396
21767
|
value: number;
|
|
21397
21768
|
type: "unit";
|
|
@@ -21399,6 +21770,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
21399
21770
|
} | {
|
|
21400
21771
|
value: string;
|
|
21401
21772
|
type: "unparsed";
|
|
21773
|
+
} | {
|
|
21774
|
+
value: string;
|
|
21775
|
+
type: "var";
|
|
21402
21776
|
}] | undefined;
|
|
21403
21777
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
21404
21778
|
value: number;
|
|
@@ -21407,6 +21781,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
21407
21781
|
} | {
|
|
21408
21782
|
value: string;
|
|
21409
21783
|
type: "unparsed";
|
|
21784
|
+
} | {
|
|
21785
|
+
value: string;
|
|
21786
|
+
type: "var";
|
|
21410
21787
|
}] | undefined;
|
|
21411
21788
|
};
|
|
21412
21789
|
name?: string | undefined;
|
|
@@ -21424,6 +21801,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
21424
21801
|
} | {
|
|
21425
21802
|
value: string;
|
|
21426
21803
|
type: "unparsed";
|
|
21804
|
+
} | {
|
|
21805
|
+
value: string;
|
|
21806
|
+
type: "var";
|
|
21427
21807
|
} | {
|
|
21428
21808
|
value: "auto";
|
|
21429
21809
|
type: "keyword";
|
|
@@ -21435,6 +21815,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
21435
21815
|
} | {
|
|
21436
21816
|
value: string;
|
|
21437
21817
|
type: "unparsed";
|
|
21818
|
+
} | {
|
|
21819
|
+
value: string;
|
|
21820
|
+
type: "var";
|
|
21438
21821
|
} | {
|
|
21439
21822
|
value: "auto";
|
|
21440
21823
|
type: "keyword";
|
|
@@ -22071,6 +22454,7 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
22071
22454
|
type: "expression";
|
|
22072
22455
|
})[];
|
|
22073
22456
|
label?: string | undefined;
|
|
22457
|
+
tag?: string | undefined;
|
|
22074
22458
|
}[];
|
|
22075
22459
|
assets: ({
|
|
22076
22460
|
type: "font";
|
|
@@ -22879,6 +23263,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
22879
23263
|
timing: {
|
|
22880
23264
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
22881
23265
|
easing?: string | undefined;
|
|
23266
|
+
duration?: {
|
|
23267
|
+
value: number;
|
|
23268
|
+
type: "unit";
|
|
23269
|
+
unit: "s" | "ms";
|
|
23270
|
+
} | {
|
|
23271
|
+
value: string;
|
|
23272
|
+
type: "var";
|
|
23273
|
+
} | undefined;
|
|
22882
23274
|
rangeStart?: ["start" | "end", {
|
|
22883
23275
|
value: number;
|
|
22884
23276
|
type: "unit";
|
|
@@ -22886,6 +23278,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
22886
23278
|
} | {
|
|
22887
23279
|
value: string;
|
|
22888
23280
|
type: "unparsed";
|
|
23281
|
+
} | {
|
|
23282
|
+
value: string;
|
|
23283
|
+
type: "var";
|
|
22889
23284
|
}] | undefined;
|
|
22890
23285
|
rangeEnd?: ["start" | "end", {
|
|
22891
23286
|
value: number;
|
|
@@ -22894,6 +23289,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
22894
23289
|
} | {
|
|
22895
23290
|
value: string;
|
|
22896
23291
|
type: "unparsed";
|
|
23292
|
+
} | {
|
|
23293
|
+
value: string;
|
|
23294
|
+
type: "var";
|
|
22897
23295
|
}] | undefined;
|
|
22898
23296
|
};
|
|
22899
23297
|
name?: string | undefined;
|
|
@@ -23515,6 +23913,14 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
23515
23913
|
timing: {
|
|
23516
23914
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
23517
23915
|
easing?: string | undefined;
|
|
23916
|
+
duration?: {
|
|
23917
|
+
value: number;
|
|
23918
|
+
type: "unit";
|
|
23919
|
+
unit: "s" | "ms";
|
|
23920
|
+
} | {
|
|
23921
|
+
value: string;
|
|
23922
|
+
type: "var";
|
|
23923
|
+
} | undefined;
|
|
23518
23924
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
23519
23925
|
value: number;
|
|
23520
23926
|
type: "unit";
|
|
@@ -23522,6 +23928,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
23522
23928
|
} | {
|
|
23523
23929
|
value: string;
|
|
23524
23930
|
type: "unparsed";
|
|
23931
|
+
} | {
|
|
23932
|
+
value: string;
|
|
23933
|
+
type: "var";
|
|
23525
23934
|
}] | undefined;
|
|
23526
23935
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
23527
23936
|
value: number;
|
|
@@ -23530,6 +23939,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
23530
23939
|
} | {
|
|
23531
23940
|
value: string;
|
|
23532
23941
|
type: "unparsed";
|
|
23942
|
+
} | {
|
|
23943
|
+
value: string;
|
|
23944
|
+
type: "var";
|
|
23533
23945
|
}] | undefined;
|
|
23534
23946
|
};
|
|
23535
23947
|
name?: string | undefined;
|
|
@@ -23547,6 +23959,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
23547
23959
|
} | {
|
|
23548
23960
|
value: string;
|
|
23549
23961
|
type: "unparsed";
|
|
23962
|
+
} | {
|
|
23963
|
+
value: string;
|
|
23964
|
+
type: "var";
|
|
23550
23965
|
} | {
|
|
23551
23966
|
value: "auto";
|
|
23552
23967
|
type: "keyword";
|
|
@@ -23558,6 +23973,9 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
23558
23973
|
} | {
|
|
23559
23974
|
value: string;
|
|
23560
23975
|
type: "unparsed";
|
|
23976
|
+
} | {
|
|
23977
|
+
value: string;
|
|
23978
|
+
type: "var";
|
|
23561
23979
|
} | {
|
|
23562
23980
|
value: "auto";
|
|
23563
23981
|
type: "keyword";
|
|
@@ -24194,6 +24612,7 @@ export declare const WebstudioFragment: z.ZodObject<{
|
|
|
24194
24612
|
type: "expression";
|
|
24195
24613
|
})[];
|
|
24196
24614
|
label?: string | undefined;
|
|
24615
|
+
tag?: string | undefined;
|
|
24197
24616
|
}[];
|
|
24198
24617
|
assets: ({
|
|
24199
24618
|
type: "font";
|