@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
|
@@ -5332,6 +5332,28 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5332
5332
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
5333
5333
|
easing: z.ZodOptional<z.ZodString>;
|
|
5334
5334
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
5335
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5336
|
+
type: z.ZodLiteral<"unit">;
|
|
5337
|
+
value: z.ZodNumber;
|
|
5338
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
5339
|
+
}, "strip", z.ZodTypeAny, {
|
|
5340
|
+
value: number;
|
|
5341
|
+
type: "unit";
|
|
5342
|
+
unit: "s" | "ms";
|
|
5343
|
+
}, {
|
|
5344
|
+
value: number;
|
|
5345
|
+
type: "unit";
|
|
5346
|
+
unit: "s" | "ms";
|
|
5347
|
+
}>, z.ZodObject<{
|
|
5348
|
+
type: z.ZodLiteral<"var">;
|
|
5349
|
+
value: z.ZodString;
|
|
5350
|
+
}, "strip", z.ZodTypeAny, {
|
|
5351
|
+
value: string;
|
|
5352
|
+
type: "var";
|
|
5353
|
+
}, {
|
|
5354
|
+
value: string;
|
|
5355
|
+
type: "var";
|
|
5356
|
+
}>]>>;
|
|
5335
5357
|
}, {
|
|
5336
5358
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
5337
5359
|
type: z.ZodLiteral<"unit">;
|
|
@@ -5354,6 +5376,15 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5354
5376
|
}, {
|
|
5355
5377
|
value: string;
|
|
5356
5378
|
type: "unparsed";
|
|
5379
|
+
}>, z.ZodObject<{
|
|
5380
|
+
type: z.ZodLiteral<"var">;
|
|
5381
|
+
value: z.ZodString;
|
|
5382
|
+
}, "strip", z.ZodTypeAny, {
|
|
5383
|
+
value: string;
|
|
5384
|
+
type: "var";
|
|
5385
|
+
}, {
|
|
5386
|
+
value: string;
|
|
5387
|
+
type: "var";
|
|
5357
5388
|
}>]>], null>>;
|
|
5358
5389
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
5359
5390
|
type: z.ZodLiteral<"unit">;
|
|
@@ -5376,10 +5407,27 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5376
5407
|
}, {
|
|
5377
5408
|
value: string;
|
|
5378
5409
|
type: "unparsed";
|
|
5410
|
+
}>, z.ZodObject<{
|
|
5411
|
+
type: z.ZodLiteral<"var">;
|
|
5412
|
+
value: z.ZodString;
|
|
5413
|
+
}, "strip", z.ZodTypeAny, {
|
|
5414
|
+
value: string;
|
|
5415
|
+
type: "var";
|
|
5416
|
+
}, {
|
|
5417
|
+
value: string;
|
|
5418
|
+
type: "var";
|
|
5379
5419
|
}>]>], null>>;
|
|
5380
5420
|
}>, "strip", z.ZodTypeAny, {
|
|
5381
5421
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
5382
5422
|
easing?: string | undefined;
|
|
5423
|
+
duration?: {
|
|
5424
|
+
value: number;
|
|
5425
|
+
type: "unit";
|
|
5426
|
+
unit: "s" | "ms";
|
|
5427
|
+
} | {
|
|
5428
|
+
value: string;
|
|
5429
|
+
type: "var";
|
|
5430
|
+
} | undefined;
|
|
5383
5431
|
rangeStart?: ["start" | "end", {
|
|
5384
5432
|
value: number;
|
|
5385
5433
|
type: "unit";
|
|
@@ -5387,6 +5435,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5387
5435
|
} | {
|
|
5388
5436
|
value: string;
|
|
5389
5437
|
type: "unparsed";
|
|
5438
|
+
} | {
|
|
5439
|
+
value: string;
|
|
5440
|
+
type: "var";
|
|
5390
5441
|
}] | undefined;
|
|
5391
5442
|
rangeEnd?: ["start" | "end", {
|
|
5392
5443
|
value: number;
|
|
@@ -5395,10 +5446,21 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5395
5446
|
} | {
|
|
5396
5447
|
value: string;
|
|
5397
5448
|
type: "unparsed";
|
|
5449
|
+
} | {
|
|
5450
|
+
value: string;
|
|
5451
|
+
type: "var";
|
|
5398
5452
|
}] | undefined;
|
|
5399
5453
|
}, {
|
|
5400
5454
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
5401
5455
|
easing?: string | undefined;
|
|
5456
|
+
duration?: {
|
|
5457
|
+
value: number;
|
|
5458
|
+
type: "unit";
|
|
5459
|
+
unit: "s" | "ms";
|
|
5460
|
+
} | {
|
|
5461
|
+
value: string;
|
|
5462
|
+
type: "var";
|
|
5463
|
+
} | undefined;
|
|
5402
5464
|
rangeStart?: ["start" | "end", {
|
|
5403
5465
|
value: number;
|
|
5404
5466
|
type: "unit";
|
|
@@ -5406,6 +5468,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5406
5468
|
} | {
|
|
5407
5469
|
value: string;
|
|
5408
5470
|
type: "unparsed";
|
|
5471
|
+
} | {
|
|
5472
|
+
value: string;
|
|
5473
|
+
type: "var";
|
|
5409
5474
|
}] | undefined;
|
|
5410
5475
|
rangeEnd?: ["start" | "end", {
|
|
5411
5476
|
value: number;
|
|
@@ -5414,6 +5479,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
5414
5479
|
} | {
|
|
5415
5480
|
value: string;
|
|
5416
5481
|
type: "unparsed";
|
|
5482
|
+
} | {
|
|
5483
|
+
value: string;
|
|
5484
|
+
type: "var";
|
|
5417
5485
|
}] | undefined;
|
|
5418
5486
|
}>;
|
|
5419
5487
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6025,6 +6093,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6025
6093
|
timing: {
|
|
6026
6094
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
6027
6095
|
easing?: string | undefined;
|
|
6096
|
+
duration?: {
|
|
6097
|
+
value: number;
|
|
6098
|
+
type: "unit";
|
|
6099
|
+
unit: "s" | "ms";
|
|
6100
|
+
} | {
|
|
6101
|
+
value: string;
|
|
6102
|
+
type: "var";
|
|
6103
|
+
} | undefined;
|
|
6028
6104
|
rangeStart?: ["start" | "end", {
|
|
6029
6105
|
value: number;
|
|
6030
6106
|
type: "unit";
|
|
@@ -6032,6 +6108,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6032
6108
|
} | {
|
|
6033
6109
|
value: string;
|
|
6034
6110
|
type: "unparsed";
|
|
6111
|
+
} | {
|
|
6112
|
+
value: string;
|
|
6113
|
+
type: "var";
|
|
6035
6114
|
}] | undefined;
|
|
6036
6115
|
rangeEnd?: ["start" | "end", {
|
|
6037
6116
|
value: number;
|
|
@@ -6040,6 +6119,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6040
6119
|
} | {
|
|
6041
6120
|
value: string;
|
|
6042
6121
|
type: "unparsed";
|
|
6122
|
+
} | {
|
|
6123
|
+
value: string;
|
|
6124
|
+
type: "var";
|
|
6043
6125
|
}] | undefined;
|
|
6044
6126
|
};
|
|
6045
6127
|
name?: string | undefined;
|
|
@@ -6654,6 +6736,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6654
6736
|
timing: {
|
|
6655
6737
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
6656
6738
|
easing?: string | undefined;
|
|
6739
|
+
duration?: {
|
|
6740
|
+
value: number;
|
|
6741
|
+
type: "unit";
|
|
6742
|
+
unit: "s" | "ms";
|
|
6743
|
+
} | {
|
|
6744
|
+
value: string;
|
|
6745
|
+
type: "var";
|
|
6746
|
+
} | undefined;
|
|
6657
6747
|
rangeStart?: ["start" | "end", {
|
|
6658
6748
|
value: number;
|
|
6659
6749
|
type: "unit";
|
|
@@ -6661,6 +6751,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6661
6751
|
} | {
|
|
6662
6752
|
value: string;
|
|
6663
6753
|
type: "unparsed";
|
|
6754
|
+
} | {
|
|
6755
|
+
value: string;
|
|
6756
|
+
type: "var";
|
|
6664
6757
|
}] | undefined;
|
|
6665
6758
|
rangeEnd?: ["start" | "end", {
|
|
6666
6759
|
value: number;
|
|
@@ -6669,6 +6762,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
6669
6762
|
} | {
|
|
6670
6763
|
value: string;
|
|
6671
6764
|
type: "unparsed";
|
|
6765
|
+
} | {
|
|
6766
|
+
value: string;
|
|
6767
|
+
type: "var";
|
|
6672
6768
|
}] | undefined;
|
|
6673
6769
|
};
|
|
6674
6770
|
name?: string | undefined;
|
|
@@ -7288,6 +7384,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7288
7384
|
timing: {
|
|
7289
7385
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
7290
7386
|
easing?: string | undefined;
|
|
7387
|
+
duration?: {
|
|
7388
|
+
value: number;
|
|
7389
|
+
type: "unit";
|
|
7390
|
+
unit: "s" | "ms";
|
|
7391
|
+
} | {
|
|
7392
|
+
value: string;
|
|
7393
|
+
type: "var";
|
|
7394
|
+
} | undefined;
|
|
7291
7395
|
rangeStart?: ["start" | "end", {
|
|
7292
7396
|
value: number;
|
|
7293
7397
|
type: "unit";
|
|
@@ -7295,6 +7399,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7295
7399
|
} | {
|
|
7296
7400
|
value: string;
|
|
7297
7401
|
type: "unparsed";
|
|
7402
|
+
} | {
|
|
7403
|
+
value: string;
|
|
7404
|
+
type: "var";
|
|
7298
7405
|
}] | undefined;
|
|
7299
7406
|
rangeEnd?: ["start" | "end", {
|
|
7300
7407
|
value: number;
|
|
@@ -7303,6 +7410,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7303
7410
|
} | {
|
|
7304
7411
|
value: string;
|
|
7305
7412
|
type: "unparsed";
|
|
7413
|
+
} | {
|
|
7414
|
+
value: string;
|
|
7415
|
+
type: "var";
|
|
7306
7416
|
}] | undefined;
|
|
7307
7417
|
};
|
|
7308
7418
|
name?: string | undefined;
|
|
@@ -7924,6 +8034,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7924
8034
|
timing: {
|
|
7925
8035
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
7926
8036
|
easing?: string | undefined;
|
|
8037
|
+
duration?: {
|
|
8038
|
+
value: number;
|
|
8039
|
+
type: "unit";
|
|
8040
|
+
unit: "s" | "ms";
|
|
8041
|
+
} | {
|
|
8042
|
+
value: string;
|
|
8043
|
+
type: "var";
|
|
8044
|
+
} | undefined;
|
|
7927
8045
|
rangeStart?: ["start" | "end", {
|
|
7928
8046
|
value: number;
|
|
7929
8047
|
type: "unit";
|
|
@@ -7931,6 +8049,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7931
8049
|
} | {
|
|
7932
8050
|
value: string;
|
|
7933
8051
|
type: "unparsed";
|
|
8052
|
+
} | {
|
|
8053
|
+
value: string;
|
|
8054
|
+
type: "var";
|
|
7934
8055
|
}] | undefined;
|
|
7935
8056
|
rangeEnd?: ["start" | "end", {
|
|
7936
8057
|
value: number;
|
|
@@ -7939,6 +8060,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
7939
8060
|
} | {
|
|
7940
8061
|
value: string;
|
|
7941
8062
|
type: "unparsed";
|
|
8063
|
+
} | {
|
|
8064
|
+
value: string;
|
|
8065
|
+
type: "var";
|
|
7942
8066
|
}] | undefined;
|
|
7943
8067
|
};
|
|
7944
8068
|
name?: string | undefined;
|
|
@@ -13014,6 +13138,28 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13014
13138
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
13015
13139
|
easing: z.ZodOptional<z.ZodString>;
|
|
13016
13140
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
13141
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
13142
|
+
type: z.ZodLiteral<"unit">;
|
|
13143
|
+
value: z.ZodNumber;
|
|
13144
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
13145
|
+
}, "strip", z.ZodTypeAny, {
|
|
13146
|
+
value: number;
|
|
13147
|
+
type: "unit";
|
|
13148
|
+
unit: "s" | "ms";
|
|
13149
|
+
}, {
|
|
13150
|
+
value: number;
|
|
13151
|
+
type: "unit";
|
|
13152
|
+
unit: "s" | "ms";
|
|
13153
|
+
}>, z.ZodObject<{
|
|
13154
|
+
type: z.ZodLiteral<"var">;
|
|
13155
|
+
value: z.ZodString;
|
|
13156
|
+
}, "strip", z.ZodTypeAny, {
|
|
13157
|
+
value: string;
|
|
13158
|
+
type: "var";
|
|
13159
|
+
}, {
|
|
13160
|
+
value: string;
|
|
13161
|
+
type: "var";
|
|
13162
|
+
}>]>>;
|
|
13017
13163
|
}, {
|
|
13018
13164
|
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<{
|
|
13019
13165
|
type: z.ZodLiteral<"unit">;
|
|
@@ -13036,6 +13182,15 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13036
13182
|
}, {
|
|
13037
13183
|
value: string;
|
|
13038
13184
|
type: "unparsed";
|
|
13185
|
+
}>, z.ZodObject<{
|
|
13186
|
+
type: z.ZodLiteral<"var">;
|
|
13187
|
+
value: z.ZodString;
|
|
13188
|
+
}, "strip", z.ZodTypeAny, {
|
|
13189
|
+
value: string;
|
|
13190
|
+
type: "var";
|
|
13191
|
+
}, {
|
|
13192
|
+
value: string;
|
|
13193
|
+
type: "var";
|
|
13039
13194
|
}>]>], null>>;
|
|
13040
13195
|
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<{
|
|
13041
13196
|
type: z.ZodLiteral<"unit">;
|
|
@@ -13058,10 +13213,27 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13058
13213
|
}, {
|
|
13059
13214
|
value: string;
|
|
13060
13215
|
type: "unparsed";
|
|
13216
|
+
}>, z.ZodObject<{
|
|
13217
|
+
type: z.ZodLiteral<"var">;
|
|
13218
|
+
value: z.ZodString;
|
|
13219
|
+
}, "strip", z.ZodTypeAny, {
|
|
13220
|
+
value: string;
|
|
13221
|
+
type: "var";
|
|
13222
|
+
}, {
|
|
13223
|
+
value: string;
|
|
13224
|
+
type: "var";
|
|
13061
13225
|
}>]>], null>>;
|
|
13062
13226
|
}>, "strip", z.ZodTypeAny, {
|
|
13063
13227
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
13064
13228
|
easing?: string | undefined;
|
|
13229
|
+
duration?: {
|
|
13230
|
+
value: number;
|
|
13231
|
+
type: "unit";
|
|
13232
|
+
unit: "s" | "ms";
|
|
13233
|
+
} | {
|
|
13234
|
+
value: string;
|
|
13235
|
+
type: "var";
|
|
13236
|
+
} | undefined;
|
|
13065
13237
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13066
13238
|
value: number;
|
|
13067
13239
|
type: "unit";
|
|
@@ -13069,6 +13241,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13069
13241
|
} | {
|
|
13070
13242
|
value: string;
|
|
13071
13243
|
type: "unparsed";
|
|
13244
|
+
} | {
|
|
13245
|
+
value: string;
|
|
13246
|
+
type: "var";
|
|
13072
13247
|
}] | undefined;
|
|
13073
13248
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13074
13249
|
value: number;
|
|
@@ -13077,10 +13252,21 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13077
13252
|
} | {
|
|
13078
13253
|
value: string;
|
|
13079
13254
|
type: "unparsed";
|
|
13255
|
+
} | {
|
|
13256
|
+
value: string;
|
|
13257
|
+
type: "var";
|
|
13080
13258
|
}] | undefined;
|
|
13081
13259
|
}, {
|
|
13082
13260
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
13083
13261
|
easing?: string | undefined;
|
|
13262
|
+
duration?: {
|
|
13263
|
+
value: number;
|
|
13264
|
+
type: "unit";
|
|
13265
|
+
unit: "s" | "ms";
|
|
13266
|
+
} | {
|
|
13267
|
+
value: string;
|
|
13268
|
+
type: "var";
|
|
13269
|
+
} | undefined;
|
|
13084
13270
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13085
13271
|
value: number;
|
|
13086
13272
|
type: "unit";
|
|
@@ -13088,6 +13274,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13088
13274
|
} | {
|
|
13089
13275
|
value: string;
|
|
13090
13276
|
type: "unparsed";
|
|
13277
|
+
} | {
|
|
13278
|
+
value: string;
|
|
13279
|
+
type: "var";
|
|
13091
13280
|
}] | undefined;
|
|
13092
13281
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13093
13282
|
value: number;
|
|
@@ -13096,6 +13285,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13096
13285
|
} | {
|
|
13097
13286
|
value: string;
|
|
13098
13287
|
type: "unparsed";
|
|
13288
|
+
} | {
|
|
13289
|
+
value: string;
|
|
13290
|
+
type: "var";
|
|
13099
13291
|
}] | undefined;
|
|
13100
13292
|
}>;
|
|
13101
13293
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -13707,6 +13899,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13707
13899
|
timing: {
|
|
13708
13900
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
13709
13901
|
easing?: string | undefined;
|
|
13902
|
+
duration?: {
|
|
13903
|
+
value: number;
|
|
13904
|
+
type: "unit";
|
|
13905
|
+
unit: "s" | "ms";
|
|
13906
|
+
} | {
|
|
13907
|
+
value: string;
|
|
13908
|
+
type: "var";
|
|
13909
|
+
} | undefined;
|
|
13710
13910
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13711
13911
|
value: number;
|
|
13712
13912
|
type: "unit";
|
|
@@ -13714,6 +13914,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13714
13914
|
} | {
|
|
13715
13915
|
value: string;
|
|
13716
13916
|
type: "unparsed";
|
|
13917
|
+
} | {
|
|
13918
|
+
value: string;
|
|
13919
|
+
type: "var";
|
|
13717
13920
|
}] | undefined;
|
|
13718
13921
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
13719
13922
|
value: number;
|
|
@@ -13722,6 +13925,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
13722
13925
|
} | {
|
|
13723
13926
|
value: string;
|
|
13724
13927
|
type: "unparsed";
|
|
13928
|
+
} | {
|
|
13929
|
+
value: string;
|
|
13930
|
+
type: "var";
|
|
13725
13931
|
}] | undefined;
|
|
13726
13932
|
};
|
|
13727
13933
|
name?: string | undefined;
|
|
@@ -14336,6 +14542,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
14336
14542
|
timing: {
|
|
14337
14543
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
14338
14544
|
easing?: string | undefined;
|
|
14545
|
+
duration?: {
|
|
14546
|
+
value: number;
|
|
14547
|
+
type: "unit";
|
|
14548
|
+
unit: "s" | "ms";
|
|
14549
|
+
} | {
|
|
14550
|
+
value: string;
|
|
14551
|
+
type: "var";
|
|
14552
|
+
} | undefined;
|
|
14339
14553
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14340
14554
|
value: number;
|
|
14341
14555
|
type: "unit";
|
|
@@ -14343,6 +14557,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
14343
14557
|
} | {
|
|
14344
14558
|
value: string;
|
|
14345
14559
|
type: "unparsed";
|
|
14560
|
+
} | {
|
|
14561
|
+
value: string;
|
|
14562
|
+
type: "var";
|
|
14346
14563
|
}] | undefined;
|
|
14347
14564
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
14348
14565
|
value: number;
|
|
@@ -14351,6 +14568,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
14351
14568
|
} | {
|
|
14352
14569
|
value: string;
|
|
14353
14570
|
type: "unparsed";
|
|
14571
|
+
} | {
|
|
14572
|
+
value: string;
|
|
14573
|
+
type: "var";
|
|
14354
14574
|
}] | undefined;
|
|
14355
14575
|
};
|
|
14356
14576
|
name?: string | undefined;
|
|
@@ -14378,6 +14598,15 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
14378
14598
|
}, {
|
|
14379
14599
|
value: string;
|
|
14380
14600
|
type: "unparsed";
|
|
14601
|
+
}>, z.ZodObject<{
|
|
14602
|
+
type: z.ZodLiteral<"var">;
|
|
14603
|
+
value: z.ZodString;
|
|
14604
|
+
}, "strip", z.ZodTypeAny, {
|
|
14605
|
+
value: string;
|
|
14606
|
+
type: "var";
|
|
14607
|
+
}, {
|
|
14608
|
+
value: string;
|
|
14609
|
+
type: "var";
|
|
14381
14610
|
}>]>, z.ZodObject<{
|
|
14382
14611
|
type: z.ZodLiteral<"keyword">;
|
|
14383
14612
|
value: z.ZodLiteral<"auto">;
|
|
@@ -14409,6 +14638,15 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
14409
14638
|
}, {
|
|
14410
14639
|
value: string;
|
|
14411
14640
|
type: "unparsed";
|
|
14641
|
+
}>, z.ZodObject<{
|
|
14642
|
+
type: z.ZodLiteral<"var">;
|
|
14643
|
+
value: z.ZodString;
|
|
14644
|
+
}, "strip", z.ZodTypeAny, {
|
|
14645
|
+
value: string;
|
|
14646
|
+
type: "var";
|
|
14647
|
+
}, {
|
|
14648
|
+
value: string;
|
|
14649
|
+
type: "var";
|
|
14412
14650
|
}>]>, z.ZodObject<{
|
|
14413
14651
|
type: z.ZodLiteral<"keyword">;
|
|
14414
14652
|
value: z.ZodLiteral<"auto">;
|
|
@@ -15032,6 +15270,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15032
15270
|
timing: {
|
|
15033
15271
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
15034
15272
|
easing?: string | undefined;
|
|
15273
|
+
duration?: {
|
|
15274
|
+
value: number;
|
|
15275
|
+
type: "unit";
|
|
15276
|
+
unit: "s" | "ms";
|
|
15277
|
+
} | {
|
|
15278
|
+
value: string;
|
|
15279
|
+
type: "var";
|
|
15280
|
+
} | undefined;
|
|
15035
15281
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15036
15282
|
value: number;
|
|
15037
15283
|
type: "unit";
|
|
@@ -15039,6 +15285,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15039
15285
|
} | {
|
|
15040
15286
|
value: string;
|
|
15041
15287
|
type: "unparsed";
|
|
15288
|
+
} | {
|
|
15289
|
+
value: string;
|
|
15290
|
+
type: "var";
|
|
15042
15291
|
}] | undefined;
|
|
15043
15292
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15044
15293
|
value: number;
|
|
@@ -15047,6 +15296,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15047
15296
|
} | {
|
|
15048
15297
|
value: string;
|
|
15049
15298
|
type: "unparsed";
|
|
15299
|
+
} | {
|
|
15300
|
+
value: string;
|
|
15301
|
+
type: "var";
|
|
15050
15302
|
}] | undefined;
|
|
15051
15303
|
};
|
|
15052
15304
|
name?: string | undefined;
|
|
@@ -15064,6 +15316,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15064
15316
|
} | {
|
|
15065
15317
|
value: string;
|
|
15066
15318
|
type: "unparsed";
|
|
15319
|
+
} | {
|
|
15320
|
+
value: string;
|
|
15321
|
+
type: "var";
|
|
15067
15322
|
} | {
|
|
15068
15323
|
value: "auto";
|
|
15069
15324
|
type: "keyword";
|
|
@@ -15075,6 +15330,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15075
15330
|
} | {
|
|
15076
15331
|
value: string;
|
|
15077
15332
|
type: "unparsed";
|
|
15333
|
+
} | {
|
|
15334
|
+
value: string;
|
|
15335
|
+
type: "var";
|
|
15078
15336
|
} | {
|
|
15079
15337
|
value: "auto";
|
|
15080
15338
|
type: "keyword";
|
|
@@ -15690,6 +15948,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15690
15948
|
timing: {
|
|
15691
15949
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
15692
15950
|
easing?: string | undefined;
|
|
15951
|
+
duration?: {
|
|
15952
|
+
value: number;
|
|
15953
|
+
type: "unit";
|
|
15954
|
+
unit: "s" | "ms";
|
|
15955
|
+
} | {
|
|
15956
|
+
value: string;
|
|
15957
|
+
type: "var";
|
|
15958
|
+
} | undefined;
|
|
15693
15959
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15694
15960
|
value: number;
|
|
15695
15961
|
type: "unit";
|
|
@@ -15697,6 +15963,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15697
15963
|
} | {
|
|
15698
15964
|
value: string;
|
|
15699
15965
|
type: "unparsed";
|
|
15966
|
+
} | {
|
|
15967
|
+
value: string;
|
|
15968
|
+
type: "var";
|
|
15700
15969
|
}] | undefined;
|
|
15701
15970
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
15702
15971
|
value: number;
|
|
@@ -15705,6 +15974,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15705
15974
|
} | {
|
|
15706
15975
|
value: string;
|
|
15707
15976
|
type: "unparsed";
|
|
15977
|
+
} | {
|
|
15978
|
+
value: string;
|
|
15979
|
+
type: "var";
|
|
15708
15980
|
}] | undefined;
|
|
15709
15981
|
};
|
|
15710
15982
|
name?: string | undefined;
|
|
@@ -15722,6 +15994,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15722
15994
|
} | {
|
|
15723
15995
|
value: string;
|
|
15724
15996
|
type: "unparsed";
|
|
15997
|
+
} | {
|
|
15998
|
+
value: string;
|
|
15999
|
+
type: "var";
|
|
15725
16000
|
} | {
|
|
15726
16001
|
value: "auto";
|
|
15727
16002
|
type: "keyword";
|
|
@@ -15733,6 +16008,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
15733
16008
|
} | {
|
|
15734
16009
|
value: string;
|
|
15735
16010
|
type: "unparsed";
|
|
16011
|
+
} | {
|
|
16012
|
+
value: string;
|
|
16013
|
+
type: "var";
|
|
15736
16014
|
} | {
|
|
15737
16015
|
value: "auto";
|
|
15738
16016
|
type: "keyword";
|
|
@@ -16354,6 +16632,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
16354
16632
|
timing: {
|
|
16355
16633
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
16356
16634
|
easing?: string | undefined;
|
|
16635
|
+
duration?: {
|
|
16636
|
+
value: number;
|
|
16637
|
+
type: "unit";
|
|
16638
|
+
unit: "s" | "ms";
|
|
16639
|
+
} | {
|
|
16640
|
+
value: string;
|
|
16641
|
+
type: "var";
|
|
16642
|
+
} | undefined;
|
|
16357
16643
|
rangeStart?: ["start" | "end", {
|
|
16358
16644
|
value: number;
|
|
16359
16645
|
type: "unit";
|
|
@@ -16361,6 +16647,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
16361
16647
|
} | {
|
|
16362
16648
|
value: string;
|
|
16363
16649
|
type: "unparsed";
|
|
16650
|
+
} | {
|
|
16651
|
+
value: string;
|
|
16652
|
+
type: "var";
|
|
16364
16653
|
}] | undefined;
|
|
16365
16654
|
rangeEnd?: ["start" | "end", {
|
|
16366
16655
|
value: number;
|
|
@@ -16369,6 +16658,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
16369
16658
|
} | {
|
|
16370
16659
|
value: string;
|
|
16371
16660
|
type: "unparsed";
|
|
16661
|
+
} | {
|
|
16662
|
+
value: string;
|
|
16663
|
+
type: "var";
|
|
16372
16664
|
}] | undefined;
|
|
16373
16665
|
};
|
|
16374
16666
|
name?: string | undefined;
|
|
@@ -16990,6 +17282,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
16990
17282
|
timing: {
|
|
16991
17283
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
16992
17284
|
easing?: string | undefined;
|
|
17285
|
+
duration?: {
|
|
17286
|
+
value: number;
|
|
17287
|
+
type: "unit";
|
|
17288
|
+
unit: "s" | "ms";
|
|
17289
|
+
} | {
|
|
17290
|
+
value: string;
|
|
17291
|
+
type: "var";
|
|
17292
|
+
} | undefined;
|
|
16993
17293
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
16994
17294
|
value: number;
|
|
16995
17295
|
type: "unit";
|
|
@@ -16997,6 +17297,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
16997
17297
|
} | {
|
|
16998
17298
|
value: string;
|
|
16999
17299
|
type: "unparsed";
|
|
17300
|
+
} | {
|
|
17301
|
+
value: string;
|
|
17302
|
+
type: "var";
|
|
17000
17303
|
}] | undefined;
|
|
17001
17304
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
17002
17305
|
value: number;
|
|
@@ -17005,6 +17308,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17005
17308
|
} | {
|
|
17006
17309
|
value: string;
|
|
17007
17310
|
type: "unparsed";
|
|
17311
|
+
} | {
|
|
17312
|
+
value: string;
|
|
17313
|
+
type: "var";
|
|
17008
17314
|
}] | undefined;
|
|
17009
17315
|
};
|
|
17010
17316
|
name?: string | undefined;
|
|
@@ -17022,6 +17328,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17022
17328
|
} | {
|
|
17023
17329
|
value: string;
|
|
17024
17330
|
type: "unparsed";
|
|
17331
|
+
} | {
|
|
17332
|
+
value: string;
|
|
17333
|
+
type: "var";
|
|
17025
17334
|
} | {
|
|
17026
17335
|
value: "auto";
|
|
17027
17336
|
type: "keyword";
|
|
@@ -17033,6 +17342,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17033
17342
|
} | {
|
|
17034
17343
|
value: string;
|
|
17035
17344
|
type: "unparsed";
|
|
17345
|
+
} | {
|
|
17346
|
+
value: string;
|
|
17347
|
+
type: "var";
|
|
17036
17348
|
} | {
|
|
17037
17349
|
value: "auto";
|
|
17038
17350
|
type: "keyword";
|
|
@@ -17655,6 +17967,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17655
17967
|
timing: {
|
|
17656
17968
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
17657
17969
|
easing?: string | undefined;
|
|
17970
|
+
duration?: {
|
|
17971
|
+
value: number;
|
|
17972
|
+
type: "unit";
|
|
17973
|
+
unit: "s" | "ms";
|
|
17974
|
+
} | {
|
|
17975
|
+
value: string;
|
|
17976
|
+
type: "var";
|
|
17977
|
+
} | undefined;
|
|
17658
17978
|
rangeStart?: ["start" | "end", {
|
|
17659
17979
|
value: number;
|
|
17660
17980
|
type: "unit";
|
|
@@ -17662,6 +17982,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17662
17982
|
} | {
|
|
17663
17983
|
value: string;
|
|
17664
17984
|
type: "unparsed";
|
|
17985
|
+
} | {
|
|
17986
|
+
value: string;
|
|
17987
|
+
type: "var";
|
|
17665
17988
|
}] | undefined;
|
|
17666
17989
|
rangeEnd?: ["start" | "end", {
|
|
17667
17990
|
value: number;
|
|
@@ -17670,6 +17993,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
17670
17993
|
} | {
|
|
17671
17994
|
value: string;
|
|
17672
17995
|
type: "unparsed";
|
|
17996
|
+
} | {
|
|
17997
|
+
value: string;
|
|
17998
|
+
type: "var";
|
|
17673
17999
|
}] | undefined;
|
|
17674
18000
|
};
|
|
17675
18001
|
name?: string | undefined;
|
|
@@ -18291,6 +18617,14 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
18291
18617
|
timing: {
|
|
18292
18618
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
18293
18619
|
easing?: string | undefined;
|
|
18620
|
+
duration?: {
|
|
18621
|
+
value: number;
|
|
18622
|
+
type: "unit";
|
|
18623
|
+
unit: "s" | "ms";
|
|
18624
|
+
} | {
|
|
18625
|
+
value: string;
|
|
18626
|
+
type: "var";
|
|
18627
|
+
} | undefined;
|
|
18294
18628
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
18295
18629
|
value: number;
|
|
18296
18630
|
type: "unit";
|
|
@@ -18298,6 +18632,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
18298
18632
|
} | {
|
|
18299
18633
|
value: string;
|
|
18300
18634
|
type: "unparsed";
|
|
18635
|
+
} | {
|
|
18636
|
+
value: string;
|
|
18637
|
+
type: "var";
|
|
18301
18638
|
}] | undefined;
|
|
18302
18639
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
18303
18640
|
value: number;
|
|
@@ -18306,6 +18643,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
18306
18643
|
} | {
|
|
18307
18644
|
value: string;
|
|
18308
18645
|
type: "unparsed";
|
|
18646
|
+
} | {
|
|
18647
|
+
value: string;
|
|
18648
|
+
type: "var";
|
|
18309
18649
|
}] | undefined;
|
|
18310
18650
|
};
|
|
18311
18651
|
name?: string | undefined;
|
|
@@ -18323,6 +18663,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
18323
18663
|
} | {
|
|
18324
18664
|
value: string;
|
|
18325
18665
|
type: "unparsed";
|
|
18666
|
+
} | {
|
|
18667
|
+
value: string;
|
|
18668
|
+
type: "var";
|
|
18326
18669
|
} | {
|
|
18327
18670
|
value: "auto";
|
|
18328
18671
|
type: "keyword";
|
|
@@ -18334,6 +18677,9 @@ export declare const Prop: z.ZodUnion<[z.ZodObject<{
|
|
|
18334
18677
|
} | {
|
|
18335
18678
|
value: string;
|
|
18336
18679
|
type: "unparsed";
|
|
18680
|
+
} | {
|
|
18681
|
+
value: string;
|
|
18682
|
+
type: "var";
|
|
18337
18683
|
} | {
|
|
18338
18684
|
value: "auto";
|
|
18339
18685
|
type: "keyword";
|
|
@@ -23679,6 +24025,28 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23679
24025
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
23680
24026
|
easing: z.ZodOptional<z.ZodString>;
|
|
23681
24027
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
24028
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
24029
|
+
type: z.ZodLiteral<"unit">;
|
|
24030
|
+
value: z.ZodNumber;
|
|
24031
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
24032
|
+
}, "strip", z.ZodTypeAny, {
|
|
24033
|
+
value: number;
|
|
24034
|
+
type: "unit";
|
|
24035
|
+
unit: "s" | "ms";
|
|
24036
|
+
}, {
|
|
24037
|
+
value: number;
|
|
24038
|
+
type: "unit";
|
|
24039
|
+
unit: "s" | "ms";
|
|
24040
|
+
}>, z.ZodObject<{
|
|
24041
|
+
type: z.ZodLiteral<"var">;
|
|
24042
|
+
value: z.ZodString;
|
|
24043
|
+
}, "strip", z.ZodTypeAny, {
|
|
24044
|
+
value: string;
|
|
24045
|
+
type: "var";
|
|
24046
|
+
}, {
|
|
24047
|
+
value: string;
|
|
24048
|
+
type: "var";
|
|
24049
|
+
}>]>>;
|
|
23682
24050
|
}, {
|
|
23683
24051
|
rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
23684
24052
|
type: z.ZodLiteral<"unit">;
|
|
@@ -23693,14 +24061,23 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23693
24061
|
type: "unit";
|
|
23694
24062
|
unit: "%" | "cm" | "mm" | "q" | "in" | "pt" | "pc" | "px" | "em" | "rem" | "ex" | "rex" | "cap" | "rcap" | "ch" | "rch" | "lh" | "rlh" | "vw" | "svw" | "lvw" | "dvw" | "vh" | "svh" | "lvh" | "dvh" | "vi" | "svi" | "lvi" | "dvi" | "vb" | "svb" | "lvb" | "dvb" | "vmin" | "svmin" | "lvmin" | "dvmin" | "vmax" | "svmax" | "lvmax" | "dvmax";
|
|
23695
24063
|
}>, z.ZodObject<{
|
|
23696
|
-
type: z.ZodLiteral<"unparsed">;
|
|
24064
|
+
type: z.ZodLiteral<"unparsed">;
|
|
24065
|
+
value: z.ZodString;
|
|
24066
|
+
}, "strip", z.ZodTypeAny, {
|
|
24067
|
+
value: string;
|
|
24068
|
+
type: "unparsed";
|
|
24069
|
+
}, {
|
|
24070
|
+
value: string;
|
|
24071
|
+
type: "unparsed";
|
|
24072
|
+
}>, z.ZodObject<{
|
|
24073
|
+
type: z.ZodLiteral<"var">;
|
|
23697
24074
|
value: z.ZodString;
|
|
23698
24075
|
}, "strip", z.ZodTypeAny, {
|
|
23699
24076
|
value: string;
|
|
23700
|
-
type: "
|
|
24077
|
+
type: "var";
|
|
23701
24078
|
}, {
|
|
23702
24079
|
value: string;
|
|
23703
|
-
type: "
|
|
24080
|
+
type: "var";
|
|
23704
24081
|
}>]>], null>>;
|
|
23705
24082
|
rangeEnd: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
|
|
23706
24083
|
type: z.ZodLiteral<"unit">;
|
|
@@ -23723,10 +24100,27 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23723
24100
|
}, {
|
|
23724
24101
|
value: string;
|
|
23725
24102
|
type: "unparsed";
|
|
24103
|
+
}>, z.ZodObject<{
|
|
24104
|
+
type: z.ZodLiteral<"var">;
|
|
24105
|
+
value: z.ZodString;
|
|
24106
|
+
}, "strip", z.ZodTypeAny, {
|
|
24107
|
+
value: string;
|
|
24108
|
+
type: "var";
|
|
24109
|
+
}, {
|
|
24110
|
+
value: string;
|
|
24111
|
+
type: "var";
|
|
23726
24112
|
}>]>], null>>;
|
|
23727
24113
|
}>, "strip", z.ZodTypeAny, {
|
|
23728
24114
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
23729
24115
|
easing?: string | undefined;
|
|
24116
|
+
duration?: {
|
|
24117
|
+
value: number;
|
|
24118
|
+
type: "unit";
|
|
24119
|
+
unit: "s" | "ms";
|
|
24120
|
+
} | {
|
|
24121
|
+
value: string;
|
|
24122
|
+
type: "var";
|
|
24123
|
+
} | undefined;
|
|
23730
24124
|
rangeStart?: ["start" | "end", {
|
|
23731
24125
|
value: number;
|
|
23732
24126
|
type: "unit";
|
|
@@ -23734,6 +24128,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23734
24128
|
} | {
|
|
23735
24129
|
value: string;
|
|
23736
24130
|
type: "unparsed";
|
|
24131
|
+
} | {
|
|
24132
|
+
value: string;
|
|
24133
|
+
type: "var";
|
|
23737
24134
|
}] | undefined;
|
|
23738
24135
|
rangeEnd?: ["start" | "end", {
|
|
23739
24136
|
value: number;
|
|
@@ -23742,10 +24139,21 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23742
24139
|
} | {
|
|
23743
24140
|
value: string;
|
|
23744
24141
|
type: "unparsed";
|
|
24142
|
+
} | {
|
|
24143
|
+
value: string;
|
|
24144
|
+
type: "var";
|
|
23745
24145
|
}] | undefined;
|
|
23746
24146
|
}, {
|
|
23747
24147
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
23748
24148
|
easing?: string | undefined;
|
|
24149
|
+
duration?: {
|
|
24150
|
+
value: number;
|
|
24151
|
+
type: "unit";
|
|
24152
|
+
unit: "s" | "ms";
|
|
24153
|
+
} | {
|
|
24154
|
+
value: string;
|
|
24155
|
+
type: "var";
|
|
24156
|
+
} | undefined;
|
|
23749
24157
|
rangeStart?: ["start" | "end", {
|
|
23750
24158
|
value: number;
|
|
23751
24159
|
type: "unit";
|
|
@@ -23753,6 +24161,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23753
24161
|
} | {
|
|
23754
24162
|
value: string;
|
|
23755
24163
|
type: "unparsed";
|
|
24164
|
+
} | {
|
|
24165
|
+
value: string;
|
|
24166
|
+
type: "var";
|
|
23756
24167
|
}] | undefined;
|
|
23757
24168
|
rangeEnd?: ["start" | "end", {
|
|
23758
24169
|
value: number;
|
|
@@ -23761,6 +24172,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
23761
24172
|
} | {
|
|
23762
24173
|
value: string;
|
|
23763
24174
|
type: "unparsed";
|
|
24175
|
+
} | {
|
|
24176
|
+
value: string;
|
|
24177
|
+
type: "var";
|
|
23764
24178
|
}] | undefined;
|
|
23765
24179
|
}>;
|
|
23766
24180
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -24372,6 +24786,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
24372
24786
|
timing: {
|
|
24373
24787
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
24374
24788
|
easing?: string | undefined;
|
|
24789
|
+
duration?: {
|
|
24790
|
+
value: number;
|
|
24791
|
+
type: "unit";
|
|
24792
|
+
unit: "s" | "ms";
|
|
24793
|
+
} | {
|
|
24794
|
+
value: string;
|
|
24795
|
+
type: "var";
|
|
24796
|
+
} | undefined;
|
|
24375
24797
|
rangeStart?: ["start" | "end", {
|
|
24376
24798
|
value: number;
|
|
24377
24799
|
type: "unit";
|
|
@@ -24379,6 +24801,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
24379
24801
|
} | {
|
|
24380
24802
|
value: string;
|
|
24381
24803
|
type: "unparsed";
|
|
24804
|
+
} | {
|
|
24805
|
+
value: string;
|
|
24806
|
+
type: "var";
|
|
24382
24807
|
}] | undefined;
|
|
24383
24808
|
rangeEnd?: ["start" | "end", {
|
|
24384
24809
|
value: number;
|
|
@@ -24387,6 +24812,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
24387
24812
|
} | {
|
|
24388
24813
|
value: string;
|
|
24389
24814
|
type: "unparsed";
|
|
24815
|
+
} | {
|
|
24816
|
+
value: string;
|
|
24817
|
+
type: "var";
|
|
24390
24818
|
}] | undefined;
|
|
24391
24819
|
};
|
|
24392
24820
|
name?: string | undefined;
|
|
@@ -25001,6 +25429,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25001
25429
|
timing: {
|
|
25002
25430
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
25003
25431
|
easing?: string | undefined;
|
|
25432
|
+
duration?: {
|
|
25433
|
+
value: number;
|
|
25434
|
+
type: "unit";
|
|
25435
|
+
unit: "s" | "ms";
|
|
25436
|
+
} | {
|
|
25437
|
+
value: string;
|
|
25438
|
+
type: "var";
|
|
25439
|
+
} | undefined;
|
|
25004
25440
|
rangeStart?: ["start" | "end", {
|
|
25005
25441
|
value: number;
|
|
25006
25442
|
type: "unit";
|
|
@@ -25008,6 +25444,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25008
25444
|
} | {
|
|
25009
25445
|
value: string;
|
|
25010
25446
|
type: "unparsed";
|
|
25447
|
+
} | {
|
|
25448
|
+
value: string;
|
|
25449
|
+
type: "var";
|
|
25011
25450
|
}] | undefined;
|
|
25012
25451
|
rangeEnd?: ["start" | "end", {
|
|
25013
25452
|
value: number;
|
|
@@ -25016,6 +25455,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25016
25455
|
} | {
|
|
25017
25456
|
value: string;
|
|
25018
25457
|
type: "unparsed";
|
|
25458
|
+
} | {
|
|
25459
|
+
value: string;
|
|
25460
|
+
type: "var";
|
|
25019
25461
|
}] | undefined;
|
|
25020
25462
|
};
|
|
25021
25463
|
name?: string | undefined;
|
|
@@ -25635,6 +26077,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25635
26077
|
timing: {
|
|
25636
26078
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
25637
26079
|
easing?: string | undefined;
|
|
26080
|
+
duration?: {
|
|
26081
|
+
value: number;
|
|
26082
|
+
type: "unit";
|
|
26083
|
+
unit: "s" | "ms";
|
|
26084
|
+
} | {
|
|
26085
|
+
value: string;
|
|
26086
|
+
type: "var";
|
|
26087
|
+
} | undefined;
|
|
25638
26088
|
rangeStart?: ["start" | "end", {
|
|
25639
26089
|
value: number;
|
|
25640
26090
|
type: "unit";
|
|
@@ -25642,6 +26092,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25642
26092
|
} | {
|
|
25643
26093
|
value: string;
|
|
25644
26094
|
type: "unparsed";
|
|
26095
|
+
} | {
|
|
26096
|
+
value: string;
|
|
26097
|
+
type: "var";
|
|
25645
26098
|
}] | undefined;
|
|
25646
26099
|
rangeEnd?: ["start" | "end", {
|
|
25647
26100
|
value: number;
|
|
@@ -25650,6 +26103,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
25650
26103
|
} | {
|
|
25651
26104
|
value: string;
|
|
25652
26105
|
type: "unparsed";
|
|
26106
|
+
} | {
|
|
26107
|
+
value: string;
|
|
26108
|
+
type: "var";
|
|
25653
26109
|
}] | undefined;
|
|
25654
26110
|
};
|
|
25655
26111
|
name?: string | undefined;
|
|
@@ -26271,6 +26727,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
26271
26727
|
timing: {
|
|
26272
26728
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
26273
26729
|
easing?: string | undefined;
|
|
26730
|
+
duration?: {
|
|
26731
|
+
value: number;
|
|
26732
|
+
type: "unit";
|
|
26733
|
+
unit: "s" | "ms";
|
|
26734
|
+
} | {
|
|
26735
|
+
value: string;
|
|
26736
|
+
type: "var";
|
|
26737
|
+
} | undefined;
|
|
26274
26738
|
rangeStart?: ["start" | "end", {
|
|
26275
26739
|
value: number;
|
|
26276
26740
|
type: "unit";
|
|
@@ -26278,6 +26742,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
26278
26742
|
} | {
|
|
26279
26743
|
value: string;
|
|
26280
26744
|
type: "unparsed";
|
|
26745
|
+
} | {
|
|
26746
|
+
value: string;
|
|
26747
|
+
type: "var";
|
|
26281
26748
|
}] | undefined;
|
|
26282
26749
|
rangeEnd?: ["start" | "end", {
|
|
26283
26750
|
value: number;
|
|
@@ -26286,6 +26753,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
26286
26753
|
} | {
|
|
26287
26754
|
value: string;
|
|
26288
26755
|
type: "unparsed";
|
|
26756
|
+
} | {
|
|
26757
|
+
value: string;
|
|
26758
|
+
type: "var";
|
|
26289
26759
|
}] | undefined;
|
|
26290
26760
|
};
|
|
26291
26761
|
name?: string | undefined;
|
|
@@ -31361,6 +31831,28 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31361
31831
|
timing: z.ZodObject<z.objectUtil.extendShape<{
|
|
31362
31832
|
easing: z.ZodOptional<z.ZodString>;
|
|
31363
31833
|
fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
|
|
31834
|
+
duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
31835
|
+
type: z.ZodLiteral<"unit">;
|
|
31836
|
+
value: z.ZodNumber;
|
|
31837
|
+
unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
|
|
31838
|
+
}, "strip", z.ZodTypeAny, {
|
|
31839
|
+
value: number;
|
|
31840
|
+
type: "unit";
|
|
31841
|
+
unit: "s" | "ms";
|
|
31842
|
+
}, {
|
|
31843
|
+
value: number;
|
|
31844
|
+
type: "unit";
|
|
31845
|
+
unit: "s" | "ms";
|
|
31846
|
+
}>, z.ZodObject<{
|
|
31847
|
+
type: z.ZodLiteral<"var">;
|
|
31848
|
+
value: z.ZodString;
|
|
31849
|
+
}, "strip", z.ZodTypeAny, {
|
|
31850
|
+
value: string;
|
|
31851
|
+
type: "var";
|
|
31852
|
+
}, {
|
|
31853
|
+
value: string;
|
|
31854
|
+
type: "var";
|
|
31855
|
+
}>]>>;
|
|
31364
31856
|
}, {
|
|
31365
31857
|
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<{
|
|
31366
31858
|
type: z.ZodLiteral<"unit">;
|
|
@@ -31383,6 +31875,15 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31383
31875
|
}, {
|
|
31384
31876
|
value: string;
|
|
31385
31877
|
type: "unparsed";
|
|
31878
|
+
}>, z.ZodObject<{
|
|
31879
|
+
type: z.ZodLiteral<"var">;
|
|
31880
|
+
value: z.ZodString;
|
|
31881
|
+
}, "strip", z.ZodTypeAny, {
|
|
31882
|
+
value: string;
|
|
31883
|
+
type: "var";
|
|
31884
|
+
}, {
|
|
31885
|
+
value: string;
|
|
31886
|
+
type: "var";
|
|
31386
31887
|
}>]>], null>>;
|
|
31387
31888
|
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<{
|
|
31388
31889
|
type: z.ZodLiteral<"unit">;
|
|
@@ -31405,10 +31906,27 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31405
31906
|
}, {
|
|
31406
31907
|
value: string;
|
|
31407
31908
|
type: "unparsed";
|
|
31909
|
+
}>, z.ZodObject<{
|
|
31910
|
+
type: z.ZodLiteral<"var">;
|
|
31911
|
+
value: z.ZodString;
|
|
31912
|
+
}, "strip", z.ZodTypeAny, {
|
|
31913
|
+
value: string;
|
|
31914
|
+
type: "var";
|
|
31915
|
+
}, {
|
|
31916
|
+
value: string;
|
|
31917
|
+
type: "var";
|
|
31408
31918
|
}>]>], null>>;
|
|
31409
31919
|
}>, "strip", z.ZodTypeAny, {
|
|
31410
31920
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
31411
31921
|
easing?: string | undefined;
|
|
31922
|
+
duration?: {
|
|
31923
|
+
value: number;
|
|
31924
|
+
type: "unit";
|
|
31925
|
+
unit: "s" | "ms";
|
|
31926
|
+
} | {
|
|
31927
|
+
value: string;
|
|
31928
|
+
type: "var";
|
|
31929
|
+
} | undefined;
|
|
31412
31930
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
31413
31931
|
value: number;
|
|
31414
31932
|
type: "unit";
|
|
@@ -31416,6 +31934,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31416
31934
|
} | {
|
|
31417
31935
|
value: string;
|
|
31418
31936
|
type: "unparsed";
|
|
31937
|
+
} | {
|
|
31938
|
+
value: string;
|
|
31939
|
+
type: "var";
|
|
31419
31940
|
}] | undefined;
|
|
31420
31941
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
31421
31942
|
value: number;
|
|
@@ -31424,10 +31945,21 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31424
31945
|
} | {
|
|
31425
31946
|
value: string;
|
|
31426
31947
|
type: "unparsed";
|
|
31948
|
+
} | {
|
|
31949
|
+
value: string;
|
|
31950
|
+
type: "var";
|
|
31427
31951
|
}] | undefined;
|
|
31428
31952
|
}, {
|
|
31429
31953
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
31430
31954
|
easing?: string | undefined;
|
|
31955
|
+
duration?: {
|
|
31956
|
+
value: number;
|
|
31957
|
+
type: "unit";
|
|
31958
|
+
unit: "s" | "ms";
|
|
31959
|
+
} | {
|
|
31960
|
+
value: string;
|
|
31961
|
+
type: "var";
|
|
31962
|
+
} | undefined;
|
|
31431
31963
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
31432
31964
|
value: number;
|
|
31433
31965
|
type: "unit";
|
|
@@ -31435,6 +31967,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31435
31967
|
} | {
|
|
31436
31968
|
value: string;
|
|
31437
31969
|
type: "unparsed";
|
|
31970
|
+
} | {
|
|
31971
|
+
value: string;
|
|
31972
|
+
type: "var";
|
|
31438
31973
|
}] | undefined;
|
|
31439
31974
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
31440
31975
|
value: number;
|
|
@@ -31443,6 +31978,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
31443
31978
|
} | {
|
|
31444
31979
|
value: string;
|
|
31445
31980
|
type: "unparsed";
|
|
31981
|
+
} | {
|
|
31982
|
+
value: string;
|
|
31983
|
+
type: "var";
|
|
31446
31984
|
}] | undefined;
|
|
31447
31985
|
}>;
|
|
31448
31986
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -32054,6 +32592,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32054
32592
|
timing: {
|
|
32055
32593
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
32056
32594
|
easing?: string | undefined;
|
|
32595
|
+
duration?: {
|
|
32596
|
+
value: number;
|
|
32597
|
+
type: "unit";
|
|
32598
|
+
unit: "s" | "ms";
|
|
32599
|
+
} | {
|
|
32600
|
+
value: string;
|
|
32601
|
+
type: "var";
|
|
32602
|
+
} | undefined;
|
|
32057
32603
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
32058
32604
|
value: number;
|
|
32059
32605
|
type: "unit";
|
|
@@ -32061,6 +32607,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32061
32607
|
} | {
|
|
32062
32608
|
value: string;
|
|
32063
32609
|
type: "unparsed";
|
|
32610
|
+
} | {
|
|
32611
|
+
value: string;
|
|
32612
|
+
type: "var";
|
|
32064
32613
|
}] | undefined;
|
|
32065
32614
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
32066
32615
|
value: number;
|
|
@@ -32069,6 +32618,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32069
32618
|
} | {
|
|
32070
32619
|
value: string;
|
|
32071
32620
|
type: "unparsed";
|
|
32621
|
+
} | {
|
|
32622
|
+
value: string;
|
|
32623
|
+
type: "var";
|
|
32072
32624
|
}] | undefined;
|
|
32073
32625
|
};
|
|
32074
32626
|
name?: string | undefined;
|
|
@@ -32683,6 +33235,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32683
33235
|
timing: {
|
|
32684
33236
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
32685
33237
|
easing?: string | undefined;
|
|
33238
|
+
duration?: {
|
|
33239
|
+
value: number;
|
|
33240
|
+
type: "unit";
|
|
33241
|
+
unit: "s" | "ms";
|
|
33242
|
+
} | {
|
|
33243
|
+
value: string;
|
|
33244
|
+
type: "var";
|
|
33245
|
+
} | undefined;
|
|
32686
33246
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
32687
33247
|
value: number;
|
|
32688
33248
|
type: "unit";
|
|
@@ -32690,6 +33250,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32690
33250
|
} | {
|
|
32691
33251
|
value: string;
|
|
32692
33252
|
type: "unparsed";
|
|
33253
|
+
} | {
|
|
33254
|
+
value: string;
|
|
33255
|
+
type: "var";
|
|
32693
33256
|
}] | undefined;
|
|
32694
33257
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
32695
33258
|
value: number;
|
|
@@ -32698,6 +33261,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32698
33261
|
} | {
|
|
32699
33262
|
value: string;
|
|
32700
33263
|
type: "unparsed";
|
|
33264
|
+
} | {
|
|
33265
|
+
value: string;
|
|
33266
|
+
type: "var";
|
|
32701
33267
|
}] | undefined;
|
|
32702
33268
|
};
|
|
32703
33269
|
name?: string | undefined;
|
|
@@ -32725,6 +33291,15 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32725
33291
|
}, {
|
|
32726
33292
|
value: string;
|
|
32727
33293
|
type: "unparsed";
|
|
33294
|
+
}>, z.ZodObject<{
|
|
33295
|
+
type: z.ZodLiteral<"var">;
|
|
33296
|
+
value: z.ZodString;
|
|
33297
|
+
}, "strip", z.ZodTypeAny, {
|
|
33298
|
+
value: string;
|
|
33299
|
+
type: "var";
|
|
33300
|
+
}, {
|
|
33301
|
+
value: string;
|
|
33302
|
+
type: "var";
|
|
32728
33303
|
}>]>, z.ZodObject<{
|
|
32729
33304
|
type: z.ZodLiteral<"keyword">;
|
|
32730
33305
|
value: z.ZodLiteral<"auto">;
|
|
@@ -32756,6 +33331,15 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
32756
33331
|
}, {
|
|
32757
33332
|
value: string;
|
|
32758
33333
|
type: "unparsed";
|
|
33334
|
+
}>, z.ZodObject<{
|
|
33335
|
+
type: z.ZodLiteral<"var">;
|
|
33336
|
+
value: z.ZodString;
|
|
33337
|
+
}, "strip", z.ZodTypeAny, {
|
|
33338
|
+
value: string;
|
|
33339
|
+
type: "var";
|
|
33340
|
+
}, {
|
|
33341
|
+
value: string;
|
|
33342
|
+
type: "var";
|
|
32759
33343
|
}>]>, z.ZodObject<{
|
|
32760
33344
|
type: z.ZodLiteral<"keyword">;
|
|
32761
33345
|
value: z.ZodLiteral<"auto">;
|
|
@@ -33379,6 +33963,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
33379
33963
|
timing: {
|
|
33380
33964
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
33381
33965
|
easing?: string | undefined;
|
|
33966
|
+
duration?: {
|
|
33967
|
+
value: number;
|
|
33968
|
+
type: "unit";
|
|
33969
|
+
unit: "s" | "ms";
|
|
33970
|
+
} | {
|
|
33971
|
+
value: string;
|
|
33972
|
+
type: "var";
|
|
33973
|
+
} | undefined;
|
|
33382
33974
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
33383
33975
|
value: number;
|
|
33384
33976
|
type: "unit";
|
|
@@ -33386,6 +33978,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
33386
33978
|
} | {
|
|
33387
33979
|
value: string;
|
|
33388
33980
|
type: "unparsed";
|
|
33981
|
+
} | {
|
|
33982
|
+
value: string;
|
|
33983
|
+
type: "var";
|
|
33389
33984
|
}] | undefined;
|
|
33390
33985
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
33391
33986
|
value: number;
|
|
@@ -33394,6 +33989,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
33394
33989
|
} | {
|
|
33395
33990
|
value: string;
|
|
33396
33991
|
type: "unparsed";
|
|
33992
|
+
} | {
|
|
33993
|
+
value: string;
|
|
33994
|
+
type: "var";
|
|
33397
33995
|
}] | undefined;
|
|
33398
33996
|
};
|
|
33399
33997
|
name?: string | undefined;
|
|
@@ -33411,6 +34009,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
33411
34009
|
} | {
|
|
33412
34010
|
value: string;
|
|
33413
34011
|
type: "unparsed";
|
|
34012
|
+
} | {
|
|
34013
|
+
value: string;
|
|
34014
|
+
type: "var";
|
|
33414
34015
|
} | {
|
|
33415
34016
|
value: "auto";
|
|
33416
34017
|
type: "keyword";
|
|
@@ -33422,6 +34023,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
33422
34023
|
} | {
|
|
33423
34024
|
value: string;
|
|
33424
34025
|
type: "unparsed";
|
|
34026
|
+
} | {
|
|
34027
|
+
value: string;
|
|
34028
|
+
type: "var";
|
|
33425
34029
|
} | {
|
|
33426
34030
|
value: "auto";
|
|
33427
34031
|
type: "keyword";
|
|
@@ -34037,6 +34641,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34037
34641
|
timing: {
|
|
34038
34642
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
34039
34643
|
easing?: string | undefined;
|
|
34644
|
+
duration?: {
|
|
34645
|
+
value: number;
|
|
34646
|
+
type: "unit";
|
|
34647
|
+
unit: "s" | "ms";
|
|
34648
|
+
} | {
|
|
34649
|
+
value: string;
|
|
34650
|
+
type: "var";
|
|
34651
|
+
} | undefined;
|
|
34040
34652
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34041
34653
|
value: number;
|
|
34042
34654
|
type: "unit";
|
|
@@ -34044,6 +34656,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34044
34656
|
} | {
|
|
34045
34657
|
value: string;
|
|
34046
34658
|
type: "unparsed";
|
|
34659
|
+
} | {
|
|
34660
|
+
value: string;
|
|
34661
|
+
type: "var";
|
|
34047
34662
|
}] | undefined;
|
|
34048
34663
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
34049
34664
|
value: number;
|
|
@@ -34052,6 +34667,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34052
34667
|
} | {
|
|
34053
34668
|
value: string;
|
|
34054
34669
|
type: "unparsed";
|
|
34670
|
+
} | {
|
|
34671
|
+
value: string;
|
|
34672
|
+
type: "var";
|
|
34055
34673
|
}] | undefined;
|
|
34056
34674
|
};
|
|
34057
34675
|
name?: string | undefined;
|
|
@@ -34069,6 +34687,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34069
34687
|
} | {
|
|
34070
34688
|
value: string;
|
|
34071
34689
|
type: "unparsed";
|
|
34690
|
+
} | {
|
|
34691
|
+
value: string;
|
|
34692
|
+
type: "var";
|
|
34072
34693
|
} | {
|
|
34073
34694
|
value: "auto";
|
|
34074
34695
|
type: "keyword";
|
|
@@ -34080,6 +34701,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34080
34701
|
} | {
|
|
34081
34702
|
value: string;
|
|
34082
34703
|
type: "unparsed";
|
|
34704
|
+
} | {
|
|
34705
|
+
value: string;
|
|
34706
|
+
type: "var";
|
|
34083
34707
|
} | {
|
|
34084
34708
|
value: "auto";
|
|
34085
34709
|
type: "keyword";
|
|
@@ -34701,6 +35325,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34701
35325
|
timing: {
|
|
34702
35326
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
34703
35327
|
easing?: string | undefined;
|
|
35328
|
+
duration?: {
|
|
35329
|
+
value: number;
|
|
35330
|
+
type: "unit";
|
|
35331
|
+
unit: "s" | "ms";
|
|
35332
|
+
} | {
|
|
35333
|
+
value: string;
|
|
35334
|
+
type: "var";
|
|
35335
|
+
} | undefined;
|
|
34704
35336
|
rangeStart?: ["start" | "end", {
|
|
34705
35337
|
value: number;
|
|
34706
35338
|
type: "unit";
|
|
@@ -34708,6 +35340,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34708
35340
|
} | {
|
|
34709
35341
|
value: string;
|
|
34710
35342
|
type: "unparsed";
|
|
35343
|
+
} | {
|
|
35344
|
+
value: string;
|
|
35345
|
+
type: "var";
|
|
34711
35346
|
}] | undefined;
|
|
34712
35347
|
rangeEnd?: ["start" | "end", {
|
|
34713
35348
|
value: number;
|
|
@@ -34716,6 +35351,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
34716
35351
|
} | {
|
|
34717
35352
|
value: string;
|
|
34718
35353
|
type: "unparsed";
|
|
35354
|
+
} | {
|
|
35355
|
+
value: string;
|
|
35356
|
+
type: "var";
|
|
34719
35357
|
}] | undefined;
|
|
34720
35358
|
};
|
|
34721
35359
|
name?: string | undefined;
|
|
@@ -35337,6 +35975,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
35337
35975
|
timing: {
|
|
35338
35976
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
35339
35977
|
easing?: string | undefined;
|
|
35978
|
+
duration?: {
|
|
35979
|
+
value: number;
|
|
35980
|
+
type: "unit";
|
|
35981
|
+
unit: "s" | "ms";
|
|
35982
|
+
} | {
|
|
35983
|
+
value: string;
|
|
35984
|
+
type: "var";
|
|
35985
|
+
} | undefined;
|
|
35340
35986
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
35341
35987
|
value: number;
|
|
35342
35988
|
type: "unit";
|
|
@@ -35344,6 +35990,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
35344
35990
|
} | {
|
|
35345
35991
|
value: string;
|
|
35346
35992
|
type: "unparsed";
|
|
35993
|
+
} | {
|
|
35994
|
+
value: string;
|
|
35995
|
+
type: "var";
|
|
35347
35996
|
}] | undefined;
|
|
35348
35997
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
35349
35998
|
value: number;
|
|
@@ -35352,6 +36001,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
35352
36001
|
} | {
|
|
35353
36002
|
value: string;
|
|
35354
36003
|
type: "unparsed";
|
|
36004
|
+
} | {
|
|
36005
|
+
value: string;
|
|
36006
|
+
type: "var";
|
|
35355
36007
|
}] | undefined;
|
|
35356
36008
|
};
|
|
35357
36009
|
name?: string | undefined;
|
|
@@ -35369,6 +36021,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
35369
36021
|
} | {
|
|
35370
36022
|
value: string;
|
|
35371
36023
|
type: "unparsed";
|
|
36024
|
+
} | {
|
|
36025
|
+
value: string;
|
|
36026
|
+
type: "var";
|
|
35372
36027
|
} | {
|
|
35373
36028
|
value: "auto";
|
|
35374
36029
|
type: "keyword";
|
|
@@ -35380,6 +36035,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
35380
36035
|
} | {
|
|
35381
36036
|
value: string;
|
|
35382
36037
|
type: "unparsed";
|
|
36038
|
+
} | {
|
|
36039
|
+
value: string;
|
|
36040
|
+
type: "var";
|
|
35383
36041
|
} | {
|
|
35384
36042
|
value: "auto";
|
|
35385
36043
|
type: "keyword";
|
|
@@ -36002,6 +36660,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36002
36660
|
timing: {
|
|
36003
36661
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
36004
36662
|
easing?: string | undefined;
|
|
36663
|
+
duration?: {
|
|
36664
|
+
value: number;
|
|
36665
|
+
type: "unit";
|
|
36666
|
+
unit: "s" | "ms";
|
|
36667
|
+
} | {
|
|
36668
|
+
value: string;
|
|
36669
|
+
type: "var";
|
|
36670
|
+
} | undefined;
|
|
36005
36671
|
rangeStart?: ["start" | "end", {
|
|
36006
36672
|
value: number;
|
|
36007
36673
|
type: "unit";
|
|
@@ -36009,6 +36675,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36009
36675
|
} | {
|
|
36010
36676
|
value: string;
|
|
36011
36677
|
type: "unparsed";
|
|
36678
|
+
} | {
|
|
36679
|
+
value: string;
|
|
36680
|
+
type: "var";
|
|
36012
36681
|
}] | undefined;
|
|
36013
36682
|
rangeEnd?: ["start" | "end", {
|
|
36014
36683
|
value: number;
|
|
@@ -36017,6 +36686,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36017
36686
|
} | {
|
|
36018
36687
|
value: string;
|
|
36019
36688
|
type: "unparsed";
|
|
36689
|
+
} | {
|
|
36690
|
+
value: string;
|
|
36691
|
+
type: "var";
|
|
36020
36692
|
}] | undefined;
|
|
36021
36693
|
};
|
|
36022
36694
|
name?: string | undefined;
|
|
@@ -36638,6 +37310,14 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36638
37310
|
timing: {
|
|
36639
37311
|
fill?: "none" | "forwards" | "backwards" | "both" | undefined;
|
|
36640
37312
|
easing?: string | undefined;
|
|
37313
|
+
duration?: {
|
|
37314
|
+
value: number;
|
|
37315
|
+
type: "unit";
|
|
37316
|
+
unit: "s" | "ms";
|
|
37317
|
+
} | {
|
|
37318
|
+
value: string;
|
|
37319
|
+
type: "var";
|
|
37320
|
+
} | undefined;
|
|
36641
37321
|
rangeStart?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36642
37322
|
value: number;
|
|
36643
37323
|
type: "unit";
|
|
@@ -36645,6 +37325,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36645
37325
|
} | {
|
|
36646
37326
|
value: string;
|
|
36647
37327
|
type: "unparsed";
|
|
37328
|
+
} | {
|
|
37329
|
+
value: string;
|
|
37330
|
+
type: "var";
|
|
36648
37331
|
}] | undefined;
|
|
36649
37332
|
rangeEnd?: ["contain" | "cover" | "entry" | "exit" | "entry-crossing" | "exit-crossing", {
|
|
36650
37333
|
value: number;
|
|
@@ -36653,6 +37336,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36653
37336
|
} | {
|
|
36654
37337
|
value: string;
|
|
36655
37338
|
type: "unparsed";
|
|
37339
|
+
} | {
|
|
37340
|
+
value: string;
|
|
37341
|
+
type: "var";
|
|
36656
37342
|
}] | undefined;
|
|
36657
37343
|
};
|
|
36658
37344
|
name?: string | undefined;
|
|
@@ -36670,6 +37356,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36670
37356
|
} | {
|
|
36671
37357
|
value: string;
|
|
36672
37358
|
type: "unparsed";
|
|
37359
|
+
} | {
|
|
37360
|
+
value: string;
|
|
37361
|
+
type: "var";
|
|
36673
37362
|
} | {
|
|
36674
37363
|
value: "auto";
|
|
36675
37364
|
type: "keyword";
|
|
@@ -36681,6 +37370,9 @@ export declare const Props: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
|
36681
37370
|
} | {
|
|
36682
37371
|
value: string;
|
|
36683
37372
|
type: "unparsed";
|
|
37373
|
+
} | {
|
|
37374
|
+
value: string;
|
|
37375
|
+
type: "var";
|
|
36684
37376
|
} | {
|
|
36685
37377
|
value: "auto";
|
|
36686
37378
|
type: "keyword";
|