@webstudio-is/sdk 0.210.0 → 0.213.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 +32 -25
- package/lib/index.js +86 -25
- 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 +107 -24
- 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 +6 -6
|
@@ -23,6 +23,39 @@ export declare const rangeUnitValueSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23
23
|
}, {
|
|
24
24
|
value: string;
|
|
25
25
|
type: "unparsed";
|
|
26
|
+
}>, z.ZodObject<{
|
|
27
|
+
type: z.ZodLiteral<"var">;
|
|
28
|
+
value: z.ZodString;
|
|
29
|
+
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
value: string;
|
|
31
|
+
type: "var";
|
|
32
|
+
}, {
|
|
33
|
+
value: string;
|
|
34
|
+
type: "var";
|
|
35
|
+
}>]>;
|
|
36
|
+
export declare const TIME_UNITS: readonly ["ms", "s"];
|
|
37
|
+
declare const timeUnitSchema: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
38
|
+
export declare const durationUnitValueSchema: z.ZodUnion<[z.ZodObject<{
|
|
39
|
+
type: z.ZodLiteral<"unit">;
|
|
40
|
+
value: z.ZodNumber;
|
|
41
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
42
|
+
}, "strip", z.ZodTypeAny, {
|
|
43
|
+
value: number;
|
|
44
|
+
type: "unit";
|
|
45
|
+
unit: "s" | "ms";
|
|
46
|
+
}, {
|
|
47
|
+
value: number;
|
|
48
|
+
type: "unit";
|
|
49
|
+
unit: "s" | "ms";
|
|
50
|
+
}>, z.ZodObject<{
|
|
51
|
+
type: z.ZodLiteral<"var">;
|
|
52
|
+
value: z.ZodString;
|
|
53
|
+
}, "strip", z.ZodTypeAny, {
|
|
54
|
+
value: string;
|
|
55
|
+
type: "var";
|
|
56
|
+
}, {
|
|
57
|
+
value: string;
|
|
58
|
+
type: "var";
|
|
26
59
|
}>]>;
|
|
27
60
|
export declare const insetUnitValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
28
61
|
type: z.ZodLiteral<"unit">;
|
|
@@ -45,6 +78,15 @@ export declare const insetUnitValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
45
78
|
}, {
|
|
46
79
|
value: string;
|
|
47
80
|
type: "unparsed";
|
|
81
|
+
}>, z.ZodObject<{
|
|
82
|
+
type: z.ZodLiteral<"var">;
|
|
83
|
+
value: z.ZodString;
|
|
84
|
+
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
value: string;
|
|
86
|
+
type: "var";
|
|
87
|
+
}, {
|
|
88
|
+
value: string;
|
|
89
|
+
type: "var";
|
|
48
90
|
}>]>, z.ZodObject<{
|
|
49
91
|
type: z.ZodLiteral<"keyword">;
|
|
50
92
|
value: z.ZodLiteral<"auto">;
|
|
@@ -8953,12 +8995,50 @@ export declare const animationKeyframeSchema: z.ZodObject<{
|
|
|
8953
8995
|
export declare const keyframeEffectOptionsSchema: z.ZodObject<{
|
|
8954
8996
|
easing: z.ZodOptional<z.ZodString>;
|
|
8955
8997
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
8998
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8999
|
+
type: z.ZodLiteral<"unit">;
|
|
9000
|
+
value: z.ZodNumber;
|
|
9001
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
9002
|
+
}, "strip", z.ZodTypeAny, {
|
|
9003
|
+
value: number;
|
|
9004
|
+
type: "unit";
|
|
9005
|
+
unit: "s" | "ms";
|
|
9006
|
+
}, {
|
|
9007
|
+
value: number;
|
|
9008
|
+
type: "unit";
|
|
9009
|
+
unit: "s" | "ms";
|
|
9010
|
+
}>, z.ZodObject<{
|
|
9011
|
+
type: z.ZodLiteral<"var">;
|
|
9012
|
+
value: z.ZodString;
|
|
9013
|
+
}, "strip", z.ZodTypeAny, {
|
|
9014
|
+
value: string;
|
|
9015
|
+
type: "var";
|
|
9016
|
+
}, {
|
|
9017
|
+
value: string;
|
|
9018
|
+
type: "var";
|
|
9019
|
+
}>]>>;
|
|
8956
9020
|
}, "strip", z.ZodTypeAny, {
|
|
8957
9021
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
8958
9022
|
easing?: string | undefined;
|
|
9023
|
+
duration?: {
|
|
9024
|
+
value: number;
|
|
9025
|
+
type: "unit";
|
|
9026
|
+
unit: "s" | "ms";
|
|
9027
|
+
} | {
|
|
9028
|
+
value: string;
|
|
9029
|
+
type: "var";
|
|
9030
|
+
} | undefined;
|
|
8959
9031
|
}, {
|
|
8960
9032
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
8961
9033
|
easing?: string | undefined;
|
|
9034
|
+
duration?: {
|
|
9035
|
+
value: number;
|
|
9036
|
+
type: "unit";
|
|
9037
|
+
unit: "s" | "ms";
|
|
9038
|
+
} | {
|
|
9039
|
+
value: string;
|
|
9040
|
+
type: "var";
|
|
9041
|
+
} | undefined;
|
|
8962
9042
|
}>;
|
|
8963
9043
|
export declare const scrollNamedRangeSchema: z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>;
|
|
8964
9044
|
export declare const scrollRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
@@ -8982,6 +9062,15 @@ export declare const scrollRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLitera
|
|
|
8982
9062
|
}, {
|
|
8983
9063
|
value: string;
|
|
8984
9064
|
type: "unparsed";
|
|
9065
|
+
}>, z.ZodObject<{
|
|
9066
|
+
type: z.ZodLiteral<"var">;
|
|
9067
|
+
value: z.ZodString;
|
|
9068
|
+
}, "strip", z.ZodTypeAny, {
|
|
9069
|
+
value: string;
|
|
9070
|
+
type: "var";
|
|
9071
|
+
}, {
|
|
9072
|
+
value: string;
|
|
9073
|
+
type: "var";
|
|
8985
9074
|
}>]>], null>;
|
|
8986
9075
|
export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
8987
9076
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
@@ -9005,6 +9094,15 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9005
9094
|
}, {
|
|
9006
9095
|
value: string;
|
|
9007
9096
|
type: "unparsed";
|
|
9097
|
+
}>, z.ZodObject<{
|
|
9098
|
+
type: z.ZodLiteral<"var">;
|
|
9099
|
+
value: z.ZodString;
|
|
9100
|
+
}, "strip", z.ZodTypeAny, {
|
|
9101
|
+
value: string;
|
|
9102
|
+
type: "var";
|
|
9103
|
+
}, {
|
|
9104
|
+
value: string;
|
|
9105
|
+
type: "var";
|
|
9008
9106
|
}>]>], null>>;
|
|
9009
9107
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
9010
9108
|
type: z.ZodLiteral<"unit">;
|
|
@@ -9027,6 +9125,15 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9027
9125
|
}, {
|
|
9028
9126
|
value: string;
|
|
9029
9127
|
type: "unparsed";
|
|
9128
|
+
}>, z.ZodObject<{
|
|
9129
|
+
type: z.ZodLiteral<"var">;
|
|
9130
|
+
value: z.ZodString;
|
|
9131
|
+
}, "strip", z.ZodTypeAny, {
|
|
9132
|
+
value: string;
|
|
9133
|
+
type: "var";
|
|
9134
|
+
}, {
|
|
9135
|
+
value: string;
|
|
9136
|
+
type: "var";
|
|
9030
9137
|
}>]>], null>>;
|
|
9031
9138
|
}, "strip", z.ZodTypeAny, {
|
|
9032
9139
|
rangeStart?: ["start" | "end", {
|
|
@@ -9036,6 +9143,9 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9036
9143
|
} | {
|
|
9037
9144
|
value: string;
|
|
9038
9145
|
type: "unparsed";
|
|
9146
|
+
} | {
|
|
9147
|
+
value: string;
|
|
9148
|
+
type: "var";
|
|
9039
9149
|
}] | undefined;
|
|
9040
9150
|
rangeEnd?: ["start" | "end", {
|
|
9041
9151
|
value: number;
|
|
@@ -9044,6 +9154,9 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9044
9154
|
} | {
|
|
9045
9155
|
value: string;
|
|
9046
9156
|
type: "unparsed";
|
|
9157
|
+
} | {
|
|
9158
|
+
value: string;
|
|
9159
|
+
type: "var";
|
|
9047
9160
|
}] | undefined;
|
|
9048
9161
|
}, {
|
|
9049
9162
|
rangeStart?: ["start" | "end", {
|
|
@@ -9053,6 +9166,9 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9053
9166
|
} | {
|
|
9054
9167
|
value: string;
|
|
9055
9168
|
type: "unparsed";
|
|
9169
|
+
} | {
|
|
9170
|
+
value: string;
|
|
9171
|
+
type: "var";
|
|
9056
9172
|
}] | undefined;
|
|
9057
9173
|
rangeEnd?: ["start" | "end", {
|
|
9058
9174
|
value: number;
|
|
@@ -9061,6 +9177,9 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
|
|
|
9061
9177
|
} | {
|
|
9062
9178
|
value: string;
|
|
9063
9179
|
type: "unparsed";
|
|
9180
|
+
} | {
|
|
9181
|
+
value: string;
|
|
9182
|
+
type: "var";
|
|
9064
9183
|
}] | undefined;
|
|
9065
9184
|
}>;
|
|
9066
9185
|
export declare const animationAxisSchema: z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>;
|
|
@@ -9086,6 +9205,15 @@ export declare const viewRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<
|
|
|
9086
9205
|
}, {
|
|
9087
9206
|
value: string;
|
|
9088
9207
|
type: "unparsed";
|
|
9208
|
+
}>, z.ZodObject<{
|
|
9209
|
+
type: z.ZodLiteral<"var">;
|
|
9210
|
+
value: z.ZodString;
|
|
9211
|
+
}, "strip", z.ZodTypeAny, {
|
|
9212
|
+
value: string;
|
|
9213
|
+
type: "var";
|
|
9214
|
+
}, {
|
|
9215
|
+
value: string;
|
|
9216
|
+
type: "var";
|
|
9089
9217
|
}>]>], null>;
|
|
9090
9218
|
export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
9091
9219
|
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<{
|
|
@@ -9109,6 +9237,15 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9109
9237
|
}, {
|
|
9110
9238
|
value: string;
|
|
9111
9239
|
type: "unparsed";
|
|
9240
|
+
}>, z.ZodObject<{
|
|
9241
|
+
type: z.ZodLiteral<"var">;
|
|
9242
|
+
value: z.ZodString;
|
|
9243
|
+
}, "strip", z.ZodTypeAny, {
|
|
9244
|
+
value: string;
|
|
9245
|
+
type: "var";
|
|
9246
|
+
}, {
|
|
9247
|
+
value: string;
|
|
9248
|
+
type: "var";
|
|
9112
9249
|
}>]>], null>>;
|
|
9113
9250
|
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<{
|
|
9114
9251
|
type: z.ZodLiteral<"unit">;
|
|
@@ -9131,6 +9268,15 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9131
9268
|
}, {
|
|
9132
9269
|
value: string;
|
|
9133
9270
|
type: "unparsed";
|
|
9271
|
+
}>, z.ZodObject<{
|
|
9272
|
+
type: z.ZodLiteral<"var">;
|
|
9273
|
+
value: z.ZodString;
|
|
9274
|
+
}, "strip", z.ZodTypeAny, {
|
|
9275
|
+
value: string;
|
|
9276
|
+
type: "var";
|
|
9277
|
+
}, {
|
|
9278
|
+
value: string;
|
|
9279
|
+
type: "var";
|
|
9134
9280
|
}>]>], null>>;
|
|
9135
9281
|
}, "strip", z.ZodTypeAny, {
|
|
9136
9282
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
@@ -9140,6 +9286,9 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9140
9286
|
} | {
|
|
9141
9287
|
value: string;
|
|
9142
9288
|
type: "unparsed";
|
|
9289
|
+
} | {
|
|
9290
|
+
value: string;
|
|
9291
|
+
type: "var";
|
|
9143
9292
|
}] | undefined;
|
|
9144
9293
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
9145
9294
|
value: number;
|
|
@@ -9148,6 +9297,9 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9148
9297
|
} | {
|
|
9149
9298
|
value: string;
|
|
9150
9299
|
type: "unparsed";
|
|
9300
|
+
} | {
|
|
9301
|
+
value: string;
|
|
9302
|
+
type: "var";
|
|
9151
9303
|
}] | undefined;
|
|
9152
9304
|
}, {
|
|
9153
9305
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
@@ -9157,6 +9309,9 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9157
9309
|
} | {
|
|
9158
9310
|
value: string;
|
|
9159
9311
|
type: "unparsed";
|
|
9312
|
+
} | {
|
|
9313
|
+
value: string;
|
|
9314
|
+
type: "var";
|
|
9160
9315
|
}] | undefined;
|
|
9161
9316
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
9162
9317
|
value: number;
|
|
@@ -9165,6 +9320,9 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
|
|
|
9165
9320
|
} | {
|
|
9166
9321
|
value: string;
|
|
9167
9322
|
type: "unparsed";
|
|
9323
|
+
} | {
|
|
9324
|
+
value: string;
|
|
9325
|
+
type: "var";
|
|
9168
9326
|
}] | undefined;
|
|
9169
9327
|
}>;
|
|
9170
9328
|
export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -14228,6 +14386,28 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14228
14386
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
14229
14387
|
easing: z.ZodOptional<z.ZodString>;
|
|
14230
14388
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
14389
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
14390
|
+
type: z.ZodLiteral<"unit">;
|
|
14391
|
+
value: z.ZodNumber;
|
|
14392
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
14393
|
+
}, "strip", z.ZodTypeAny, {
|
|
14394
|
+
value: number;
|
|
14395
|
+
type: "unit";
|
|
14396
|
+
unit: "s" | "ms";
|
|
14397
|
+
}, {
|
|
14398
|
+
value: number;
|
|
14399
|
+
type: "unit";
|
|
14400
|
+
unit: "s" | "ms";
|
|
14401
|
+
}>, z.ZodObject<{
|
|
14402
|
+
type: z.ZodLiteral<"var">;
|
|
14403
|
+
value: z.ZodString;
|
|
14404
|
+
}, "strip", z.ZodTypeAny, {
|
|
14405
|
+
value: string;
|
|
14406
|
+
type: "var";
|
|
14407
|
+
}, {
|
|
14408
|
+
value: string;
|
|
14409
|
+
type: "var";
|
|
14410
|
+
}>]>>;
|
|
14231
14411
|
}, {
|
|
14232
14412
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
14233
14413
|
type: z.ZodLiteral<"unit">;
|
|
@@ -14250,6 +14430,15 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14250
14430
|
}, {
|
|
14251
14431
|
value: string;
|
|
14252
14432
|
type: "unparsed";
|
|
14433
|
+
}>, z.ZodObject<{
|
|
14434
|
+
type: z.ZodLiteral<"var">;
|
|
14435
|
+
value: z.ZodString;
|
|
14436
|
+
}, "strip", z.ZodTypeAny, {
|
|
14437
|
+
value: string;
|
|
14438
|
+
type: "var";
|
|
14439
|
+
}, {
|
|
14440
|
+
value: string;
|
|
14441
|
+
type: "var";
|
|
14253
14442
|
}>]>], null>>;
|
|
14254
14443
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
14255
14444
|
type: z.ZodLiteral<"unit">;
|
|
@@ -14272,10 +14461,27 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14272
14461
|
}, {
|
|
14273
14462
|
value: string;
|
|
14274
14463
|
type: "unparsed";
|
|
14464
|
+
}>, z.ZodObject<{
|
|
14465
|
+
type: z.ZodLiteral<"var">;
|
|
14466
|
+
value: z.ZodString;
|
|
14467
|
+
}, "strip", z.ZodTypeAny, {
|
|
14468
|
+
value: string;
|
|
14469
|
+
type: "var";
|
|
14470
|
+
}, {
|
|
14471
|
+
value: string;
|
|
14472
|
+
type: "var";
|
|
14275
14473
|
}>]>], null>>;
|
|
14276
14474
|
}>, "strip", z.ZodTypeAny, {
|
|
14277
14475
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14278
14476
|
easing?: string | undefined;
|
|
14477
|
+
duration?: {
|
|
14478
|
+
value: number;
|
|
14479
|
+
type: "unit";
|
|
14480
|
+
unit: "s" | "ms";
|
|
14481
|
+
} | {
|
|
14482
|
+
value: string;
|
|
14483
|
+
type: "var";
|
|
14484
|
+
} | undefined;
|
|
14279
14485
|
rangeStart?: ["start" | "end", {
|
|
14280
14486
|
value: number;
|
|
14281
14487
|
type: "unit";
|
|
@@ -14283,6 +14489,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14283
14489
|
} | {
|
|
14284
14490
|
value: string;
|
|
14285
14491
|
type: "unparsed";
|
|
14492
|
+
} | {
|
|
14493
|
+
value: string;
|
|
14494
|
+
type: "var";
|
|
14286
14495
|
}] | undefined;
|
|
14287
14496
|
rangeEnd?: ["start" | "end", {
|
|
14288
14497
|
value: number;
|
|
@@ -14291,10 +14500,21 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14291
14500
|
} | {
|
|
14292
14501
|
value: string;
|
|
14293
14502
|
type: "unparsed";
|
|
14503
|
+
} | {
|
|
14504
|
+
value: string;
|
|
14505
|
+
type: "var";
|
|
14294
14506
|
}] | undefined;
|
|
14295
14507
|
}, {
|
|
14296
14508
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14297
14509
|
easing?: string | undefined;
|
|
14510
|
+
duration?: {
|
|
14511
|
+
value: number;
|
|
14512
|
+
type: "unit";
|
|
14513
|
+
unit: "s" | "ms";
|
|
14514
|
+
} | {
|
|
14515
|
+
value: string;
|
|
14516
|
+
type: "var";
|
|
14517
|
+
} | undefined;
|
|
14298
14518
|
rangeStart?: ["start" | "end", {
|
|
14299
14519
|
value: number;
|
|
14300
14520
|
type: "unit";
|
|
@@ -14302,6 +14522,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14302
14522
|
} | {
|
|
14303
14523
|
value: string;
|
|
14304
14524
|
type: "unparsed";
|
|
14525
|
+
} | {
|
|
14526
|
+
value: string;
|
|
14527
|
+
type: "var";
|
|
14305
14528
|
}] | undefined;
|
|
14306
14529
|
rangeEnd?: ["start" | "end", {
|
|
14307
14530
|
value: number;
|
|
@@ -14310,6 +14533,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14310
14533
|
} | {
|
|
14311
14534
|
value: string;
|
|
14312
14535
|
type: "unparsed";
|
|
14536
|
+
} | {
|
|
14537
|
+
value: string;
|
|
14538
|
+
type: "var";
|
|
14313
14539
|
}] | undefined;
|
|
14314
14540
|
}>;
|
|
14315
14541
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -14921,6 +15147,14 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14921
15147
|
timing: {
|
|
14922
15148
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14923
15149
|
easing?: string | undefined;
|
|
15150
|
+
duration?: {
|
|
15151
|
+
value: number;
|
|
15152
|
+
type: "unit";
|
|
15153
|
+
unit: "s" | "ms";
|
|
15154
|
+
} | {
|
|
15155
|
+
value: string;
|
|
15156
|
+
type: "var";
|
|
15157
|
+
} | undefined;
|
|
14924
15158
|
rangeStart?: ["start" | "end", {
|
|
14925
15159
|
value: number;
|
|
14926
15160
|
type: "unit";
|
|
@@ -14928,6 +15162,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14928
15162
|
} | {
|
|
14929
15163
|
value: string;
|
|
14930
15164
|
type: "unparsed";
|
|
15165
|
+
} | {
|
|
15166
|
+
value: string;
|
|
15167
|
+
type: "var";
|
|
14931
15168
|
}] | undefined;
|
|
14932
15169
|
rangeEnd?: ["start" | "end", {
|
|
14933
15170
|
value: number;
|
|
@@ -14936,6 +15173,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
14936
15173
|
} | {
|
|
14937
15174
|
value: string;
|
|
14938
15175
|
type: "unparsed";
|
|
15176
|
+
} | {
|
|
15177
|
+
value: string;
|
|
15178
|
+
type: "var";
|
|
14939
15179
|
}] | undefined;
|
|
14940
15180
|
};
|
|
14941
15181
|
name?: string | undefined;
|
|
@@ -15550,6 +15790,14 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
15550
15790
|
timing: {
|
|
15551
15791
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
15552
15792
|
easing?: string | undefined;
|
|
15793
|
+
duration?: {
|
|
15794
|
+
value: number;
|
|
15795
|
+
type: "unit";
|
|
15796
|
+
unit: "s" | "ms";
|
|
15797
|
+
} | {
|
|
15798
|
+
value: string;
|
|
15799
|
+
type: "var";
|
|
15800
|
+
} | undefined;
|
|
15553
15801
|
rangeStart?: ["start" | "end", {
|
|
15554
15802
|
value: number;
|
|
15555
15803
|
type: "unit";
|
|
@@ -15557,6 +15805,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
15557
15805
|
} | {
|
|
15558
15806
|
value: string;
|
|
15559
15807
|
type: "unparsed";
|
|
15808
|
+
} | {
|
|
15809
|
+
value: string;
|
|
15810
|
+
type: "var";
|
|
15560
15811
|
}] | undefined;
|
|
15561
15812
|
rangeEnd?: ["start" | "end", {
|
|
15562
15813
|
value: number;
|
|
@@ -15565,6 +15816,9 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
|
|
|
15565
15816
|
} | {
|
|
15566
15817
|
value: string;
|
|
15567
15818
|
type: "unparsed";
|
|
15819
|
+
} | {
|
|
15820
|
+
value: string;
|
|
15821
|
+
type: "var";
|
|
15568
15822
|
}] | undefined;
|
|
15569
15823
|
};
|
|
15570
15824
|
name?: string | undefined;
|
|
@@ -20636,6 +20890,28 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20636
20890
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
20637
20891
|
easing: z.ZodOptional<z.ZodString>;
|
|
20638
20892
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
20893
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
20894
|
+
type: z.ZodLiteral<"unit">;
|
|
20895
|
+
value: z.ZodNumber;
|
|
20896
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
20897
|
+
}, "strip", z.ZodTypeAny, {
|
|
20898
|
+
value: number;
|
|
20899
|
+
type: "unit";
|
|
20900
|
+
unit: "s" | "ms";
|
|
20901
|
+
}, {
|
|
20902
|
+
value: number;
|
|
20903
|
+
type: "unit";
|
|
20904
|
+
unit: "s" | "ms";
|
|
20905
|
+
}>, z.ZodObject<{
|
|
20906
|
+
type: z.ZodLiteral<"var">;
|
|
20907
|
+
value: z.ZodString;
|
|
20908
|
+
}, "strip", z.ZodTypeAny, {
|
|
20909
|
+
value: string;
|
|
20910
|
+
type: "var";
|
|
20911
|
+
}, {
|
|
20912
|
+
value: string;
|
|
20913
|
+
type: "var";
|
|
20914
|
+
}>]>>;
|
|
20639
20915
|
}, {
|
|
20640
20916
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
20641
20917
|
type: z.ZodLiteral<"unit">;
|
|
@@ -20658,6 +20934,15 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20658
20934
|
}, {
|
|
20659
20935
|
value: string;
|
|
20660
20936
|
type: "unparsed";
|
|
20937
|
+
}>, z.ZodObject<{
|
|
20938
|
+
type: z.ZodLiteral<"var">;
|
|
20939
|
+
value: z.ZodString;
|
|
20940
|
+
}, "strip", z.ZodTypeAny, {
|
|
20941
|
+
value: string;
|
|
20942
|
+
type: "var";
|
|
20943
|
+
}, {
|
|
20944
|
+
value: string;
|
|
20945
|
+
type: "var";
|
|
20661
20946
|
}>]>], null>>;
|
|
20662
20947
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
20663
20948
|
type: z.ZodLiteral<"unit">;
|
|
@@ -20680,10 +20965,27 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20680
20965
|
}, {
|
|
20681
20966
|
value: string;
|
|
20682
20967
|
type: "unparsed";
|
|
20968
|
+
}>, z.ZodObject<{
|
|
20969
|
+
type: z.ZodLiteral<"var">;
|
|
20970
|
+
value: z.ZodString;
|
|
20971
|
+
}, "strip", z.ZodTypeAny, {
|
|
20972
|
+
value: string;
|
|
20973
|
+
type: "var";
|
|
20974
|
+
}, {
|
|
20975
|
+
value: string;
|
|
20976
|
+
type: "var";
|
|
20683
20977
|
}>]>], null>>;
|
|
20684
20978
|
}>, "strip", z.ZodTypeAny, {
|
|
20685
20979
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
20686
20980
|
easing?: string | undefined;
|
|
20981
|
+
duration?: {
|
|
20982
|
+
value: number;
|
|
20983
|
+
type: "unit";
|
|
20984
|
+
unit: "s" | "ms";
|
|
20985
|
+
} | {
|
|
20986
|
+
value: string;
|
|
20987
|
+
type: "var";
|
|
20988
|
+
} | undefined;
|
|
20687
20989
|
rangeStart?: ["start" | "end", {
|
|
20688
20990
|
value: number;
|
|
20689
20991
|
type: "unit";
|
|
@@ -20691,6 +20993,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20691
20993
|
} | {
|
|
20692
20994
|
value: string;
|
|
20693
20995
|
type: "unparsed";
|
|
20996
|
+
} | {
|
|
20997
|
+
value: string;
|
|
20998
|
+
type: "var";
|
|
20694
20999
|
}] | undefined;
|
|
20695
21000
|
rangeEnd?: ["start" | "end", {
|
|
20696
21001
|
value: number;
|
|
@@ -20699,10 +21004,21 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20699
21004
|
} | {
|
|
20700
21005
|
value: string;
|
|
20701
21006
|
type: "unparsed";
|
|
21007
|
+
} | {
|
|
21008
|
+
value: string;
|
|
21009
|
+
type: "var";
|
|
20702
21010
|
}] | undefined;
|
|
20703
21011
|
}, {
|
|
20704
21012
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
20705
21013
|
easing?: string | undefined;
|
|
21014
|
+
duration?: {
|
|
21015
|
+
value: number;
|
|
21016
|
+
type: "unit";
|
|
21017
|
+
unit: "s" | "ms";
|
|
21018
|
+
} | {
|
|
21019
|
+
value: string;
|
|
21020
|
+
type: "var";
|
|
21021
|
+
} | undefined;
|
|
20706
21022
|
rangeStart?: ["start" | "end", {
|
|
20707
21023
|
value: number;
|
|
20708
21024
|
type: "unit";
|
|
@@ -20710,6 +21026,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20710
21026
|
} | {
|
|
20711
21027
|
value: string;
|
|
20712
21028
|
type: "unparsed";
|
|
21029
|
+
} | {
|
|
21030
|
+
value: string;
|
|
21031
|
+
type: "var";
|
|
20713
21032
|
}] | undefined;
|
|
20714
21033
|
rangeEnd?: ["start" | "end", {
|
|
20715
21034
|
value: number;
|
|
@@ -20718,6 +21037,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
20718
21037
|
} | {
|
|
20719
21038
|
value: string;
|
|
20720
21039
|
type: "unparsed";
|
|
21040
|
+
} | {
|
|
21041
|
+
value: string;
|
|
21042
|
+
type: "var";
|
|
20721
21043
|
}] | undefined;
|
|
20722
21044
|
}>;
|
|
20723
21045
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -21329,6 +21651,14 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21329
21651
|
timing: {
|
|
21330
21652
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
21331
21653
|
easing?: string | undefined;
|
|
21654
|
+
duration?: {
|
|
21655
|
+
value: number;
|
|
21656
|
+
type: "unit";
|
|
21657
|
+
unit: "s" | "ms";
|
|
21658
|
+
} | {
|
|
21659
|
+
value: string;
|
|
21660
|
+
type: "var";
|
|
21661
|
+
} | undefined;
|
|
21332
21662
|
rangeStart?: ["start" | "end", {
|
|
21333
21663
|
value: number;
|
|
21334
21664
|
type: "unit";
|
|
@@ -21336,6 +21666,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21336
21666
|
} | {
|
|
21337
21667
|
value: string;
|
|
21338
21668
|
type: "unparsed";
|
|
21669
|
+
} | {
|
|
21670
|
+
value: string;
|
|
21671
|
+
type: "var";
|
|
21339
21672
|
}] | undefined;
|
|
21340
21673
|
rangeEnd?: ["start" | "end", {
|
|
21341
21674
|
value: number;
|
|
@@ -21344,6 +21677,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21344
21677
|
} | {
|
|
21345
21678
|
value: string;
|
|
21346
21679
|
type: "unparsed";
|
|
21680
|
+
} | {
|
|
21681
|
+
value: string;
|
|
21682
|
+
type: "var";
|
|
21347
21683
|
}] | undefined;
|
|
21348
21684
|
};
|
|
21349
21685
|
name?: string | undefined;
|
|
@@ -21958,6 +22294,14 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21958
22294
|
timing: {
|
|
21959
22295
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
21960
22296
|
easing?: string | undefined;
|
|
22297
|
+
duration?: {
|
|
22298
|
+
value: number;
|
|
22299
|
+
type: "unit";
|
|
22300
|
+
unit: "s" | "ms";
|
|
22301
|
+
} | {
|
|
22302
|
+
value: string;
|
|
22303
|
+
type: "var";
|
|
22304
|
+
} | undefined;
|
|
21961
22305
|
rangeStart?: ["start" | "end", {
|
|
21962
22306
|
value: number;
|
|
21963
22307
|
type: "unit";
|
|
@@ -21965,6 +22309,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21965
22309
|
} | {
|
|
21966
22310
|
value: string;
|
|
21967
22311
|
type: "unparsed";
|
|
22312
|
+
} | {
|
|
22313
|
+
value: string;
|
|
22314
|
+
type: "var";
|
|
21968
22315
|
}] | undefined;
|
|
21969
22316
|
rangeEnd?: ["start" | "end", {
|
|
21970
22317
|
value: number;
|
|
@@ -21973,6 +22320,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
21973
22320
|
} | {
|
|
21974
22321
|
value: string;
|
|
21975
22322
|
type: "unparsed";
|
|
22323
|
+
} | {
|
|
22324
|
+
value: string;
|
|
22325
|
+
type: "var";
|
|
21976
22326
|
}] | undefined;
|
|
21977
22327
|
};
|
|
21978
22328
|
name?: string | undefined;
|
|
@@ -22592,6 +22942,14 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
22592
22942
|
timing: {
|
|
22593
22943
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
22594
22944
|
easing?: string | undefined;
|
|
22945
|
+
duration?: {
|
|
22946
|
+
value: number;
|
|
22947
|
+
type: "unit";
|
|
22948
|
+
unit: "s" | "ms";
|
|
22949
|
+
} | {
|
|
22950
|
+
value: string;
|
|
22951
|
+
type: "var";
|
|
22952
|
+
} | undefined;
|
|
22595
22953
|
rangeStart?: ["start" | "end", {
|
|
22596
22954
|
value: number;
|
|
22597
22955
|
type: "unit";
|
|
@@ -22599,6 +22957,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
22599
22957
|
} | {
|
|
22600
22958
|
value: string;
|
|
22601
22959
|
type: "unparsed";
|
|
22960
|
+
} | {
|
|
22961
|
+
value: string;
|
|
22962
|
+
type: "var";
|
|
22602
22963
|
}] | undefined;
|
|
22603
22964
|
rangeEnd?: ["start" | "end", {
|
|
22604
22965
|
value: number;
|
|
@@ -22607,6 +22968,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
22607
22968
|
} | {
|
|
22608
22969
|
value: string;
|
|
22609
22970
|
type: "unparsed";
|
|
22971
|
+
} | {
|
|
22972
|
+
value: string;
|
|
22973
|
+
type: "var";
|
|
22610
22974
|
}] | undefined;
|
|
22611
22975
|
};
|
|
22612
22976
|
name?: string | undefined;
|
|
@@ -23228,6 +23592,14 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
23228
23592
|
timing: {
|
|
23229
23593
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
23230
23594
|
easing?: string | undefined;
|
|
23595
|
+
duration?: {
|
|
23596
|
+
value: number;
|
|
23597
|
+
type: "unit";
|
|
23598
|
+
unit: "s" | "ms";
|
|
23599
|
+
} | {
|
|
23600
|
+
value: string;
|
|
23601
|
+
type: "var";
|
|
23602
|
+
} | undefined;
|
|
23231
23603
|
rangeStart?: ["start" | "end", {
|
|
23232
23604
|
value: number;
|
|
23233
23605
|
type: "unit";
|
|
@@ -23235,6 +23607,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
23235
23607
|
} | {
|
|
23236
23608
|
value: string;
|
|
23237
23609
|
type: "unparsed";
|
|
23610
|
+
} | {
|
|
23611
|
+
value: string;
|
|
23612
|
+
type: "var";
|
|
23238
23613
|
}] | undefined;
|
|
23239
23614
|
rangeEnd?: ["start" | "end", {
|
|
23240
23615
|
value: number;
|
|
@@ -23243,6 +23618,9 @@ export declare const scrollActionSchema: z.ZodObject<{
|
|
|
23243
23618
|
} | {
|
|
23244
23619
|
value: string;
|
|
23245
23620
|
type: "unparsed";
|
|
23621
|
+
} | {
|
|
23622
|
+
value: string;
|
|
23623
|
+
type: "var";
|
|
23246
23624
|
}] | undefined;
|
|
23247
23625
|
};
|
|
23248
23626
|
name?: string | undefined;
|
|
@@ -28315,6 +28693,28 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28315
28693
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
28316
28694
|
easing: z.ZodOptional<z.ZodString>;
|
|
28317
28695
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
28696
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
28697
|
+
type: z.ZodLiteral<"unit">;
|
|
28698
|
+
value: z.ZodNumber;
|
|
28699
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
28700
|
+
}, "strip", z.ZodTypeAny, {
|
|
28701
|
+
value: number;
|
|
28702
|
+
type: "unit";
|
|
28703
|
+
unit: "s" | "ms";
|
|
28704
|
+
}, {
|
|
28705
|
+
value: number;
|
|
28706
|
+
type: "unit";
|
|
28707
|
+
unit: "s" | "ms";
|
|
28708
|
+
}>, z.ZodObject<{
|
|
28709
|
+
type: z.ZodLiteral<"var">;
|
|
28710
|
+
value: z.ZodString;
|
|
28711
|
+
}, "strip", z.ZodTypeAny, {
|
|
28712
|
+
value: string;
|
|
28713
|
+
type: "var";
|
|
28714
|
+
}, {
|
|
28715
|
+
value: string;
|
|
28716
|
+
type: "var";
|
|
28717
|
+
}>]>>;
|
|
28318
28718
|
}, {
|
|
28319
28719
|
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<{
|
|
28320
28720
|
type: z.ZodLiteral<"unit">;
|
|
@@ -28337,6 +28737,15 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28337
28737
|
}, {
|
|
28338
28738
|
value: string;
|
|
28339
28739
|
type: "unparsed";
|
|
28740
|
+
}>, z.ZodObject<{
|
|
28741
|
+
type: z.ZodLiteral<"var">;
|
|
28742
|
+
value: z.ZodString;
|
|
28743
|
+
}, "strip", z.ZodTypeAny, {
|
|
28744
|
+
value: string;
|
|
28745
|
+
type: "var";
|
|
28746
|
+
}, {
|
|
28747
|
+
value: string;
|
|
28748
|
+
type: "var";
|
|
28340
28749
|
}>]>], null>>;
|
|
28341
28750
|
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<{
|
|
28342
28751
|
type: z.ZodLiteral<"unit">;
|
|
@@ -28359,10 +28768,27 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28359
28768
|
}, {
|
|
28360
28769
|
value: string;
|
|
28361
28770
|
type: "unparsed";
|
|
28771
|
+
}>, z.ZodObject<{
|
|
28772
|
+
type: z.ZodLiteral<"var">;
|
|
28773
|
+
value: z.ZodString;
|
|
28774
|
+
}, "strip", z.ZodTypeAny, {
|
|
28775
|
+
value: string;
|
|
28776
|
+
type: "var";
|
|
28777
|
+
}, {
|
|
28778
|
+
value: string;
|
|
28779
|
+
type: "var";
|
|
28362
28780
|
}>]>], null>>;
|
|
28363
28781
|
}>, "strip", z.ZodTypeAny, {
|
|
28364
28782
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
28365
28783
|
easing?: string | undefined;
|
|
28784
|
+
duration?: {
|
|
28785
|
+
value: number;
|
|
28786
|
+
type: "unit";
|
|
28787
|
+
unit: "s" | "ms";
|
|
28788
|
+
} | {
|
|
28789
|
+
value: string;
|
|
28790
|
+
type: "var";
|
|
28791
|
+
} | undefined;
|
|
28366
28792
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
28367
28793
|
value: number;
|
|
28368
28794
|
type: "unit";
|
|
@@ -28370,6 +28796,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28370
28796
|
} | {
|
|
28371
28797
|
value: string;
|
|
28372
28798
|
type: "unparsed";
|
|
28799
|
+
} | {
|
|
28800
|
+
value: string;
|
|
28801
|
+
type: "var";
|
|
28373
28802
|
}] | undefined;
|
|
28374
28803
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
28375
28804
|
value: number;
|
|
@@ -28378,10 +28807,21 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28378
28807
|
} | {
|
|
28379
28808
|
value: string;
|
|
28380
28809
|
type: "unparsed";
|
|
28810
|
+
} | {
|
|
28811
|
+
value: string;
|
|
28812
|
+
type: "var";
|
|
28381
28813
|
}] | undefined;
|
|
28382
28814
|
}, {
|
|
28383
28815
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
28384
28816
|
easing?: string | undefined;
|
|
28817
|
+
duration?: {
|
|
28818
|
+
value: number;
|
|
28819
|
+
type: "unit";
|
|
28820
|
+
unit: "s" | "ms";
|
|
28821
|
+
} | {
|
|
28822
|
+
value: string;
|
|
28823
|
+
type: "var";
|
|
28824
|
+
} | undefined;
|
|
28385
28825
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
28386
28826
|
value: number;
|
|
28387
28827
|
type: "unit";
|
|
@@ -28389,6 +28829,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28389
28829
|
} | {
|
|
28390
28830
|
value: string;
|
|
28391
28831
|
type: "unparsed";
|
|
28832
|
+
} | {
|
|
28833
|
+
value: string;
|
|
28834
|
+
type: "var";
|
|
28392
28835
|
}] | undefined;
|
|
28393
28836
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
28394
28837
|
value: number;
|
|
@@ -28397,6 +28840,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
28397
28840
|
} | {
|
|
28398
28841
|
value: string;
|
|
28399
28842
|
type: "unparsed";
|
|
28843
|
+
} | {
|
|
28844
|
+
value: string;
|
|
28845
|
+
type: "var";
|
|
28400
28846
|
}] | undefined;
|
|
28401
28847
|
}>;
|
|
28402
28848
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -29008,6 +29454,14 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29008
29454
|
timing: {
|
|
29009
29455
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
29010
29456
|
easing?: string | undefined;
|
|
29457
|
+
duration?: {
|
|
29458
|
+
value: number;
|
|
29459
|
+
type: "unit";
|
|
29460
|
+
unit: "s" | "ms";
|
|
29461
|
+
} | {
|
|
29462
|
+
value: string;
|
|
29463
|
+
type: "var";
|
|
29464
|
+
} | undefined;
|
|
29011
29465
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
29012
29466
|
value: number;
|
|
29013
29467
|
type: "unit";
|
|
@@ -29015,6 +29469,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29015
29469
|
} | {
|
|
29016
29470
|
value: string;
|
|
29017
29471
|
type: "unparsed";
|
|
29472
|
+
} | {
|
|
29473
|
+
value: string;
|
|
29474
|
+
type: "var";
|
|
29018
29475
|
}] | undefined;
|
|
29019
29476
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
29020
29477
|
value: number;
|
|
@@ -29023,6 +29480,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29023
29480
|
} | {
|
|
29024
29481
|
value: string;
|
|
29025
29482
|
type: "unparsed";
|
|
29483
|
+
} | {
|
|
29484
|
+
value: string;
|
|
29485
|
+
type: "var";
|
|
29026
29486
|
}] | undefined;
|
|
29027
29487
|
};
|
|
29028
29488
|
name?: string | undefined;
|
|
@@ -29637,6 +30097,14 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29637
30097
|
timing: {
|
|
29638
30098
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
29639
30099
|
easing?: string | undefined;
|
|
30100
|
+
duration?: {
|
|
30101
|
+
value: number;
|
|
30102
|
+
type: "unit";
|
|
30103
|
+
unit: "s" | "ms";
|
|
30104
|
+
} | {
|
|
30105
|
+
value: string;
|
|
30106
|
+
type: "var";
|
|
30107
|
+
} | undefined;
|
|
29640
30108
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
29641
30109
|
value: number;
|
|
29642
30110
|
type: "unit";
|
|
@@ -29644,6 +30112,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29644
30112
|
} | {
|
|
29645
30113
|
value: string;
|
|
29646
30114
|
type: "unparsed";
|
|
30115
|
+
} | {
|
|
30116
|
+
value: string;
|
|
30117
|
+
type: "var";
|
|
29647
30118
|
}] | undefined;
|
|
29648
30119
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
29649
30120
|
value: number;
|
|
@@ -29652,6 +30123,9 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
29652
30123
|
} | {
|
|
29653
30124
|
value: string;
|
|
29654
30125
|
type: "unparsed";
|
|
30126
|
+
} | {
|
|
30127
|
+
value: string;
|
|
30128
|
+
type: "var";
|
|
29655
30129
|
}] | undefined;
|
|
29656
30130
|
};
|
|
29657
30131
|
name?: string | undefined;
|
|
@@ -34723,6 +35197,28 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34723
35197
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
34724
35198
|
easing: z.ZodOptional<z.ZodString>;
|
|
34725
35199
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
35200
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
35201
|
+
type: z.ZodLiteral<"unit">;
|
|
35202
|
+
value: z.ZodNumber;
|
|
35203
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
35204
|
+
}, "strip", z.ZodTypeAny, {
|
|
35205
|
+
value: number;
|
|
35206
|
+
type: "unit";
|
|
35207
|
+
unit: "s" | "ms";
|
|
35208
|
+
}, {
|
|
35209
|
+
value: number;
|
|
35210
|
+
type: "unit";
|
|
35211
|
+
unit: "s" | "ms";
|
|
35212
|
+
}>, z.ZodObject<{
|
|
35213
|
+
type: z.ZodLiteral<"var">;
|
|
35214
|
+
value: z.ZodString;
|
|
35215
|
+
}, "strip", z.ZodTypeAny, {
|
|
35216
|
+
value: string;
|
|
35217
|
+
type: "var";
|
|
35218
|
+
}, {
|
|
35219
|
+
value: string;
|
|
35220
|
+
type: "var";
|
|
35221
|
+
}>]>>;
|
|
34726
35222
|
}, {
|
|
34727
35223
|
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<{
|
|
34728
35224
|
type: z.ZodLiteral<"unit">;
|
|
@@ -34745,6 +35241,15 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34745
35241
|
}, {
|
|
34746
35242
|
value: string;
|
|
34747
35243
|
type: "unparsed";
|
|
35244
|
+
}>, z.ZodObject<{
|
|
35245
|
+
type: z.ZodLiteral<"var">;
|
|
35246
|
+
value: z.ZodString;
|
|
35247
|
+
}, "strip", z.ZodTypeAny, {
|
|
35248
|
+
value: string;
|
|
35249
|
+
type: "var";
|
|
35250
|
+
}, {
|
|
35251
|
+
value: string;
|
|
35252
|
+
type: "var";
|
|
34748
35253
|
}>]>], null>>;
|
|
34749
35254
|
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<{
|
|
34750
35255
|
type: z.ZodLiteral<"unit">;
|
|
@@ -34767,10 +35272,27 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34767
35272
|
}, {
|
|
34768
35273
|
value: string;
|
|
34769
35274
|
type: "unparsed";
|
|
35275
|
+
}>, z.ZodObject<{
|
|
35276
|
+
type: z.ZodLiteral<"var">;
|
|
35277
|
+
value: z.ZodString;
|
|
35278
|
+
}, "strip", z.ZodTypeAny, {
|
|
35279
|
+
value: string;
|
|
35280
|
+
type: "var";
|
|
35281
|
+
}, {
|
|
35282
|
+
value: string;
|
|
35283
|
+
type: "var";
|
|
34770
35284
|
}>]>], null>>;
|
|
34771
35285
|
}>, "strip", z.ZodTypeAny, {
|
|
34772
35286
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
34773
35287
|
easing?: string | undefined;
|
|
35288
|
+
duration?: {
|
|
35289
|
+
value: number;
|
|
35290
|
+
type: "unit";
|
|
35291
|
+
unit: "s" | "ms";
|
|
35292
|
+
} | {
|
|
35293
|
+
value: string;
|
|
35294
|
+
type: "var";
|
|
35295
|
+
} | undefined;
|
|
34774
35296
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34775
35297
|
value: number;
|
|
34776
35298
|
type: "unit";
|
|
@@ -34778,6 +35300,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34778
35300
|
} | {
|
|
34779
35301
|
value: string;
|
|
34780
35302
|
type: "unparsed";
|
|
35303
|
+
} | {
|
|
35304
|
+
value: string;
|
|
35305
|
+
type: "var";
|
|
34781
35306
|
}] | undefined;
|
|
34782
35307
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34783
35308
|
value: number;
|
|
@@ -34786,10 +35311,21 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34786
35311
|
} | {
|
|
34787
35312
|
value: string;
|
|
34788
35313
|
type: "unparsed";
|
|
35314
|
+
} | {
|
|
35315
|
+
value: string;
|
|
35316
|
+
type: "var";
|
|
34789
35317
|
}] | undefined;
|
|
34790
35318
|
}, {
|
|
34791
35319
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
34792
35320
|
easing?: string | undefined;
|
|
35321
|
+
duration?: {
|
|
35322
|
+
value: number;
|
|
35323
|
+
type: "unit";
|
|
35324
|
+
unit: "s" | "ms";
|
|
35325
|
+
} | {
|
|
35326
|
+
value: string;
|
|
35327
|
+
type: "var";
|
|
35328
|
+
} | undefined;
|
|
34793
35329
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34794
35330
|
value: number;
|
|
34795
35331
|
type: "unit";
|
|
@@ -34797,6 +35333,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34797
35333
|
} | {
|
|
34798
35334
|
value: string;
|
|
34799
35335
|
type: "unparsed";
|
|
35336
|
+
} | {
|
|
35337
|
+
value: string;
|
|
35338
|
+
type: "var";
|
|
34800
35339
|
}] | undefined;
|
|
34801
35340
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34802
35341
|
value: number;
|
|
@@ -34805,6 +35344,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
34805
35344
|
} | {
|
|
34806
35345
|
value: string;
|
|
34807
35346
|
type: "unparsed";
|
|
35347
|
+
} | {
|
|
35348
|
+
value: string;
|
|
35349
|
+
type: "var";
|
|
34808
35350
|
}] | undefined;
|
|
34809
35351
|
}>;
|
|
34810
35352
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -35416,6 +35958,14 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
35416
35958
|
timing: {
|
|
35417
35959
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
35418
35960
|
easing?: string | undefined;
|
|
35961
|
+
duration?: {
|
|
35962
|
+
value: number;
|
|
35963
|
+
type: "unit";
|
|
35964
|
+
unit: "s" | "ms";
|
|
35965
|
+
} | {
|
|
35966
|
+
value: string;
|
|
35967
|
+
type: "var";
|
|
35968
|
+
} | undefined;
|
|
35419
35969
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
35420
35970
|
value: number;
|
|
35421
35971
|
type: "unit";
|
|
@@ -35423,6 +35973,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
35423
35973
|
} | {
|
|
35424
35974
|
value: string;
|
|
35425
35975
|
type: "unparsed";
|
|
35976
|
+
} | {
|
|
35977
|
+
value: string;
|
|
35978
|
+
type: "var";
|
|
35426
35979
|
}] | undefined;
|
|
35427
35980
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
35428
35981
|
value: number;
|
|
@@ -35431,6 +35984,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
35431
35984
|
} | {
|
|
35432
35985
|
value: string;
|
|
35433
35986
|
type: "unparsed";
|
|
35987
|
+
} | {
|
|
35988
|
+
value: string;
|
|
35989
|
+
type: "var";
|
|
35434
35990
|
}] | undefined;
|
|
35435
35991
|
};
|
|
35436
35992
|
name?: string | undefined;
|
|
@@ -36045,6 +36601,14 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36045
36601
|
timing: {
|
|
36046
36602
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
36047
36603
|
easing?: string | undefined;
|
|
36604
|
+
duration?: {
|
|
36605
|
+
value: number;
|
|
36606
|
+
type: "unit";
|
|
36607
|
+
unit: "s" | "ms";
|
|
36608
|
+
} | {
|
|
36609
|
+
value: string;
|
|
36610
|
+
type: "var";
|
|
36611
|
+
} | undefined;
|
|
36048
36612
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36049
36613
|
value: number;
|
|
36050
36614
|
type: "unit";
|
|
@@ -36052,6 +36616,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36052
36616
|
} | {
|
|
36053
36617
|
value: string;
|
|
36054
36618
|
type: "unparsed";
|
|
36619
|
+
} | {
|
|
36620
|
+
value: string;
|
|
36621
|
+
type: "var";
|
|
36055
36622
|
}] | undefined;
|
|
36056
36623
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36057
36624
|
value: number;
|
|
@@ -36060,6 +36627,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36060
36627
|
} | {
|
|
36061
36628
|
value: string;
|
|
36062
36629
|
type: "unparsed";
|
|
36630
|
+
} | {
|
|
36631
|
+
value: string;
|
|
36632
|
+
type: "var";
|
|
36063
36633
|
}] | undefined;
|
|
36064
36634
|
};
|
|
36065
36635
|
name?: string | undefined;
|
|
@@ -36087,6 +36657,15 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36087
36657
|
}, {
|
|
36088
36658
|
value: string;
|
|
36089
36659
|
type: "unparsed";
|
|
36660
|
+
}>, z.ZodObject<{
|
|
36661
|
+
type: z.ZodLiteral<"var">;
|
|
36662
|
+
value: z.ZodString;
|
|
36663
|
+
}, "strip", z.ZodTypeAny, {
|
|
36664
|
+
value: string;
|
|
36665
|
+
type: "var";
|
|
36666
|
+
}, {
|
|
36667
|
+
value: string;
|
|
36668
|
+
type: "var";
|
|
36090
36669
|
}>]>, z.ZodObject<{
|
|
36091
36670
|
type: z.ZodLiteral<"keyword">;
|
|
36092
36671
|
value: z.ZodLiteral<"auto">;
|
|
@@ -36118,6 +36697,15 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36118
36697
|
}, {
|
|
36119
36698
|
value: string;
|
|
36120
36699
|
type: "unparsed";
|
|
36700
|
+
}>, z.ZodObject<{
|
|
36701
|
+
type: z.ZodLiteral<"var">;
|
|
36702
|
+
value: z.ZodString;
|
|
36703
|
+
}, "strip", z.ZodTypeAny, {
|
|
36704
|
+
value: string;
|
|
36705
|
+
type: "var";
|
|
36706
|
+
}, {
|
|
36707
|
+
value: string;
|
|
36708
|
+
type: "var";
|
|
36121
36709
|
}>]>, z.ZodObject<{
|
|
36122
36710
|
type: z.ZodLiteral<"keyword">;
|
|
36123
36711
|
value: z.ZodLiteral<"auto">;
|
|
@@ -36741,6 +37329,14 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36741
37329
|
timing: {
|
|
36742
37330
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
36743
37331
|
easing?: string | undefined;
|
|
37332
|
+
duration?: {
|
|
37333
|
+
value: number;
|
|
37334
|
+
type: "unit";
|
|
37335
|
+
unit: "s" | "ms";
|
|
37336
|
+
} | {
|
|
37337
|
+
value: string;
|
|
37338
|
+
type: "var";
|
|
37339
|
+
} | undefined;
|
|
36744
37340
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36745
37341
|
value: number;
|
|
36746
37342
|
type: "unit";
|
|
@@ -36748,6 +37344,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36748
37344
|
} | {
|
|
36749
37345
|
value: string;
|
|
36750
37346
|
type: "unparsed";
|
|
37347
|
+
} | {
|
|
37348
|
+
value: string;
|
|
37349
|
+
type: "var";
|
|
36751
37350
|
}] | undefined;
|
|
36752
37351
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36753
37352
|
value: number;
|
|
@@ -36756,6 +37355,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36756
37355
|
} | {
|
|
36757
37356
|
value: string;
|
|
36758
37357
|
type: "unparsed";
|
|
37358
|
+
} | {
|
|
37359
|
+
value: string;
|
|
37360
|
+
type: "var";
|
|
36759
37361
|
}] | undefined;
|
|
36760
37362
|
};
|
|
36761
37363
|
name?: string | undefined;
|
|
@@ -36773,6 +37375,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36773
37375
|
} | {
|
|
36774
37376
|
value: string;
|
|
36775
37377
|
type: "unparsed";
|
|
37378
|
+
} | {
|
|
37379
|
+
value: string;
|
|
37380
|
+
type: "var";
|
|
36776
37381
|
} | {
|
|
36777
37382
|
value: "auto";
|
|
36778
37383
|
type: "keyword";
|
|
@@ -36784,6 +37389,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
36784
37389
|
} | {
|
|
36785
37390
|
value: string;
|
|
36786
37391
|
type: "unparsed";
|
|
37392
|
+
} | {
|
|
37393
|
+
value: string;
|
|
37394
|
+
type: "var";
|
|
36787
37395
|
} | {
|
|
36788
37396
|
value: "auto";
|
|
36789
37397
|
type: "keyword";
|
|
@@ -37399,6 +38007,14 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
37399
38007
|
timing: {
|
|
37400
38008
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
37401
38009
|
easing?: string | undefined;
|
|
38010
|
+
duration?: {
|
|
38011
|
+
value: number;
|
|
38012
|
+
type: "unit";
|
|
38013
|
+
unit: "s" | "ms";
|
|
38014
|
+
} | {
|
|
38015
|
+
value: string;
|
|
38016
|
+
type: "var";
|
|
38017
|
+
} | undefined;
|
|
37402
38018
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
37403
38019
|
value: number;
|
|
37404
38020
|
type: "unit";
|
|
@@ -37406,6 +38022,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
37406
38022
|
} | {
|
|
37407
38023
|
value: string;
|
|
37408
38024
|
type: "unparsed";
|
|
38025
|
+
} | {
|
|
38026
|
+
value: string;
|
|
38027
|
+
type: "var";
|
|
37409
38028
|
}] | undefined;
|
|
37410
38029
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
37411
38030
|
value: number;
|
|
@@ -37414,6 +38033,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
37414
38033
|
} | {
|
|
37415
38034
|
value: string;
|
|
37416
38035
|
type: "unparsed";
|
|
38036
|
+
} | {
|
|
38037
|
+
value: string;
|
|
38038
|
+
type: "var";
|
|
37417
38039
|
}] | undefined;
|
|
37418
38040
|
};
|
|
37419
38041
|
name?: string | undefined;
|
|
@@ -37431,6 +38053,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
37431
38053
|
} | {
|
|
37432
38054
|
value: string;
|
|
37433
38055
|
type: "unparsed";
|
|
38056
|
+
} | {
|
|
38057
|
+
value: string;
|
|
38058
|
+
type: "var";
|
|
37434
38059
|
} | {
|
|
37435
38060
|
value: "auto";
|
|
37436
38061
|
type: "keyword";
|
|
@@ -37442,6 +38067,9 @@ export declare const viewActionSchema: z.ZodObject<{
|
|
|
37442
38067
|
} | {
|
|
37443
38068
|
value: string;
|
|
37444
38069
|
type: "unparsed";
|
|
38070
|
+
} | {
|
|
38071
|
+
value: string;
|
|
38072
|
+
type: "var";
|
|
37445
38073
|
} | {
|
|
37446
38074
|
value: "auto";
|
|
37447
38075
|
type: "keyword";
|
|
@@ -42512,6 +43140,28 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42512
43140
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
42513
43141
|
easing: z.ZodOptional<z.ZodString>;
|
|
42514
43142
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
43143
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
43144
|
+
type: z.ZodLiteral<"unit">;
|
|
43145
|
+
value: z.ZodNumber;
|
|
43146
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
43147
|
+
}, "strip", z.ZodTypeAny, {
|
|
43148
|
+
value: number;
|
|
43149
|
+
type: "unit";
|
|
43150
|
+
unit: "s" | "ms";
|
|
43151
|
+
}, {
|
|
43152
|
+
value: number;
|
|
43153
|
+
type: "unit";
|
|
43154
|
+
unit: "s" | "ms";
|
|
43155
|
+
}>, z.ZodObject<{
|
|
43156
|
+
type: z.ZodLiteral<"var">;
|
|
43157
|
+
value: z.ZodString;
|
|
43158
|
+
}, "strip", z.ZodTypeAny, {
|
|
43159
|
+
value: string;
|
|
43160
|
+
type: "var";
|
|
43161
|
+
}, {
|
|
43162
|
+
value: string;
|
|
43163
|
+
type: "var";
|
|
43164
|
+
}>]>>;
|
|
42515
43165
|
}, {
|
|
42516
43166
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
42517
43167
|
type: z.ZodLiteral<"unit">;
|
|
@@ -42534,6 +43184,15 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42534
43184
|
}, {
|
|
42535
43185
|
value: string;
|
|
42536
43186
|
type: "unparsed";
|
|
43187
|
+
}>, z.ZodObject<{
|
|
43188
|
+
type: z.ZodLiteral<"var">;
|
|
43189
|
+
value: z.ZodString;
|
|
43190
|
+
}, "strip", z.ZodTypeAny, {
|
|
43191
|
+
value: string;
|
|
43192
|
+
type: "var";
|
|
43193
|
+
}, {
|
|
43194
|
+
value: string;
|
|
43195
|
+
type: "var";
|
|
42537
43196
|
}>]>], null>>;
|
|
42538
43197
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
42539
43198
|
type: z.ZodLiteral<"unit">;
|
|
@@ -42556,10 +43215,27 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42556
43215
|
}, {
|
|
42557
43216
|
value: string;
|
|
42558
43217
|
type: "unparsed";
|
|
43218
|
+
}>, z.ZodObject<{
|
|
43219
|
+
type: z.ZodLiteral<"var">;
|
|
43220
|
+
value: z.ZodString;
|
|
43221
|
+
}, "strip", z.ZodTypeAny, {
|
|
43222
|
+
value: string;
|
|
43223
|
+
type: "var";
|
|
43224
|
+
}, {
|
|
43225
|
+
value: string;
|
|
43226
|
+
type: "var";
|
|
42559
43227
|
}>]>], null>>;
|
|
42560
43228
|
}>, "strip", z.ZodTypeAny, {
|
|
42561
43229
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
42562
43230
|
easing?: string | undefined;
|
|
43231
|
+
duration?: {
|
|
43232
|
+
value: number;
|
|
43233
|
+
type: "unit";
|
|
43234
|
+
unit: "s" | "ms";
|
|
43235
|
+
} | {
|
|
43236
|
+
value: string;
|
|
43237
|
+
type: "var";
|
|
43238
|
+
} | undefined;
|
|
42563
43239
|
rangeStart?: ["start" | "end", {
|
|
42564
43240
|
value: number;
|
|
42565
43241
|
type: "unit";
|
|
@@ -42567,6 +43243,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42567
43243
|
} | {
|
|
42568
43244
|
value: string;
|
|
42569
43245
|
type: "unparsed";
|
|
43246
|
+
} | {
|
|
43247
|
+
value: string;
|
|
43248
|
+
type: "var";
|
|
42570
43249
|
}] | undefined;
|
|
42571
43250
|
rangeEnd?: ["start" | "end", {
|
|
42572
43251
|
value: number;
|
|
@@ -42575,10 +43254,21 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42575
43254
|
} | {
|
|
42576
43255
|
value: string;
|
|
42577
43256
|
type: "unparsed";
|
|
43257
|
+
} | {
|
|
43258
|
+
value: string;
|
|
43259
|
+
type: "var";
|
|
42578
43260
|
}] | undefined;
|
|
42579
43261
|
}, {
|
|
42580
43262
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
42581
43263
|
easing?: string | undefined;
|
|
43264
|
+
duration?: {
|
|
43265
|
+
value: number;
|
|
43266
|
+
type: "unit";
|
|
43267
|
+
unit: "s" | "ms";
|
|
43268
|
+
} | {
|
|
43269
|
+
value: string;
|
|
43270
|
+
type: "var";
|
|
43271
|
+
} | undefined;
|
|
42582
43272
|
rangeStart?: ["start" | "end", {
|
|
42583
43273
|
value: number;
|
|
42584
43274
|
type: "unit";
|
|
@@ -42586,6 +43276,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42586
43276
|
} | {
|
|
42587
43277
|
value: string;
|
|
42588
43278
|
type: "unparsed";
|
|
43279
|
+
} | {
|
|
43280
|
+
value: string;
|
|
43281
|
+
type: "var";
|
|
42589
43282
|
}] | undefined;
|
|
42590
43283
|
rangeEnd?: ["start" | "end", {
|
|
42591
43284
|
value: number;
|
|
@@ -42594,6 +43287,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
42594
43287
|
} | {
|
|
42595
43288
|
value: string;
|
|
42596
43289
|
type: "unparsed";
|
|
43290
|
+
} | {
|
|
43291
|
+
value: string;
|
|
43292
|
+
type: "var";
|
|
42597
43293
|
}] | undefined;
|
|
42598
43294
|
}>;
|
|
42599
43295
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -43205,6 +43901,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43205
43901
|
timing: {
|
|
43206
43902
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
43207
43903
|
easing?: string | undefined;
|
|
43904
|
+
duration?: {
|
|
43905
|
+
value: number;
|
|
43906
|
+
type: "unit";
|
|
43907
|
+
unit: "s" | "ms";
|
|
43908
|
+
} | {
|
|
43909
|
+
value: string;
|
|
43910
|
+
type: "var";
|
|
43911
|
+
} | undefined;
|
|
43208
43912
|
rangeStart?: ["start" | "end", {
|
|
43209
43913
|
value: number;
|
|
43210
43914
|
type: "unit";
|
|
@@ -43212,6 +43916,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43212
43916
|
} | {
|
|
43213
43917
|
value: string;
|
|
43214
43918
|
type: "unparsed";
|
|
43919
|
+
} | {
|
|
43920
|
+
value: string;
|
|
43921
|
+
type: "var";
|
|
43215
43922
|
}] | undefined;
|
|
43216
43923
|
rangeEnd?: ["start" | "end", {
|
|
43217
43924
|
value: number;
|
|
@@ -43220,6 +43927,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43220
43927
|
} | {
|
|
43221
43928
|
value: string;
|
|
43222
43929
|
type: "unparsed";
|
|
43930
|
+
} | {
|
|
43931
|
+
value: string;
|
|
43932
|
+
type: "var";
|
|
43223
43933
|
}] | undefined;
|
|
43224
43934
|
};
|
|
43225
43935
|
name?: string | undefined;
|
|
@@ -43834,6 +44544,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43834
44544
|
timing: {
|
|
43835
44545
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
43836
44546
|
easing?: string | undefined;
|
|
44547
|
+
duration?: {
|
|
44548
|
+
value: number;
|
|
44549
|
+
type: "unit";
|
|
44550
|
+
unit: "s" | "ms";
|
|
44551
|
+
} | {
|
|
44552
|
+
value: string;
|
|
44553
|
+
type: "var";
|
|
44554
|
+
} | undefined;
|
|
43837
44555
|
rangeStart?: ["start" | "end", {
|
|
43838
44556
|
value: number;
|
|
43839
44557
|
type: "unit";
|
|
@@ -43841,6 +44559,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43841
44559
|
} | {
|
|
43842
44560
|
value: string;
|
|
43843
44561
|
type: "unparsed";
|
|
44562
|
+
} | {
|
|
44563
|
+
value: string;
|
|
44564
|
+
type: "var";
|
|
43844
44565
|
}] | undefined;
|
|
43845
44566
|
rangeEnd?: ["start" | "end", {
|
|
43846
44567
|
value: number;
|
|
@@ -43849,6 +44570,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
43849
44570
|
} | {
|
|
43850
44571
|
value: string;
|
|
43851
44572
|
type: "unparsed";
|
|
44573
|
+
} | {
|
|
44574
|
+
value: string;
|
|
44575
|
+
type: "var";
|
|
43852
44576
|
}] | undefined;
|
|
43853
44577
|
};
|
|
43854
44578
|
name?: string | undefined;
|
|
@@ -44468,6 +45192,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
44468
45192
|
timing: {
|
|
44469
45193
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
44470
45194
|
easing?: string | undefined;
|
|
45195
|
+
duration?: {
|
|
45196
|
+
value: number;
|
|
45197
|
+
type: "unit";
|
|
45198
|
+
unit: "s" | "ms";
|
|
45199
|
+
} | {
|
|
45200
|
+
value: string;
|
|
45201
|
+
type: "var";
|
|
45202
|
+
} | undefined;
|
|
44471
45203
|
rangeStart?: ["start" | "end", {
|
|
44472
45204
|
value: number;
|
|
44473
45205
|
type: "unit";
|
|
@@ -44475,6 +45207,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
44475
45207
|
} | {
|
|
44476
45208
|
value: string;
|
|
44477
45209
|
type: "unparsed";
|
|
45210
|
+
} | {
|
|
45211
|
+
value: string;
|
|
45212
|
+
type: "var";
|
|
44478
45213
|
}] | undefined;
|
|
44479
45214
|
rangeEnd?: ["start" | "end", {
|
|
44480
45215
|
value: number;
|
|
@@ -44483,6 +45218,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
44483
45218
|
} | {
|
|
44484
45219
|
value: string;
|
|
44485
45220
|
type: "unparsed";
|
|
45221
|
+
} | {
|
|
45222
|
+
value: string;
|
|
45223
|
+
type: "var";
|
|
44486
45224
|
}] | undefined;
|
|
44487
45225
|
};
|
|
44488
45226
|
name?: string | undefined;
|
|
@@ -45104,6 +45842,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
45104
45842
|
timing: {
|
|
45105
45843
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
45106
45844
|
easing?: string | undefined;
|
|
45845
|
+
duration?: {
|
|
45846
|
+
value: number;
|
|
45847
|
+
type: "unit";
|
|
45848
|
+
unit: "s" | "ms";
|
|
45849
|
+
} | {
|
|
45850
|
+
value: string;
|
|
45851
|
+
type: "var";
|
|
45852
|
+
} | undefined;
|
|
45107
45853
|
rangeStart?: ["start" | "end", {
|
|
45108
45854
|
value: number;
|
|
45109
45855
|
type: "unit";
|
|
@@ -45111,6 +45857,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
45111
45857
|
} | {
|
|
45112
45858
|
value: string;
|
|
45113
45859
|
type: "unparsed";
|
|
45860
|
+
} | {
|
|
45861
|
+
value: string;
|
|
45862
|
+
type: "var";
|
|
45114
45863
|
}] | undefined;
|
|
45115
45864
|
rangeEnd?: ["start" | "end", {
|
|
45116
45865
|
value: number;
|
|
@@ -45119,6 +45868,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
45119
45868
|
} | {
|
|
45120
45869
|
value: string;
|
|
45121
45870
|
type: "unparsed";
|
|
45871
|
+
} | {
|
|
45872
|
+
value: string;
|
|
45873
|
+
type: "var";
|
|
45122
45874
|
}] | undefined;
|
|
45123
45875
|
};
|
|
45124
45876
|
name?: string | undefined;
|
|
@@ -50194,6 +50946,28 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50194
50946
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
50195
50947
|
easing: z.ZodOptional<z.ZodString>;
|
|
50196
50948
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
50949
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
50950
|
+
type: z.ZodLiteral<"unit">;
|
|
50951
|
+
value: z.ZodNumber;
|
|
50952
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
50953
|
+
}, "strip", z.ZodTypeAny, {
|
|
50954
|
+
value: number;
|
|
50955
|
+
type: "unit";
|
|
50956
|
+
unit: "s" | "ms";
|
|
50957
|
+
}, {
|
|
50958
|
+
value: number;
|
|
50959
|
+
type: "unit";
|
|
50960
|
+
unit: "s" | "ms";
|
|
50961
|
+
}>, z.ZodObject<{
|
|
50962
|
+
type: z.ZodLiteral<"var">;
|
|
50963
|
+
value: z.ZodString;
|
|
50964
|
+
}, "strip", z.ZodTypeAny, {
|
|
50965
|
+
value: string;
|
|
50966
|
+
type: "var";
|
|
50967
|
+
}, {
|
|
50968
|
+
value: string;
|
|
50969
|
+
type: "var";
|
|
50970
|
+
}>]>>;
|
|
50197
50971
|
}, {
|
|
50198
50972
|
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<{
|
|
50199
50973
|
type: z.ZodLiteral<"unit">;
|
|
@@ -50216,6 +50990,15 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50216
50990
|
}, {
|
|
50217
50991
|
value: string;
|
|
50218
50992
|
type: "unparsed";
|
|
50993
|
+
}>, z.ZodObject<{
|
|
50994
|
+
type: z.ZodLiteral<"var">;
|
|
50995
|
+
value: z.ZodString;
|
|
50996
|
+
}, "strip", z.ZodTypeAny, {
|
|
50997
|
+
value: string;
|
|
50998
|
+
type: "var";
|
|
50999
|
+
}, {
|
|
51000
|
+
value: string;
|
|
51001
|
+
type: "var";
|
|
50219
51002
|
}>]>], null>>;
|
|
50220
51003
|
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<{
|
|
50221
51004
|
type: z.ZodLiteral<"unit">;
|
|
@@ -50238,10 +51021,27 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50238
51021
|
}, {
|
|
50239
51022
|
value: string;
|
|
50240
51023
|
type: "unparsed";
|
|
51024
|
+
}>, z.ZodObject<{
|
|
51025
|
+
type: z.ZodLiteral<"var">;
|
|
51026
|
+
value: z.ZodString;
|
|
51027
|
+
}, "strip", z.ZodTypeAny, {
|
|
51028
|
+
value: string;
|
|
51029
|
+
type: "var";
|
|
51030
|
+
}, {
|
|
51031
|
+
value: string;
|
|
51032
|
+
type: "var";
|
|
50241
51033
|
}>]>], null>>;
|
|
50242
51034
|
}>, "strip", z.ZodTypeAny, {
|
|
50243
51035
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
50244
51036
|
easing?: string | undefined;
|
|
51037
|
+
duration?: {
|
|
51038
|
+
value: number;
|
|
51039
|
+
type: "unit";
|
|
51040
|
+
unit: "s" | "ms";
|
|
51041
|
+
} | {
|
|
51042
|
+
value: string;
|
|
51043
|
+
type: "var";
|
|
51044
|
+
} | undefined;
|
|
50245
51045
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50246
51046
|
value: number;
|
|
50247
51047
|
type: "unit";
|
|
@@ -50249,6 +51049,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50249
51049
|
} | {
|
|
50250
51050
|
value: string;
|
|
50251
51051
|
type: "unparsed";
|
|
51052
|
+
} | {
|
|
51053
|
+
value: string;
|
|
51054
|
+
type: "var";
|
|
50252
51055
|
}] | undefined;
|
|
50253
51056
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50254
51057
|
value: number;
|
|
@@ -50257,10 +51060,21 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50257
51060
|
} | {
|
|
50258
51061
|
value: string;
|
|
50259
51062
|
type: "unparsed";
|
|
51063
|
+
} | {
|
|
51064
|
+
value: string;
|
|
51065
|
+
type: "var";
|
|
50260
51066
|
}] | undefined;
|
|
50261
51067
|
}, {
|
|
50262
51068
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
50263
51069
|
easing?: string | undefined;
|
|
51070
|
+
duration?: {
|
|
51071
|
+
value: number;
|
|
51072
|
+
type: "unit";
|
|
51073
|
+
unit: "s" | "ms";
|
|
51074
|
+
} | {
|
|
51075
|
+
value: string;
|
|
51076
|
+
type: "var";
|
|
51077
|
+
} | undefined;
|
|
50264
51078
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50265
51079
|
value: number;
|
|
50266
51080
|
type: "unit";
|
|
@@ -50268,6 +51082,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50268
51082
|
} | {
|
|
50269
51083
|
value: string;
|
|
50270
51084
|
type: "unparsed";
|
|
51085
|
+
} | {
|
|
51086
|
+
value: string;
|
|
51087
|
+
type: "var";
|
|
50271
51088
|
}] | undefined;
|
|
50272
51089
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50273
51090
|
value: number;
|
|
@@ -50276,6 +51093,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50276
51093
|
} | {
|
|
50277
51094
|
value: string;
|
|
50278
51095
|
type: "unparsed";
|
|
51096
|
+
} | {
|
|
51097
|
+
value: string;
|
|
51098
|
+
type: "var";
|
|
50279
51099
|
}] | undefined;
|
|
50280
51100
|
}>;
|
|
50281
51101
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -50887,6 +51707,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50887
51707
|
timing: {
|
|
50888
51708
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
50889
51709
|
easing?: string | undefined;
|
|
51710
|
+
duration?: {
|
|
51711
|
+
value: number;
|
|
51712
|
+
type: "unit";
|
|
51713
|
+
unit: "s" | "ms";
|
|
51714
|
+
} | {
|
|
51715
|
+
value: string;
|
|
51716
|
+
type: "var";
|
|
51717
|
+
} | undefined;
|
|
50890
51718
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50891
51719
|
value: number;
|
|
50892
51720
|
type: "unit";
|
|
@@ -50894,6 +51722,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50894
51722
|
} | {
|
|
50895
51723
|
value: string;
|
|
50896
51724
|
type: "unparsed";
|
|
51725
|
+
} | {
|
|
51726
|
+
value: string;
|
|
51727
|
+
type: "var";
|
|
50897
51728
|
}] | undefined;
|
|
50898
51729
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
50899
51730
|
value: number;
|
|
@@ -50902,6 +51733,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
50902
51733
|
} | {
|
|
50903
51734
|
value: string;
|
|
50904
51735
|
type: "unparsed";
|
|
51736
|
+
} | {
|
|
51737
|
+
value: string;
|
|
51738
|
+
type: "var";
|
|
50905
51739
|
}] | undefined;
|
|
50906
51740
|
};
|
|
50907
51741
|
name?: string | undefined;
|
|
@@ -51516,6 +52350,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
51516
52350
|
timing: {
|
|
51517
52351
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
51518
52352
|
easing?: string | undefined;
|
|
52353
|
+
duration?: {
|
|
52354
|
+
value: number;
|
|
52355
|
+
type: "unit";
|
|
52356
|
+
unit: "s" | "ms";
|
|
52357
|
+
} | {
|
|
52358
|
+
value: string;
|
|
52359
|
+
type: "var";
|
|
52360
|
+
} | undefined;
|
|
51519
52361
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
51520
52362
|
value: number;
|
|
51521
52363
|
type: "unit";
|
|
@@ -51523,6 +52365,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
51523
52365
|
} | {
|
|
51524
52366
|
value: string;
|
|
51525
52367
|
type: "unparsed";
|
|
52368
|
+
} | {
|
|
52369
|
+
value: string;
|
|
52370
|
+
type: "var";
|
|
51526
52371
|
}] | undefined;
|
|
51527
52372
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
51528
52373
|
value: number;
|
|
@@ -51531,6 +52376,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
51531
52376
|
} | {
|
|
51532
52377
|
value: string;
|
|
51533
52378
|
type: "unparsed";
|
|
52379
|
+
} | {
|
|
52380
|
+
value: string;
|
|
52381
|
+
type: "var";
|
|
51534
52382
|
}] | undefined;
|
|
51535
52383
|
};
|
|
51536
52384
|
name?: string | undefined;
|
|
@@ -51558,6 +52406,15 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
51558
52406
|
}, {
|
|
51559
52407
|
value: string;
|
|
51560
52408
|
type: "unparsed";
|
|
52409
|
+
}>, z.ZodObject<{
|
|
52410
|
+
type: z.ZodLiteral<"var">;
|
|
52411
|
+
value: z.ZodString;
|
|
52412
|
+
}, "strip", z.ZodTypeAny, {
|
|
52413
|
+
value: string;
|
|
52414
|
+
type: "var";
|
|
52415
|
+
}, {
|
|
52416
|
+
value: string;
|
|
52417
|
+
type: "var";
|
|
51561
52418
|
}>]>, z.ZodObject<{
|
|
51562
52419
|
type: z.ZodLiteral<"keyword">;
|
|
51563
52420
|
value: z.ZodLiteral<"auto">;
|
|
@@ -51589,6 +52446,15 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
51589
52446
|
}, {
|
|
51590
52447
|
value: string;
|
|
51591
52448
|
type: "unparsed";
|
|
52449
|
+
}>, z.ZodObject<{
|
|
52450
|
+
type: z.ZodLiteral<"var">;
|
|
52451
|
+
value: z.ZodString;
|
|
52452
|
+
}, "strip", z.ZodTypeAny, {
|
|
52453
|
+
value: string;
|
|
52454
|
+
type: "var";
|
|
52455
|
+
}, {
|
|
52456
|
+
value: string;
|
|
52457
|
+
type: "var";
|
|
51592
52458
|
}>]>, z.ZodObject<{
|
|
51593
52459
|
type: z.ZodLiteral<"keyword">;
|
|
51594
52460
|
value: z.ZodLiteral<"auto">;
|
|
@@ -52212,6 +53078,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52212
53078
|
timing: {
|
|
52213
53079
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
52214
53080
|
easing?: string | undefined;
|
|
53081
|
+
duration?: {
|
|
53082
|
+
value: number;
|
|
53083
|
+
type: "unit";
|
|
53084
|
+
unit: "s" | "ms";
|
|
53085
|
+
} | {
|
|
53086
|
+
value: string;
|
|
53087
|
+
type: "var";
|
|
53088
|
+
} | undefined;
|
|
52215
53089
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
52216
53090
|
value: number;
|
|
52217
53091
|
type: "unit";
|
|
@@ -52219,6 +53093,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52219
53093
|
} | {
|
|
52220
53094
|
value: string;
|
|
52221
53095
|
type: "unparsed";
|
|
53096
|
+
} | {
|
|
53097
|
+
value: string;
|
|
53098
|
+
type: "var";
|
|
52222
53099
|
}] | undefined;
|
|
52223
53100
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
52224
53101
|
value: number;
|
|
@@ -52227,6 +53104,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52227
53104
|
} | {
|
|
52228
53105
|
value: string;
|
|
52229
53106
|
type: "unparsed";
|
|
53107
|
+
} | {
|
|
53108
|
+
value: string;
|
|
53109
|
+
type: "var";
|
|
52230
53110
|
}] | undefined;
|
|
52231
53111
|
};
|
|
52232
53112
|
name?: string | undefined;
|
|
@@ -52244,6 +53124,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52244
53124
|
} | {
|
|
52245
53125
|
value: string;
|
|
52246
53126
|
type: "unparsed";
|
|
53127
|
+
} | {
|
|
53128
|
+
value: string;
|
|
53129
|
+
type: "var";
|
|
52247
53130
|
} | {
|
|
52248
53131
|
value: "auto";
|
|
52249
53132
|
type: "keyword";
|
|
@@ -52255,6 +53138,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52255
53138
|
} | {
|
|
52256
53139
|
value: string;
|
|
52257
53140
|
type: "unparsed";
|
|
53141
|
+
} | {
|
|
53142
|
+
value: string;
|
|
53143
|
+
type: "var";
|
|
52258
53144
|
} | {
|
|
52259
53145
|
value: "auto";
|
|
52260
53146
|
type: "keyword";
|
|
@@ -52870,6 +53756,14 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52870
53756
|
timing: {
|
|
52871
53757
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
52872
53758
|
easing?: string | undefined;
|
|
53759
|
+
duration?: {
|
|
53760
|
+
value: number;
|
|
53761
|
+
type: "unit";
|
|
53762
|
+
unit: "s" | "ms";
|
|
53763
|
+
} | {
|
|
53764
|
+
value: string;
|
|
53765
|
+
type: "var";
|
|
53766
|
+
} | undefined;
|
|
52873
53767
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
52874
53768
|
value: number;
|
|
52875
53769
|
type: "unit";
|
|
@@ -52877,6 +53771,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52877
53771
|
} | {
|
|
52878
53772
|
value: string;
|
|
52879
53773
|
type: "unparsed";
|
|
53774
|
+
} | {
|
|
53775
|
+
value: string;
|
|
53776
|
+
type: "var";
|
|
52880
53777
|
}] | undefined;
|
|
52881
53778
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
52882
53779
|
value: number;
|
|
@@ -52885,6 +53782,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52885
53782
|
} | {
|
|
52886
53783
|
value: string;
|
|
52887
53784
|
type: "unparsed";
|
|
53785
|
+
} | {
|
|
53786
|
+
value: string;
|
|
53787
|
+
type: "var";
|
|
52888
53788
|
}] | undefined;
|
|
52889
53789
|
};
|
|
52890
53790
|
name?: string | undefined;
|
|
@@ -52902,6 +53802,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52902
53802
|
} | {
|
|
52903
53803
|
value: string;
|
|
52904
53804
|
type: "unparsed";
|
|
53805
|
+
} | {
|
|
53806
|
+
value: string;
|
|
53807
|
+
type: "var";
|
|
52905
53808
|
} | {
|
|
52906
53809
|
value: "auto";
|
|
52907
53810
|
type: "keyword";
|
|
@@ -52913,6 +53816,9 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52913
53816
|
} | {
|
|
52914
53817
|
value: string;
|
|
52915
53818
|
type: "unparsed";
|
|
53819
|
+
} | {
|
|
53820
|
+
value: string;
|
|
53821
|
+
type: "var";
|
|
52916
53822
|
} | {
|
|
52917
53823
|
value: "auto";
|
|
52918
53824
|
type: "keyword";
|
|
@@ -52921,6 +53827,8 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
52921
53827
|
export declare const isRangeUnit: (value: unknown) => value is z.infer<typeof rangeUnitSchema>;
|
|
52922
53828
|
export type RangeUnit = z.infer<typeof rangeUnitSchema>;
|
|
52923
53829
|
export type RangeUnitValue = z.infer<typeof rangeUnitValueSchema>;
|
|
53830
|
+
export type DurationUnitValue = z.infer<typeof durationUnitValueSchema>;
|
|
53831
|
+
export type TimeUnit = z.infer<typeof timeUnitSchema>;
|
|
52924
53832
|
export type KeyframeStyles = z.infer<typeof keyframeStylesSchema>;
|
|
52925
53833
|
export type AnimationKeyframe = z.infer<typeof animationKeyframeSchema>;
|
|
52926
53834
|
export type ScrollNamedRange = z.infer<typeof scrollNamedRangeSchema>;
|
|
@@ -52933,3 +53841,4 @@ export type AnimationAction = z.infer<typeof animationActionSchema>;
|
|
|
52933
53841
|
export type ScrollAnimation = z.infer<typeof scrollAnimationSchema>;
|
|
52934
53842
|
export type ViewAnimation = z.infer<typeof viewAnimationSchema>;
|
|
52935
53843
|
export type InsetUnitValue = z.infer<typeof insetUnitValueSchema>;
|
|
53844
|
+
export {};
|