@webstudio-is/sdk 0.272.0 → 0.273.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.
@@ -1,8 +1,7 @@
1
- import { StyleValue } from "@webstudio-is/css-engine";
2
1
  import { z } from "zod";
3
2
  export declare const RANGE_UNITS: readonly ["%", "px", "cm", "mm", "q", "in", "pt", "pc", "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"];
4
- export declare const rangeUnitSchema: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
5
- export declare const rangeUnitValueSchema: z.ZodUnion<[z.ZodObject<{
3
+ export declare const rangeUnit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
4
+ export declare const rangeUnitValue: z.ZodUnion<[z.ZodObject<{
6
5
  type: z.ZodLiteral<"unit">;
7
6
  value: z.ZodNumber;
8
7
  unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
@@ -34,8 +33,8 @@ export declare const rangeUnitValueSchema: z.ZodUnion<[z.ZodObject<{
34
33
  type: "var";
35
34
  }>]>;
36
35
  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<{
36
+ declare const timeUnit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
37
+ export declare const durationUnitValue: z.ZodUnion<[z.ZodObject<{
39
38
  type: z.ZodLiteral<"unit">;
40
39
  value: z.ZodNumber;
41
40
  unit: z.ZodUnion<[z.ZodLiteral<"ms">, z.ZodLiteral<"s">, ...z.ZodLiteral<"s" | "ms">[]]>;
@@ -57,8 +56,8 @@ export declare const durationUnitValueSchema: z.ZodUnion<[z.ZodObject<{
57
56
  value: string;
58
57
  type: "var";
59
58
  }>]>;
60
- declare const iterationsUnitValueSchema: z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"infinite">]>;
61
- export declare const insetUnitValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
59
+ declare const iterationsUnitValue: z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"infinite">]>;
60
+ export declare const insetUnitValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
62
61
  type: z.ZodLiteral<"unit">;
63
62
  value: z.ZodNumber;
64
63
  unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
@@ -98,7 +97,7 @@ export declare const insetUnitValueSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
98
97
  value: "auto";
99
98
  type: "keyword";
100
99
  }>]>;
101
- export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
100
+ export declare const keyframeStyles: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
102
101
  type: z.ZodLiteral<"image">;
103
102
  value: z.ZodUnion<[z.ZodObject<{
104
103
  type: z.ZodLiteral<"asset">;
@@ -330,12 +329,12 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
330
329
  }>, z.ZodType<{
331
330
  type: "function";
332
331
  name: string;
333
- args: StyleValue;
332
+ args: import("@webstudio-is/css-engine").StyleValue;
334
333
  hidden?: boolean;
335
334
  }, z.ZodTypeDef, {
336
335
  type: "function";
337
336
  name: string;
338
- args: StyleValue;
337
+ args: import("@webstudio-is/css-engine").StyleValue;
339
338
  hidden?: boolean;
340
339
  }>, z.ZodObject<{
341
340
  type: z.ZodLiteral<"var">;
@@ -488,7 +487,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
488
487
  } | {
489
488
  type: "function";
490
489
  name: string;
491
- args: StyleValue;
490
+ args: import("@webstudio-is/css-engine").StyleValue;
492
491
  hidden?: boolean;
493
492
  } | {
494
493
  value: string;
@@ -552,7 +551,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
552
551
  } | {
553
552
  type: "function";
554
553
  name: string;
555
- args: StyleValue;
554
+ args: import("@webstudio-is/css-engine").StyleValue;
556
555
  hidden?: boolean;
557
556
  } | {
558
557
  value: string;
@@ -1625,12 +1624,12 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
1625
1624
  }>, z.ZodType<{
1626
1625
  type: "function";
1627
1626
  name: string;
1628
- args: StyleValue;
1627
+ args: import("@webstudio-is/css-engine").StyleValue;
1629
1628
  hidden?: boolean;
1630
1629
  }, z.ZodTypeDef, {
1631
1630
  type: "function";
1632
1631
  name: string;
1633
- args: StyleValue;
1632
+ args: import("@webstudio-is/css-engine").StyleValue;
1634
1633
  hidden?: boolean;
1635
1634
  }>, z.ZodObject<{
1636
1635
  type: z.ZodLiteral<"var">;
@@ -1783,7 +1782,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
1783
1782
  } | {
1784
1783
  type: "function";
1785
1784
  name: string;
1786
- args: StyleValue;
1785
+ args: import("@webstudio-is/css-engine").StyleValue;
1787
1786
  hidden?: boolean;
1788
1787
  } | {
1789
1788
  value: string;
@@ -1844,7 +1843,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
1844
1843
  } | {
1845
1844
  type: "function";
1846
1845
  name: string;
1847
- args: StyleValue;
1846
+ args: import("@webstudio-is/css-engine").StyleValue;
1848
1847
  hidden?: boolean;
1849
1848
  } | {
1850
1849
  value: string;
@@ -2080,7 +2079,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2080
2079
  } | {
2081
2080
  type: "function";
2082
2081
  name: string;
2083
- args: StyleValue;
2082
+ args: import("@webstudio-is/css-engine").StyleValue;
2084
2083
  hidden?: boolean;
2085
2084
  } | {
2086
2085
  value: string;
@@ -2141,7 +2140,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2141
2140
  } | {
2142
2141
  type: "function";
2143
2142
  name: string;
2144
- args: StyleValue;
2143
+ args: import("@webstudio-is/css-engine").StyleValue;
2145
2144
  hidden?: boolean;
2146
2145
  } | {
2147
2146
  value: string;
@@ -2522,12 +2521,12 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2522
2521
  }>, z.ZodType<{
2523
2522
  type: "function";
2524
2523
  name: string;
2525
- args: StyleValue;
2524
+ args: import("@webstudio-is/css-engine").StyleValue;
2526
2525
  hidden?: boolean;
2527
2526
  }, z.ZodTypeDef, {
2528
2527
  type: "function";
2529
2528
  name: string;
2530
- args: StyleValue;
2529
+ args: import("@webstudio-is/css-engine").StyleValue;
2531
2530
  hidden?: boolean;
2532
2531
  }>, z.ZodObject<{
2533
2532
  type: z.ZodLiteral<"var">;
@@ -2680,7 +2679,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2680
2679
  } | {
2681
2680
  type: "function";
2682
2681
  name: string;
2683
- args: StyleValue;
2682
+ args: import("@webstudio-is/css-engine").StyleValue;
2684
2683
  hidden?: boolean;
2685
2684
  } | {
2686
2685
  value: string;
@@ -2744,7 +2743,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2744
2743
  } | {
2745
2744
  type: "function";
2746
2745
  name: string;
2747
- args: StyleValue;
2746
+ args: import("@webstudio-is/css-engine").StyleValue;
2748
2747
  hidden?: boolean;
2749
2748
  } | {
2750
2749
  value: string;
@@ -2777,12 +2776,12 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
2777
2776
  }>, z.ZodType<{
2778
2777
  type: "function";
2779
2778
  name: string;
2780
- args: StyleValue;
2779
+ args: import("@webstudio-is/css-engine").StyleValue;
2781
2780
  hidden?: boolean;
2782
2781
  }, z.ZodTypeDef, {
2783
2782
  type: "function";
2784
2783
  name: string;
2785
- args: StyleValue;
2784
+ args: import("@webstudio-is/css-engine").StyleValue;
2786
2785
  hidden?: boolean;
2787
2786
  }>, z.ZodObject<{
2788
2787
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -3940,7 +3939,7 @@ export declare const keyframeStylesSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
3940
3939
  hidden?: boolean | undefined;
3941
3940
  } | undefined;
3942
3941
  }>]>>;
3943
- export declare const animationKeyframeSchema: z.ZodObject<{
3942
+ export declare const animationKeyframe: z.ZodObject<{
3944
3943
  offset: z.ZodOptional<z.ZodNumber>;
3945
3944
  styles: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
3946
3945
  type: z.ZodLiteral<"image">;
@@ -4174,12 +4173,12 @@ export declare const animationKeyframeSchema: z.ZodObject<{
4174
4173
  }>, z.ZodType<{
4175
4174
  type: "function";
4176
4175
  name: string;
4177
- args: StyleValue;
4176
+ args: import("@webstudio-is/css-engine").StyleValue;
4178
4177
  hidden?: boolean;
4179
4178
  }, z.ZodTypeDef, {
4180
4179
  type: "function";
4181
4180
  name: string;
4182
- args: StyleValue;
4181
+ args: import("@webstudio-is/css-engine").StyleValue;
4183
4182
  hidden?: boolean;
4184
4183
  }>, z.ZodObject<{
4185
4184
  type: z.ZodLiteral<"var">;
@@ -4332,7 +4331,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
4332
4331
  } | {
4333
4332
  type: "function";
4334
4333
  name: string;
4335
- args: StyleValue;
4334
+ args: import("@webstudio-is/css-engine").StyleValue;
4336
4335
  hidden?: boolean;
4337
4336
  } | {
4338
4337
  value: string;
@@ -4396,7 +4395,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
4396
4395
  } | {
4397
4396
  type: "function";
4398
4397
  name: string;
4399
- args: StyleValue;
4398
+ args: import("@webstudio-is/css-engine").StyleValue;
4400
4399
  hidden?: boolean;
4401
4400
  } | {
4402
4401
  value: string;
@@ -5469,12 +5468,12 @@ export declare const animationKeyframeSchema: z.ZodObject<{
5469
5468
  }>, z.ZodType<{
5470
5469
  type: "function";
5471
5470
  name: string;
5472
- args: StyleValue;
5471
+ args: import("@webstudio-is/css-engine").StyleValue;
5473
5472
  hidden?: boolean;
5474
5473
  }, z.ZodTypeDef, {
5475
5474
  type: "function";
5476
5475
  name: string;
5477
- args: StyleValue;
5476
+ args: import("@webstudio-is/css-engine").StyleValue;
5478
5477
  hidden?: boolean;
5479
5478
  }>, z.ZodObject<{
5480
5479
  type: z.ZodLiteral<"var">;
@@ -5627,7 +5626,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
5627
5626
  } | {
5628
5627
  type: "function";
5629
5628
  name: string;
5630
- args: StyleValue;
5629
+ args: import("@webstudio-is/css-engine").StyleValue;
5631
5630
  hidden?: boolean;
5632
5631
  } | {
5633
5632
  value: string;
@@ -5688,7 +5687,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
5688
5687
  } | {
5689
5688
  type: "function";
5690
5689
  name: string;
5691
- args: StyleValue;
5690
+ args: import("@webstudio-is/css-engine").StyleValue;
5692
5691
  hidden?: boolean;
5693
5692
  } | {
5694
5693
  value: string;
@@ -5924,7 +5923,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
5924
5923
  } | {
5925
5924
  type: "function";
5926
5925
  name: string;
5927
- args: StyleValue;
5926
+ args: import("@webstudio-is/css-engine").StyleValue;
5928
5927
  hidden?: boolean;
5929
5928
  } | {
5930
5929
  value: string;
@@ -5985,7 +5984,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
5985
5984
  } | {
5986
5985
  type: "function";
5987
5986
  name: string;
5988
- args: StyleValue;
5987
+ args: import("@webstudio-is/css-engine").StyleValue;
5989
5988
  hidden?: boolean;
5990
5989
  } | {
5991
5990
  value: string;
@@ -6366,12 +6365,12 @@ export declare const animationKeyframeSchema: z.ZodObject<{
6366
6365
  }>, z.ZodType<{
6367
6366
  type: "function";
6368
6367
  name: string;
6369
- args: StyleValue;
6368
+ args: import("@webstudio-is/css-engine").StyleValue;
6370
6369
  hidden?: boolean;
6371
6370
  }, z.ZodTypeDef, {
6372
6371
  type: "function";
6373
6372
  name: string;
6374
- args: StyleValue;
6373
+ args: import("@webstudio-is/css-engine").StyleValue;
6375
6374
  hidden?: boolean;
6376
6375
  }>, z.ZodObject<{
6377
6376
  type: z.ZodLiteral<"var">;
@@ -6524,7 +6523,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
6524
6523
  } | {
6525
6524
  type: "function";
6526
6525
  name: string;
6527
- args: StyleValue;
6526
+ args: import("@webstudio-is/css-engine").StyleValue;
6528
6527
  hidden?: boolean;
6529
6528
  } | {
6530
6529
  value: string;
@@ -6588,7 +6587,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
6588
6587
  } | {
6589
6588
  type: "function";
6590
6589
  name: string;
6591
- args: StyleValue;
6590
+ args: import("@webstudio-is/css-engine").StyleValue;
6592
6591
  hidden?: boolean;
6593
6592
  } | {
6594
6593
  value: string;
@@ -6621,12 +6620,12 @@ export declare const animationKeyframeSchema: z.ZodObject<{
6621
6620
  }>, z.ZodType<{
6622
6621
  type: "function";
6623
6622
  name: string;
6624
- args: StyleValue;
6623
+ args: import("@webstudio-is/css-engine").StyleValue;
6625
6624
  hidden?: boolean;
6626
6625
  }, z.ZodTypeDef, {
6627
6626
  type: "function";
6628
6627
  name: string;
6629
- args: StyleValue;
6628
+ args: import("@webstudio-is/css-engine").StyleValue;
6630
6629
  hidden?: boolean;
6631
6630
  }>, z.ZodObject<{
6632
6631
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -7818,7 +7817,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
7818
7817
  } | {
7819
7818
  type: "function";
7820
7819
  name: string;
7821
- args: StyleValue;
7820
+ args: import("@webstudio-is/css-engine").StyleValue;
7822
7821
  hidden?: boolean;
7823
7822
  } | {
7824
7823
  value: string;
@@ -7879,7 +7878,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
7879
7878
  } | {
7880
7879
  type: "function";
7881
7880
  name: string;
7882
- args: StyleValue;
7881
+ args: import("@webstudio-is/css-engine").StyleValue;
7883
7882
  hidden?: boolean;
7884
7883
  } | {
7885
7884
  value: string;
@@ -8112,7 +8111,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8112
8111
  } | {
8113
8112
  type: "function";
8114
8113
  name: string;
8115
- args: StyleValue;
8114
+ args: import("@webstudio-is/css-engine").StyleValue;
8116
8115
  hidden?: boolean;
8117
8116
  } | {
8118
8117
  value: string;
@@ -8173,7 +8172,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8173
8172
  } | {
8174
8173
  type: "function";
8175
8174
  name: string;
8176
- args: StyleValue;
8175
+ args: import("@webstudio-is/css-engine").StyleValue;
8177
8176
  hidden?: boolean;
8178
8177
  } | {
8179
8178
  value: string;
@@ -8422,7 +8421,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8422
8421
  } | {
8423
8422
  type: "function";
8424
8423
  name: string;
8425
- args: StyleValue;
8424
+ args: import("@webstudio-is/css-engine").StyleValue;
8426
8425
  hidden?: boolean;
8427
8426
  } | {
8428
8427
  value: string;
@@ -8483,7 +8482,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8483
8482
  } | {
8484
8483
  type: "function";
8485
8484
  name: string;
8486
- args: StyleValue;
8485
+ args: import("@webstudio-is/css-engine").StyleValue;
8487
8486
  hidden?: boolean;
8488
8487
  } | {
8489
8488
  value: string;
@@ -8716,7 +8715,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8716
8715
  } | {
8717
8716
  type: "function";
8718
8717
  name: string;
8719
- args: StyleValue;
8718
+ args: import("@webstudio-is/css-engine").StyleValue;
8720
8719
  hidden?: boolean;
8721
8720
  } | {
8722
8721
  value: string;
@@ -8777,7 +8776,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8777
8776
  } | {
8778
8777
  type: "function";
8779
8778
  name: string;
8780
- args: StyleValue;
8779
+ args: import("@webstudio-is/css-engine").StyleValue;
8781
8780
  hidden?: boolean;
8782
8781
  } | {
8783
8782
  value: string;
@@ -8993,7 +8992,7 @@ export declare const animationKeyframeSchema: z.ZodObject<{
8993
8992
  }>;
8994
8993
  offset?: number | undefined;
8995
8994
  }>;
8996
- export declare const keyframeEffectOptionsSchema: z.ZodObject<{
8995
+ export declare const keyframeEffectOptions: z.ZodObject<{
8997
8996
  easing: z.ZodOptional<z.ZodString>;
8998
8997
  fill: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"forwards">, z.ZodLiteral<"backwards">, z.ZodLiteral<"both">]>>;
8999
8998
  duration: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -9082,8 +9081,8 @@ export declare const keyframeEffectOptionsSchema: z.ZodObject<{
9082
9081
  } | undefined;
9083
9082
  iterations?: number | "infinite" | undefined;
9084
9083
  }>;
9085
- export declare const scrollNamedRangeSchema: z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>;
9086
- export declare const scrollRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
9084
+ export declare const scrollNamedRange: z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>;
9085
+ export declare const scrollRangeValue: z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
9087
9086
  type: z.ZodLiteral<"unit">;
9088
9087
  value: z.ZodNumber;
9089
9088
  unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
@@ -9114,7 +9113,7 @@ export declare const scrollRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLitera
9114
9113
  value: string;
9115
9114
  type: "var";
9116
9115
  }>]>], null>;
9117
- export declare const scrollRangeOptionsSchema: z.ZodObject<{
9116
+ export declare const scrollRangeOptions: z.ZodObject<{
9118
9117
  rangeStart: z.ZodOptional<z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<"start">, z.ZodLiteral<"end">]>, z.ZodUnion<[z.ZodObject<{
9119
9118
  type: z.ZodLiteral<"unit">;
9120
9119
  value: z.ZodNumber;
@@ -9224,9 +9223,9 @@ export declare const scrollRangeOptionsSchema: z.ZodObject<{
9224
9223
  type: "var";
9225
9224
  }] | undefined;
9226
9225
  }>;
9227
- export declare const animationAxisSchema: z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>;
9228
- export declare const viewNamedRangeSchema: z.ZodUnion<[z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>;
9229
- export declare const viewRangeValueSchema: 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<{
9226
+ export declare const animationAxis: z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>;
9227
+ export declare const viewNamedRange: z.ZodUnion<[z.ZodLiteral<"contain">, z.ZodLiteral<"cover">, z.ZodLiteral<"entry">, z.ZodLiteral<"exit">, z.ZodLiteral<"entry-crossing">, z.ZodLiteral<"exit-crossing">]>;
9228
+ export declare const viewRangeValue: 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<{
9230
9229
  type: z.ZodLiteral<"unit">;
9231
9230
  value: z.ZodNumber;
9232
9231
  unit: z.ZodUnion<[z.ZodLiteral<"%">, z.ZodLiteral<"px">, ...z.ZodLiteral<"%" | "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">[]]>;
@@ -9257,7 +9256,7 @@ export declare const viewRangeValueSchema: z.ZodTuple<[z.ZodUnion<[z.ZodLiteral<
9257
9256
  value: string;
9258
9257
  type: "var";
9259
9258
  }>]>], null>;
9260
- export declare const viewRangeOptionsSchema: z.ZodObject<{
9259
+ export declare const viewRangeOptions: z.ZodObject<{
9261
9260
  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<{
9262
9261
  type: z.ZodLiteral<"unit">;
9263
9262
  value: z.ZodNumber;
@@ -9367,7 +9366,7 @@ export declare const viewRangeOptionsSchema: z.ZodObject<{
9367
9366
  type: "var";
9368
9367
  }] | undefined;
9369
9368
  }>;
9370
- export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
9369
+ export declare const scrollAnimation: z.ZodObject<z.objectUtil.extendShape<{
9371
9370
  name: z.ZodOptional<z.ZodString>;
9372
9371
  description: z.ZodOptional<z.ZodString>;
9373
9372
  enabled: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodBoolean], null>, "many">>;
@@ -9605,12 +9604,12 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
9605
9604
  }>, z.ZodType<{
9606
9605
  type: "function";
9607
9606
  name: string;
9608
- args: StyleValue;
9607
+ args: import("@webstudio-is/css-engine").StyleValue;
9609
9608
  hidden?: boolean;
9610
9609
  }, z.ZodTypeDef, {
9611
9610
  type: "function";
9612
9611
  name: string;
9613
- args: StyleValue;
9612
+ args: import("@webstudio-is/css-engine").StyleValue;
9614
9613
  hidden?: boolean;
9615
9614
  }>, z.ZodObject<{
9616
9615
  type: z.ZodLiteral<"var">;
@@ -9763,7 +9762,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
9763
9762
  } | {
9764
9763
  type: "function";
9765
9764
  name: string;
9766
- args: StyleValue;
9765
+ args: import("@webstudio-is/css-engine").StyleValue;
9767
9766
  hidden?: boolean;
9768
9767
  } | {
9769
9768
  value: string;
@@ -9827,7 +9826,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
9827
9826
  } | {
9828
9827
  type: "function";
9829
9828
  name: string;
9830
- args: StyleValue;
9829
+ args: import("@webstudio-is/css-engine").StyleValue;
9831
9830
  hidden?: boolean;
9832
9831
  } | {
9833
9832
  value: string;
@@ -10900,12 +10899,12 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
10900
10899
  }>, z.ZodType<{
10901
10900
  type: "function";
10902
10901
  name: string;
10903
- args: StyleValue;
10902
+ args: import("@webstudio-is/css-engine").StyleValue;
10904
10903
  hidden?: boolean;
10905
10904
  }, z.ZodTypeDef, {
10906
10905
  type: "function";
10907
10906
  name: string;
10908
- args: StyleValue;
10907
+ args: import("@webstudio-is/css-engine").StyleValue;
10909
10908
  hidden?: boolean;
10910
10909
  }>, z.ZodObject<{
10911
10910
  type: z.ZodLiteral<"var">;
@@ -11058,7 +11057,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11058
11057
  } | {
11059
11058
  type: "function";
11060
11059
  name: string;
11061
- args: StyleValue;
11060
+ args: import("@webstudio-is/css-engine").StyleValue;
11062
11061
  hidden?: boolean;
11063
11062
  } | {
11064
11063
  value: string;
@@ -11119,7 +11118,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11119
11118
  } | {
11120
11119
  type: "function";
11121
11120
  name: string;
11122
- args: StyleValue;
11121
+ args: import("@webstudio-is/css-engine").StyleValue;
11123
11122
  hidden?: boolean;
11124
11123
  } | {
11125
11124
  value: string;
@@ -11355,7 +11354,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11355
11354
  } | {
11356
11355
  type: "function";
11357
11356
  name: string;
11358
- args: StyleValue;
11357
+ args: import("@webstudio-is/css-engine").StyleValue;
11359
11358
  hidden?: boolean;
11360
11359
  } | {
11361
11360
  value: string;
@@ -11416,7 +11415,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11416
11415
  } | {
11417
11416
  type: "function";
11418
11417
  name: string;
11419
- args: StyleValue;
11418
+ args: import("@webstudio-is/css-engine").StyleValue;
11420
11419
  hidden?: boolean;
11421
11420
  } | {
11422
11421
  value: string;
@@ -11797,12 +11796,12 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11797
11796
  }>, z.ZodType<{
11798
11797
  type: "function";
11799
11798
  name: string;
11800
- args: StyleValue;
11799
+ args: import("@webstudio-is/css-engine").StyleValue;
11801
11800
  hidden?: boolean;
11802
11801
  }, z.ZodTypeDef, {
11803
11802
  type: "function";
11804
11803
  name: string;
11805
- args: StyleValue;
11804
+ args: import("@webstudio-is/css-engine").StyleValue;
11806
11805
  hidden?: boolean;
11807
11806
  }>, z.ZodObject<{
11808
11807
  type: z.ZodLiteral<"var">;
@@ -11955,7 +11954,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
11955
11954
  } | {
11956
11955
  type: "function";
11957
11956
  name: string;
11958
- args: StyleValue;
11957
+ args: import("@webstudio-is/css-engine").StyleValue;
11959
11958
  hidden?: boolean;
11960
11959
  } | {
11961
11960
  value: string;
@@ -12019,7 +12018,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
12019
12018
  } | {
12020
12019
  type: "function";
12021
12020
  name: string;
12022
- args: StyleValue;
12021
+ args: import("@webstudio-is/css-engine").StyleValue;
12023
12022
  hidden?: boolean;
12024
12023
  } | {
12025
12024
  value: string;
@@ -12052,12 +12051,12 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
12052
12051
  }>, z.ZodType<{
12053
12052
  type: "function";
12054
12053
  name: string;
12055
- args: StyleValue;
12054
+ args: import("@webstudio-is/css-engine").StyleValue;
12056
12055
  hidden?: boolean;
12057
12056
  }, z.ZodTypeDef, {
12058
12057
  type: "function";
12059
12058
  name: string;
12060
- args: StyleValue;
12059
+ args: import("@webstudio-is/css-engine").StyleValue;
12061
12060
  hidden?: boolean;
12062
12061
  }>, z.ZodObject<{
12063
12062
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -13249,7 +13248,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13249
13248
  } | {
13250
13249
  type: "function";
13251
13250
  name: string;
13252
- args: StyleValue;
13251
+ args: import("@webstudio-is/css-engine").StyleValue;
13253
13252
  hidden?: boolean;
13254
13253
  } | {
13255
13254
  value: string;
@@ -13310,7 +13309,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13310
13309
  } | {
13311
13310
  type: "function";
13312
13311
  name: string;
13313
- args: StyleValue;
13312
+ args: import("@webstudio-is/css-engine").StyleValue;
13314
13313
  hidden?: boolean;
13315
13314
  } | {
13316
13315
  value: string;
@@ -13543,7 +13542,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13543
13542
  } | {
13544
13543
  type: "function";
13545
13544
  name: string;
13546
- args: StyleValue;
13545
+ args: import("@webstudio-is/css-engine").StyleValue;
13547
13546
  hidden?: boolean;
13548
13547
  } | {
13549
13548
  value: string;
@@ -13604,7 +13603,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13604
13603
  } | {
13605
13604
  type: "function";
13606
13605
  name: string;
13607
- args: StyleValue;
13606
+ args: import("@webstudio-is/css-engine").StyleValue;
13608
13607
  hidden?: boolean;
13609
13608
  } | {
13610
13609
  value: string;
@@ -13853,7 +13852,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13853
13852
  } | {
13854
13853
  type: "function";
13855
13854
  name: string;
13856
- args: StyleValue;
13855
+ args: import("@webstudio-is/css-engine").StyleValue;
13857
13856
  hidden?: boolean;
13858
13857
  } | {
13859
13858
  value: string;
@@ -13914,7 +13913,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
13914
13913
  } | {
13915
13914
  type: "function";
13916
13915
  name: string;
13917
- args: StyleValue;
13916
+ args: import("@webstudio-is/css-engine").StyleValue;
13918
13917
  hidden?: boolean;
13919
13918
  } | {
13920
13919
  value: string;
@@ -14147,7 +14146,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
14147
14146
  } | {
14148
14147
  type: "function";
14149
14148
  name: string;
14150
- args: StyleValue;
14149
+ args: import("@webstudio-is/css-engine").StyleValue;
14151
14150
  hidden?: boolean;
14152
14151
  } | {
14153
14152
  value: string;
@@ -14208,7 +14207,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
14208
14207
  } | {
14209
14208
  type: "function";
14210
14209
  name: string;
14211
- args: StyleValue;
14210
+ args: import("@webstudio-is/css-engine").StyleValue;
14212
14211
  hidden?: boolean;
14213
14212
  } | {
14214
14213
  value: string;
@@ -14656,7 +14655,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
14656
14655
  } | {
14657
14656
  type: "function";
14658
14657
  name: string;
14659
- args: StyleValue;
14658
+ args: import("@webstudio-is/css-engine").StyleValue;
14660
14659
  hidden?: boolean;
14661
14660
  } | {
14662
14661
  value: string;
@@ -14717,7 +14716,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
14717
14716
  } | {
14718
14717
  type: "function";
14719
14718
  name: string;
14720
- args: StyleValue;
14719
+ args: import("@webstudio-is/css-engine").StyleValue;
14721
14720
  hidden?: boolean;
14722
14721
  } | {
14723
14722
  value: string;
@@ -14950,7 +14949,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
14950
14949
  } | {
14951
14950
  type: "function";
14952
14951
  name: string;
14953
- args: StyleValue;
14952
+ args: import("@webstudio-is/css-engine").StyleValue;
14954
14953
  hidden?: boolean;
14955
14954
  } | {
14956
14955
  value: string;
@@ -15011,7 +15010,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15011
15010
  } | {
15012
15011
  type: "function";
15013
15012
  name: string;
15014
- args: StyleValue;
15013
+ args: import("@webstudio-is/css-engine").StyleValue;
15015
15014
  hidden?: boolean;
15016
15015
  } | {
15017
15016
  value: string;
@@ -15308,7 +15307,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15308
15307
  } | {
15309
15308
  type: "function";
15310
15309
  name: string;
15311
- args: StyleValue;
15310
+ args: import("@webstudio-is/css-engine").StyleValue;
15312
15311
  hidden?: boolean;
15313
15312
  } | {
15314
15313
  value: string;
@@ -15369,7 +15368,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15369
15368
  } | {
15370
15369
  type: "function";
15371
15370
  name: string;
15372
- args: StyleValue;
15371
+ args: import("@webstudio-is/css-engine").StyleValue;
15373
15372
  hidden?: boolean;
15374
15373
  } | {
15375
15374
  value: string;
@@ -15602,7 +15601,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15602
15601
  } | {
15603
15602
  type: "function";
15604
15603
  name: string;
15605
- args: StyleValue;
15604
+ args: import("@webstudio-is/css-engine").StyleValue;
15606
15605
  hidden?: boolean;
15607
15606
  } | {
15608
15607
  value: string;
@@ -15663,7 +15662,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15663
15662
  } | {
15664
15663
  type: "function";
15665
15664
  name: string;
15666
- args: StyleValue;
15665
+ args: import("@webstudio-is/css-engine").StyleValue;
15667
15666
  hidden?: boolean;
15668
15667
  } | {
15669
15668
  value: string;
@@ -15926,7 +15925,7 @@ export declare const scrollAnimationSchema: z.ZodObject<z.objectUtil.extendShape
15926
15925
  description?: string | undefined;
15927
15926
  enabled?: [string, boolean][] | undefined;
15928
15927
  }>;
15929
- export declare const scrollActionSchema: z.ZodObject<{
15928
+ export declare const scrollAction: z.ZodObject<{
15930
15929
  type: z.ZodLiteral<"scroll">;
15931
15930
  source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"closest">, z.ZodLiteral<"nearest">, z.ZodLiteral<"root">]>>;
15932
15931
  axis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>>;
@@ -16168,12 +16167,12 @@ export declare const scrollActionSchema: z.ZodObject<{
16168
16167
  }>, z.ZodType<{
16169
16168
  type: "function";
16170
16169
  name: string;
16171
- args: StyleValue;
16170
+ args: import("@webstudio-is/css-engine").StyleValue;
16172
16171
  hidden?: boolean;
16173
16172
  }, z.ZodTypeDef, {
16174
16173
  type: "function";
16175
16174
  name: string;
16176
- args: StyleValue;
16175
+ args: import("@webstudio-is/css-engine").StyleValue;
16177
16176
  hidden?: boolean;
16178
16177
  }>, z.ZodObject<{
16179
16178
  type: z.ZodLiteral<"var">;
@@ -16326,7 +16325,7 @@ export declare const scrollActionSchema: z.ZodObject<{
16326
16325
  } | {
16327
16326
  type: "function";
16328
16327
  name: string;
16329
- args: StyleValue;
16328
+ args: import("@webstudio-is/css-engine").StyleValue;
16330
16329
  hidden?: boolean;
16331
16330
  } | {
16332
16331
  value: string;
@@ -16390,7 +16389,7 @@ export declare const scrollActionSchema: z.ZodObject<{
16390
16389
  } | {
16391
16390
  type: "function";
16392
16391
  name: string;
16393
- args: StyleValue;
16392
+ args: import("@webstudio-is/css-engine").StyleValue;
16394
16393
  hidden?: boolean;
16395
16394
  } | {
16396
16395
  value: string;
@@ -17463,12 +17462,12 @@ export declare const scrollActionSchema: z.ZodObject<{
17463
17462
  }>, z.ZodType<{
17464
17463
  type: "function";
17465
17464
  name: string;
17466
- args: StyleValue;
17465
+ args: import("@webstudio-is/css-engine").StyleValue;
17467
17466
  hidden?: boolean;
17468
17467
  }, z.ZodTypeDef, {
17469
17468
  type: "function";
17470
17469
  name: string;
17471
- args: StyleValue;
17470
+ args: import("@webstudio-is/css-engine").StyleValue;
17472
17471
  hidden?: boolean;
17473
17472
  }>, z.ZodObject<{
17474
17473
  type: z.ZodLiteral<"var">;
@@ -17621,7 +17620,7 @@ export declare const scrollActionSchema: z.ZodObject<{
17621
17620
  } | {
17622
17621
  type: "function";
17623
17622
  name: string;
17624
- args: StyleValue;
17623
+ args: import("@webstudio-is/css-engine").StyleValue;
17625
17624
  hidden?: boolean;
17626
17625
  } | {
17627
17626
  value: string;
@@ -17682,7 +17681,7 @@ export declare const scrollActionSchema: z.ZodObject<{
17682
17681
  } | {
17683
17682
  type: "function";
17684
17683
  name: string;
17685
- args: StyleValue;
17684
+ args: import("@webstudio-is/css-engine").StyleValue;
17686
17685
  hidden?: boolean;
17687
17686
  } | {
17688
17687
  value: string;
@@ -17918,7 +17917,7 @@ export declare const scrollActionSchema: z.ZodObject<{
17918
17917
  } | {
17919
17918
  type: "function";
17920
17919
  name: string;
17921
- args: StyleValue;
17920
+ args: import("@webstudio-is/css-engine").StyleValue;
17922
17921
  hidden?: boolean;
17923
17922
  } | {
17924
17923
  value: string;
@@ -17979,7 +17978,7 @@ export declare const scrollActionSchema: z.ZodObject<{
17979
17978
  } | {
17980
17979
  type: "function";
17981
17980
  name: string;
17982
- args: StyleValue;
17981
+ args: import("@webstudio-is/css-engine").StyleValue;
17983
17982
  hidden?: boolean;
17984
17983
  } | {
17985
17984
  value: string;
@@ -18360,12 +18359,12 @@ export declare const scrollActionSchema: z.ZodObject<{
18360
18359
  }>, z.ZodType<{
18361
18360
  type: "function";
18362
18361
  name: string;
18363
- args: StyleValue;
18362
+ args: import("@webstudio-is/css-engine").StyleValue;
18364
18363
  hidden?: boolean;
18365
18364
  }, z.ZodTypeDef, {
18366
18365
  type: "function";
18367
18366
  name: string;
18368
- args: StyleValue;
18367
+ args: import("@webstudio-is/css-engine").StyleValue;
18369
18368
  hidden?: boolean;
18370
18369
  }>, z.ZodObject<{
18371
18370
  type: z.ZodLiteral<"var">;
@@ -18518,7 +18517,7 @@ export declare const scrollActionSchema: z.ZodObject<{
18518
18517
  } | {
18519
18518
  type: "function";
18520
18519
  name: string;
18521
- args: StyleValue;
18520
+ args: import("@webstudio-is/css-engine").StyleValue;
18522
18521
  hidden?: boolean;
18523
18522
  } | {
18524
18523
  value: string;
@@ -18582,7 +18581,7 @@ export declare const scrollActionSchema: z.ZodObject<{
18582
18581
  } | {
18583
18582
  type: "function";
18584
18583
  name: string;
18585
- args: StyleValue;
18584
+ args: import("@webstudio-is/css-engine").StyleValue;
18586
18585
  hidden?: boolean;
18587
18586
  } | {
18588
18587
  value: string;
@@ -18615,12 +18614,12 @@ export declare const scrollActionSchema: z.ZodObject<{
18615
18614
  }>, z.ZodType<{
18616
18615
  type: "function";
18617
18616
  name: string;
18618
- args: StyleValue;
18617
+ args: import("@webstudio-is/css-engine").StyleValue;
18619
18618
  hidden?: boolean;
18620
18619
  }, z.ZodTypeDef, {
18621
18620
  type: "function";
18622
18621
  name: string;
18623
- args: StyleValue;
18622
+ args: import("@webstudio-is/css-engine").StyleValue;
18624
18623
  hidden?: boolean;
18625
18624
  }>, z.ZodObject<{
18626
18625
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -19812,7 +19811,7 @@ export declare const scrollActionSchema: z.ZodObject<{
19812
19811
  } | {
19813
19812
  type: "function";
19814
19813
  name: string;
19815
- args: StyleValue;
19814
+ args: import("@webstudio-is/css-engine").StyleValue;
19816
19815
  hidden?: boolean;
19817
19816
  } | {
19818
19817
  value: string;
@@ -19873,7 +19872,7 @@ export declare const scrollActionSchema: z.ZodObject<{
19873
19872
  } | {
19874
19873
  type: "function";
19875
19874
  name: string;
19876
- args: StyleValue;
19875
+ args: import("@webstudio-is/css-engine").StyleValue;
19877
19876
  hidden?: boolean;
19878
19877
  } | {
19879
19878
  value: string;
@@ -20106,7 +20105,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20106
20105
  } | {
20107
20106
  type: "function";
20108
20107
  name: string;
20109
- args: StyleValue;
20108
+ args: import("@webstudio-is/css-engine").StyleValue;
20110
20109
  hidden?: boolean;
20111
20110
  } | {
20112
20111
  value: string;
@@ -20167,7 +20166,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20167
20166
  } | {
20168
20167
  type: "function";
20169
20168
  name: string;
20170
- args: StyleValue;
20169
+ args: import("@webstudio-is/css-engine").StyleValue;
20171
20170
  hidden?: boolean;
20172
20171
  } | {
20173
20172
  value: string;
@@ -20416,7 +20415,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20416
20415
  } | {
20417
20416
  type: "function";
20418
20417
  name: string;
20419
- args: StyleValue;
20418
+ args: import("@webstudio-is/css-engine").StyleValue;
20420
20419
  hidden?: boolean;
20421
20420
  } | {
20422
20421
  value: string;
@@ -20477,7 +20476,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20477
20476
  } | {
20478
20477
  type: "function";
20479
20478
  name: string;
20480
- args: StyleValue;
20479
+ args: import("@webstudio-is/css-engine").StyleValue;
20481
20480
  hidden?: boolean;
20482
20481
  } | {
20483
20482
  value: string;
@@ -20710,7 +20709,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20710
20709
  } | {
20711
20710
  type: "function";
20712
20711
  name: string;
20713
- args: StyleValue;
20712
+ args: import("@webstudio-is/css-engine").StyleValue;
20714
20713
  hidden?: boolean;
20715
20714
  } | {
20716
20715
  value: string;
@@ -20771,7 +20770,7 @@ export declare const scrollActionSchema: z.ZodObject<{
20771
20770
  } | {
20772
20771
  type: "function";
20773
20772
  name: string;
20774
- args: StyleValue;
20773
+ args: import("@webstudio-is/css-engine").StyleValue;
20775
20774
  hidden?: boolean;
20776
20775
  } | {
20777
20776
  value: string;
@@ -21219,7 +21218,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21219
21218
  } | {
21220
21219
  type: "function";
21221
21220
  name: string;
21222
- args: StyleValue;
21221
+ args: import("@webstudio-is/css-engine").StyleValue;
21223
21222
  hidden?: boolean;
21224
21223
  } | {
21225
21224
  value: string;
@@ -21280,7 +21279,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21280
21279
  } | {
21281
21280
  type: "function";
21282
21281
  name: string;
21283
- args: StyleValue;
21282
+ args: import("@webstudio-is/css-engine").StyleValue;
21284
21283
  hidden?: boolean;
21285
21284
  } | {
21286
21285
  value: string;
@@ -21513,7 +21512,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21513
21512
  } | {
21514
21513
  type: "function";
21515
21514
  name: string;
21516
- args: StyleValue;
21515
+ args: import("@webstudio-is/css-engine").StyleValue;
21517
21516
  hidden?: boolean;
21518
21517
  } | {
21519
21518
  value: string;
@@ -21574,7 +21573,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21574
21573
  } | {
21575
21574
  type: "function";
21576
21575
  name: string;
21577
- args: StyleValue;
21576
+ args: import("@webstudio-is/css-engine").StyleValue;
21578
21577
  hidden?: boolean;
21579
21578
  } | {
21580
21579
  value: string;
@@ -21871,7 +21870,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21871
21870
  } | {
21872
21871
  type: "function";
21873
21872
  name: string;
21874
- args: StyleValue;
21873
+ args: import("@webstudio-is/css-engine").StyleValue;
21875
21874
  hidden?: boolean;
21876
21875
  } | {
21877
21876
  value: string;
@@ -21932,7 +21931,7 @@ export declare const scrollActionSchema: z.ZodObject<{
21932
21931
  } | {
21933
21932
  type: "function";
21934
21933
  name: string;
21935
- args: StyleValue;
21934
+ args: import("@webstudio-is/css-engine").StyleValue;
21936
21935
  hidden?: boolean;
21937
21936
  } | {
21938
21937
  value: string;
@@ -22165,7 +22164,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22165
22164
  } | {
22166
22165
  type: "function";
22167
22166
  name: string;
22168
- args: StyleValue;
22167
+ args: import("@webstudio-is/css-engine").StyleValue;
22169
22168
  hidden?: boolean;
22170
22169
  } | {
22171
22170
  value: string;
@@ -22226,7 +22225,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22226
22225
  } | {
22227
22226
  type: "function";
22228
22227
  name: string;
22229
- args: StyleValue;
22228
+ args: import("@webstudio-is/css-engine").StyleValue;
22230
22229
  hidden?: boolean;
22231
22230
  } | {
22232
22231
  value: string;
@@ -22528,7 +22527,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22528
22527
  } | {
22529
22528
  type: "function";
22530
22529
  name: string;
22531
- args: StyleValue;
22530
+ args: import("@webstudio-is/css-engine").StyleValue;
22532
22531
  hidden?: boolean;
22533
22532
  } | {
22534
22533
  value: string;
@@ -22589,7 +22588,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22589
22588
  } | {
22590
22589
  type: "function";
22591
22590
  name: string;
22592
- args: StyleValue;
22591
+ args: import("@webstudio-is/css-engine").StyleValue;
22593
22592
  hidden?: boolean;
22594
22593
  } | {
22595
22594
  value: string;
@@ -22822,7 +22821,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22822
22821
  } | {
22823
22822
  type: "function";
22824
22823
  name: string;
22825
- args: StyleValue;
22824
+ args: import("@webstudio-is/css-engine").StyleValue;
22826
22825
  hidden?: boolean;
22827
22826
  } | {
22828
22827
  value: string;
@@ -22883,7 +22882,7 @@ export declare const scrollActionSchema: z.ZodObject<{
22883
22882
  } | {
22884
22883
  type: "function";
22885
22884
  name: string;
22886
- args: StyleValue;
22885
+ args: import("@webstudio-is/css-engine").StyleValue;
22887
22886
  hidden?: boolean;
22888
22887
  } | {
22889
22888
  value: string;
@@ -23187,7 +23186,7 @@ export declare const scrollActionSchema: z.ZodObject<{
23187
23186
  } | {
23188
23187
  type: "function";
23189
23188
  name: string;
23190
- args: StyleValue;
23189
+ args: import("@webstudio-is/css-engine").StyleValue;
23191
23190
  hidden?: boolean;
23192
23191
  } | {
23193
23192
  value: string;
@@ -23248,7 +23247,7 @@ export declare const scrollActionSchema: z.ZodObject<{
23248
23247
  } | {
23249
23248
  type: "function";
23250
23249
  name: string;
23251
- args: StyleValue;
23250
+ args: import("@webstudio-is/css-engine").StyleValue;
23252
23251
  hidden?: boolean;
23253
23252
  } | {
23254
23253
  value: string;
@@ -23481,7 +23480,7 @@ export declare const scrollActionSchema: z.ZodObject<{
23481
23480
  } | {
23482
23481
  type: "function";
23483
23482
  name: string;
23484
- args: StyleValue;
23483
+ args: import("@webstudio-is/css-engine").StyleValue;
23485
23484
  hidden?: boolean;
23486
23485
  } | {
23487
23486
  value: string;
@@ -23542,7 +23541,7 @@ export declare const scrollActionSchema: z.ZodObject<{
23542
23541
  } | {
23543
23542
  type: "function";
23544
23543
  name: string;
23545
- args: StyleValue;
23544
+ args: import("@webstudio-is/css-engine").StyleValue;
23546
23545
  hidden?: boolean;
23547
23546
  } | {
23548
23547
  value: string;
@@ -23810,7 +23809,7 @@ export declare const scrollActionSchema: z.ZodObject<{
23810
23809
  isPinned?: boolean | undefined;
23811
23810
  debug?: boolean | undefined;
23812
23811
  }>;
23813
- export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
23812
+ export declare const viewAnimation: z.ZodObject<z.objectUtil.extendShape<{
23814
23813
  name: z.ZodOptional<z.ZodString>;
23815
23814
  description: z.ZodOptional<z.ZodString>;
23816
23815
  enabled: z.ZodOptional<z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodBoolean], null>, "many">>;
@@ -24048,12 +24047,12 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
24048
24047
  }>, z.ZodType<{
24049
24048
  type: "function";
24050
24049
  name: string;
24051
- args: StyleValue;
24050
+ args: import("@webstudio-is/css-engine").StyleValue;
24052
24051
  hidden?: boolean;
24053
24052
  }, z.ZodTypeDef, {
24054
24053
  type: "function";
24055
24054
  name: string;
24056
- args: StyleValue;
24055
+ args: import("@webstudio-is/css-engine").StyleValue;
24057
24056
  hidden?: boolean;
24058
24057
  }>, z.ZodObject<{
24059
24058
  type: z.ZodLiteral<"var">;
@@ -24206,7 +24205,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
24206
24205
  } | {
24207
24206
  type: "function";
24208
24207
  name: string;
24209
- args: StyleValue;
24208
+ args: import("@webstudio-is/css-engine").StyleValue;
24210
24209
  hidden?: boolean;
24211
24210
  } | {
24212
24211
  value: string;
@@ -24270,7 +24269,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
24270
24269
  } | {
24271
24270
  type: "function";
24272
24271
  name: string;
24273
- args: StyleValue;
24272
+ args: import("@webstudio-is/css-engine").StyleValue;
24274
24273
  hidden?: boolean;
24275
24274
  } | {
24276
24275
  value: string;
@@ -25343,12 +25342,12 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
25343
25342
  }>, z.ZodType<{
25344
25343
  type: "function";
25345
25344
  name: string;
25346
- args: StyleValue;
25345
+ args: import("@webstudio-is/css-engine").StyleValue;
25347
25346
  hidden?: boolean;
25348
25347
  }, z.ZodTypeDef, {
25349
25348
  type: "function";
25350
25349
  name: string;
25351
- args: StyleValue;
25350
+ args: import("@webstudio-is/css-engine").StyleValue;
25352
25351
  hidden?: boolean;
25353
25352
  }>, z.ZodObject<{
25354
25353
  type: z.ZodLiteral<"var">;
@@ -25501,7 +25500,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
25501
25500
  } | {
25502
25501
  type: "function";
25503
25502
  name: string;
25504
- args: StyleValue;
25503
+ args: import("@webstudio-is/css-engine").StyleValue;
25505
25504
  hidden?: boolean;
25506
25505
  } | {
25507
25506
  value: string;
@@ -25562,7 +25561,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
25562
25561
  } | {
25563
25562
  type: "function";
25564
25563
  name: string;
25565
- args: StyleValue;
25564
+ args: import("@webstudio-is/css-engine").StyleValue;
25566
25565
  hidden?: boolean;
25567
25566
  } | {
25568
25567
  value: string;
@@ -25798,7 +25797,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
25798
25797
  } | {
25799
25798
  type: "function";
25800
25799
  name: string;
25801
- args: StyleValue;
25800
+ args: import("@webstudio-is/css-engine").StyleValue;
25802
25801
  hidden?: boolean;
25803
25802
  } | {
25804
25803
  value: string;
@@ -25859,7 +25858,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
25859
25858
  } | {
25860
25859
  type: "function";
25861
25860
  name: string;
25862
- args: StyleValue;
25861
+ args: import("@webstudio-is/css-engine").StyleValue;
25863
25862
  hidden?: boolean;
25864
25863
  } | {
25865
25864
  value: string;
@@ -26240,12 +26239,12 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
26240
26239
  }>, z.ZodType<{
26241
26240
  type: "function";
26242
26241
  name: string;
26243
- args: StyleValue;
26242
+ args: import("@webstudio-is/css-engine").StyleValue;
26244
26243
  hidden?: boolean;
26245
26244
  }, z.ZodTypeDef, {
26246
26245
  type: "function";
26247
26246
  name: string;
26248
- args: StyleValue;
26247
+ args: import("@webstudio-is/css-engine").StyleValue;
26249
26248
  hidden?: boolean;
26250
26249
  }>, z.ZodObject<{
26251
26250
  type: z.ZodLiteral<"var">;
@@ -26398,7 +26397,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
26398
26397
  } | {
26399
26398
  type: "function";
26400
26399
  name: string;
26401
- args: StyleValue;
26400
+ args: import("@webstudio-is/css-engine").StyleValue;
26402
26401
  hidden?: boolean;
26403
26402
  } | {
26404
26403
  value: string;
@@ -26462,7 +26461,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
26462
26461
  } | {
26463
26462
  type: "function";
26464
26463
  name: string;
26465
- args: StyleValue;
26464
+ args: import("@webstudio-is/css-engine").StyleValue;
26466
26465
  hidden?: boolean;
26467
26466
  } | {
26468
26467
  value: string;
@@ -26495,12 +26494,12 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
26495
26494
  }>, z.ZodType<{
26496
26495
  type: "function";
26497
26496
  name: string;
26498
- args: StyleValue;
26497
+ args: import("@webstudio-is/css-engine").StyleValue;
26499
26498
  hidden?: boolean;
26500
26499
  }, z.ZodTypeDef, {
26501
26500
  type: "function";
26502
26501
  name: string;
26503
- args: StyleValue;
26502
+ args: import("@webstudio-is/css-engine").StyleValue;
26504
26503
  hidden?: boolean;
26505
26504
  }>, z.ZodObject<{
26506
26505
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -27692,7 +27691,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
27692
27691
  } | {
27693
27692
  type: "function";
27694
27693
  name: string;
27695
- args: StyleValue;
27694
+ args: import("@webstudio-is/css-engine").StyleValue;
27696
27695
  hidden?: boolean;
27697
27696
  } | {
27698
27697
  value: string;
@@ -27753,7 +27752,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
27753
27752
  } | {
27754
27753
  type: "function";
27755
27754
  name: string;
27756
- args: StyleValue;
27755
+ args: import("@webstudio-is/css-engine").StyleValue;
27757
27756
  hidden?: boolean;
27758
27757
  } | {
27759
27758
  value: string;
@@ -27986,7 +27985,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
27986
27985
  } | {
27987
27986
  type: "function";
27988
27987
  name: string;
27989
- args: StyleValue;
27988
+ args: import("@webstudio-is/css-engine").StyleValue;
27990
27989
  hidden?: boolean;
27991
27990
  } | {
27992
27991
  value: string;
@@ -28047,7 +28046,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
28047
28046
  } | {
28048
28047
  type: "function";
28049
28048
  name: string;
28050
- args: StyleValue;
28049
+ args: import("@webstudio-is/css-engine").StyleValue;
28051
28050
  hidden?: boolean;
28052
28051
  } | {
28053
28052
  value: string;
@@ -28296,7 +28295,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
28296
28295
  } | {
28297
28296
  type: "function";
28298
28297
  name: string;
28299
- args: StyleValue;
28298
+ args: import("@webstudio-is/css-engine").StyleValue;
28300
28299
  hidden?: boolean;
28301
28300
  } | {
28302
28301
  value: string;
@@ -28357,7 +28356,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
28357
28356
  } | {
28358
28357
  type: "function";
28359
28358
  name: string;
28360
- args: StyleValue;
28359
+ args: import("@webstudio-is/css-engine").StyleValue;
28361
28360
  hidden?: boolean;
28362
28361
  } | {
28363
28362
  value: string;
@@ -28590,7 +28589,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
28590
28589
  } | {
28591
28590
  type: "function";
28592
28591
  name: string;
28593
- args: StyleValue;
28592
+ args: import("@webstudio-is/css-engine").StyleValue;
28594
28593
  hidden?: boolean;
28595
28594
  } | {
28596
28595
  value: string;
@@ -28651,7 +28650,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
28651
28650
  } | {
28652
28651
  type: "function";
28653
28652
  name: string;
28654
- args: StyleValue;
28653
+ args: import("@webstudio-is/css-engine").StyleValue;
28655
28654
  hidden?: boolean;
28656
28655
  } | {
28657
28656
  value: string;
@@ -29099,7 +29098,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29099
29098
  } | {
29100
29099
  type: "function";
29101
29100
  name: string;
29102
- args: StyleValue;
29101
+ args: import("@webstudio-is/css-engine").StyleValue;
29103
29102
  hidden?: boolean;
29104
29103
  } | {
29105
29104
  value: string;
@@ -29160,7 +29159,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29160
29159
  } | {
29161
29160
  type: "function";
29162
29161
  name: string;
29163
- args: StyleValue;
29162
+ args: import("@webstudio-is/css-engine").StyleValue;
29164
29163
  hidden?: boolean;
29165
29164
  } | {
29166
29165
  value: string;
@@ -29393,7 +29392,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29393
29392
  } | {
29394
29393
  type: "function";
29395
29394
  name: string;
29396
- args: StyleValue;
29395
+ args: import("@webstudio-is/css-engine").StyleValue;
29397
29396
  hidden?: boolean;
29398
29397
  } | {
29399
29398
  value: string;
@@ -29454,7 +29453,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29454
29453
  } | {
29455
29454
  type: "function";
29456
29455
  name: string;
29457
- args: StyleValue;
29456
+ args: import("@webstudio-is/css-engine").StyleValue;
29458
29457
  hidden?: boolean;
29459
29458
  } | {
29460
29459
  value: string;
@@ -29751,7 +29750,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29751
29750
  } | {
29752
29751
  type: "function";
29753
29752
  name: string;
29754
- args: StyleValue;
29753
+ args: import("@webstudio-is/css-engine").StyleValue;
29755
29754
  hidden?: boolean;
29756
29755
  } | {
29757
29756
  value: string;
@@ -29812,7 +29811,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
29812
29811
  } | {
29813
29812
  type: "function";
29814
29813
  name: string;
29815
- args: StyleValue;
29814
+ args: import("@webstudio-is/css-engine").StyleValue;
29816
29815
  hidden?: boolean;
29817
29816
  } | {
29818
29817
  value: string;
@@ -30045,7 +30044,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
30045
30044
  } | {
30046
30045
  type: "function";
30047
30046
  name: string;
30048
- args: StyleValue;
30047
+ args: import("@webstudio-is/css-engine").StyleValue;
30049
30048
  hidden?: boolean;
30050
30049
  } | {
30051
30050
  value: string;
@@ -30106,7 +30105,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
30106
30105
  } | {
30107
30106
  type: "function";
30108
30107
  name: string;
30109
- args: StyleValue;
30108
+ args: import("@webstudio-is/css-engine").StyleValue;
30110
30109
  hidden?: boolean;
30111
30110
  } | {
30112
30111
  value: string;
@@ -30369,7 +30368,7 @@ export declare const viewAnimationSchema: z.ZodObject<z.objectUtil.extendShape<{
30369
30368
  description?: string | undefined;
30370
30369
  enabled?: [string, boolean][] | undefined;
30371
30370
  }>;
30372
- export declare const viewActionSchema: z.ZodObject<{
30371
+ export declare const viewAction: z.ZodObject<{
30373
30372
  type: z.ZodLiteral<"view">;
30374
30373
  subject: z.ZodOptional<z.ZodString>;
30375
30374
  axis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>>;
@@ -30611,12 +30610,12 @@ export declare const viewActionSchema: z.ZodObject<{
30611
30610
  }>, z.ZodType<{
30612
30611
  type: "function";
30613
30612
  name: string;
30614
- args: StyleValue;
30613
+ args: import("@webstudio-is/css-engine").StyleValue;
30615
30614
  hidden?: boolean;
30616
30615
  }, z.ZodTypeDef, {
30617
30616
  type: "function";
30618
30617
  name: string;
30619
- args: StyleValue;
30618
+ args: import("@webstudio-is/css-engine").StyleValue;
30620
30619
  hidden?: boolean;
30621
30620
  }>, z.ZodObject<{
30622
30621
  type: z.ZodLiteral<"var">;
@@ -30769,7 +30768,7 @@ export declare const viewActionSchema: z.ZodObject<{
30769
30768
  } | {
30770
30769
  type: "function";
30771
30770
  name: string;
30772
- args: StyleValue;
30771
+ args: import("@webstudio-is/css-engine").StyleValue;
30773
30772
  hidden?: boolean;
30774
30773
  } | {
30775
30774
  value: string;
@@ -30833,7 +30832,7 @@ export declare const viewActionSchema: z.ZodObject<{
30833
30832
  } | {
30834
30833
  type: "function";
30835
30834
  name: string;
30836
- args: StyleValue;
30835
+ args: import("@webstudio-is/css-engine").StyleValue;
30837
30836
  hidden?: boolean;
30838
30837
  } | {
30839
30838
  value: string;
@@ -31906,12 +31905,12 @@ export declare const viewActionSchema: z.ZodObject<{
31906
31905
  }>, z.ZodType<{
31907
31906
  type: "function";
31908
31907
  name: string;
31909
- args: StyleValue;
31908
+ args: import("@webstudio-is/css-engine").StyleValue;
31910
31909
  hidden?: boolean;
31911
31910
  }, z.ZodTypeDef, {
31912
31911
  type: "function";
31913
31912
  name: string;
31914
- args: StyleValue;
31913
+ args: import("@webstudio-is/css-engine").StyleValue;
31915
31914
  hidden?: boolean;
31916
31915
  }>, z.ZodObject<{
31917
31916
  type: z.ZodLiteral<"var">;
@@ -32064,7 +32063,7 @@ export declare const viewActionSchema: z.ZodObject<{
32064
32063
  } | {
32065
32064
  type: "function";
32066
32065
  name: string;
32067
- args: StyleValue;
32066
+ args: import("@webstudio-is/css-engine").StyleValue;
32068
32067
  hidden?: boolean;
32069
32068
  } | {
32070
32069
  value: string;
@@ -32125,7 +32124,7 @@ export declare const viewActionSchema: z.ZodObject<{
32125
32124
  } | {
32126
32125
  type: "function";
32127
32126
  name: string;
32128
- args: StyleValue;
32127
+ args: import("@webstudio-is/css-engine").StyleValue;
32129
32128
  hidden?: boolean;
32130
32129
  } | {
32131
32130
  value: string;
@@ -32361,7 +32360,7 @@ export declare const viewActionSchema: z.ZodObject<{
32361
32360
  } | {
32362
32361
  type: "function";
32363
32362
  name: string;
32364
- args: StyleValue;
32363
+ args: import("@webstudio-is/css-engine").StyleValue;
32365
32364
  hidden?: boolean;
32366
32365
  } | {
32367
32366
  value: string;
@@ -32422,7 +32421,7 @@ export declare const viewActionSchema: z.ZodObject<{
32422
32421
  } | {
32423
32422
  type: "function";
32424
32423
  name: string;
32425
- args: StyleValue;
32424
+ args: import("@webstudio-is/css-engine").StyleValue;
32426
32425
  hidden?: boolean;
32427
32426
  } | {
32428
32427
  value: string;
@@ -32803,12 +32802,12 @@ export declare const viewActionSchema: z.ZodObject<{
32803
32802
  }>, z.ZodType<{
32804
32803
  type: "function";
32805
32804
  name: string;
32806
- args: StyleValue;
32805
+ args: import("@webstudio-is/css-engine").StyleValue;
32807
32806
  hidden?: boolean;
32808
32807
  }, z.ZodTypeDef, {
32809
32808
  type: "function";
32810
32809
  name: string;
32811
- args: StyleValue;
32810
+ args: import("@webstudio-is/css-engine").StyleValue;
32812
32811
  hidden?: boolean;
32813
32812
  }>, z.ZodObject<{
32814
32813
  type: z.ZodLiteral<"var">;
@@ -32961,7 +32960,7 @@ export declare const viewActionSchema: z.ZodObject<{
32961
32960
  } | {
32962
32961
  type: "function";
32963
32962
  name: string;
32964
- args: StyleValue;
32963
+ args: import("@webstudio-is/css-engine").StyleValue;
32965
32964
  hidden?: boolean;
32966
32965
  } | {
32967
32966
  value: string;
@@ -33025,7 +33024,7 @@ export declare const viewActionSchema: z.ZodObject<{
33025
33024
  } | {
33026
33025
  type: "function";
33027
33026
  name: string;
33028
- args: StyleValue;
33027
+ args: import("@webstudio-is/css-engine").StyleValue;
33029
33028
  hidden?: boolean;
33030
33029
  } | {
33031
33030
  value: string;
@@ -33058,12 +33057,12 @@ export declare const viewActionSchema: z.ZodObject<{
33058
33057
  }>, z.ZodType<{
33059
33058
  type: "function";
33060
33059
  name: string;
33061
- args: StyleValue;
33060
+ args: import("@webstudio-is/css-engine").StyleValue;
33062
33061
  hidden?: boolean;
33063
33062
  }, z.ZodTypeDef, {
33064
33063
  type: "function";
33065
33064
  name: string;
33066
- args: StyleValue;
33065
+ args: import("@webstudio-is/css-engine").StyleValue;
33067
33066
  hidden?: boolean;
33068
33067
  }>, z.ZodObject<{
33069
33068
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -34255,7 +34254,7 @@ export declare const viewActionSchema: z.ZodObject<{
34255
34254
  } | {
34256
34255
  type: "function";
34257
34256
  name: string;
34258
- args: StyleValue;
34257
+ args: import("@webstudio-is/css-engine").StyleValue;
34259
34258
  hidden?: boolean;
34260
34259
  } | {
34261
34260
  value: string;
@@ -34316,7 +34315,7 @@ export declare const viewActionSchema: z.ZodObject<{
34316
34315
  } | {
34317
34316
  type: "function";
34318
34317
  name: string;
34319
- args: StyleValue;
34318
+ args: import("@webstudio-is/css-engine").StyleValue;
34320
34319
  hidden?: boolean;
34321
34320
  } | {
34322
34321
  value: string;
@@ -34549,7 +34548,7 @@ export declare const viewActionSchema: z.ZodObject<{
34549
34548
  } | {
34550
34549
  type: "function";
34551
34550
  name: string;
34552
- args: StyleValue;
34551
+ args: import("@webstudio-is/css-engine").StyleValue;
34553
34552
  hidden?: boolean;
34554
34553
  } | {
34555
34554
  value: string;
@@ -34610,7 +34609,7 @@ export declare const viewActionSchema: z.ZodObject<{
34610
34609
  } | {
34611
34610
  type: "function";
34612
34611
  name: string;
34613
- args: StyleValue;
34612
+ args: import("@webstudio-is/css-engine").StyleValue;
34614
34613
  hidden?: boolean;
34615
34614
  } | {
34616
34615
  value: string;
@@ -34859,7 +34858,7 @@ export declare const viewActionSchema: z.ZodObject<{
34859
34858
  } | {
34860
34859
  type: "function";
34861
34860
  name: string;
34862
- args: StyleValue;
34861
+ args: import("@webstudio-is/css-engine").StyleValue;
34863
34862
  hidden?: boolean;
34864
34863
  } | {
34865
34864
  value: string;
@@ -34920,7 +34919,7 @@ export declare const viewActionSchema: z.ZodObject<{
34920
34919
  } | {
34921
34920
  type: "function";
34922
34921
  name: string;
34923
- args: StyleValue;
34922
+ args: import("@webstudio-is/css-engine").StyleValue;
34924
34923
  hidden?: boolean;
34925
34924
  } | {
34926
34925
  value: string;
@@ -35153,7 +35152,7 @@ export declare const viewActionSchema: z.ZodObject<{
35153
35152
  } | {
35154
35153
  type: "function";
35155
35154
  name: string;
35156
- args: StyleValue;
35155
+ args: import("@webstudio-is/css-engine").StyleValue;
35157
35156
  hidden?: boolean;
35158
35157
  } | {
35159
35158
  value: string;
@@ -35214,7 +35213,7 @@ export declare const viewActionSchema: z.ZodObject<{
35214
35213
  } | {
35215
35214
  type: "function";
35216
35215
  name: string;
35217
- args: StyleValue;
35216
+ args: import("@webstudio-is/css-engine").StyleValue;
35218
35217
  hidden?: boolean;
35219
35218
  } | {
35220
35219
  value: string;
@@ -35662,7 +35661,7 @@ export declare const viewActionSchema: z.ZodObject<{
35662
35661
  } | {
35663
35662
  type: "function";
35664
35663
  name: string;
35665
- args: StyleValue;
35664
+ args: import("@webstudio-is/css-engine").StyleValue;
35666
35665
  hidden?: boolean;
35667
35666
  } | {
35668
35667
  value: string;
@@ -35723,7 +35722,7 @@ export declare const viewActionSchema: z.ZodObject<{
35723
35722
  } | {
35724
35723
  type: "function";
35725
35724
  name: string;
35726
- args: StyleValue;
35725
+ args: import("@webstudio-is/css-engine").StyleValue;
35727
35726
  hidden?: boolean;
35728
35727
  } | {
35729
35728
  value: string;
@@ -35956,7 +35955,7 @@ export declare const viewActionSchema: z.ZodObject<{
35956
35955
  } | {
35957
35956
  type: "function";
35958
35957
  name: string;
35959
- args: StyleValue;
35958
+ args: import("@webstudio-is/css-engine").StyleValue;
35960
35959
  hidden?: boolean;
35961
35960
  } | {
35962
35961
  value: string;
@@ -36017,7 +36016,7 @@ export declare const viewActionSchema: z.ZodObject<{
36017
36016
  } | {
36018
36017
  type: "function";
36019
36018
  name: string;
36020
- args: StyleValue;
36019
+ args: import("@webstudio-is/css-engine").StyleValue;
36021
36020
  hidden?: boolean;
36022
36021
  } | {
36023
36022
  value: string;
@@ -36314,7 +36313,7 @@ export declare const viewActionSchema: z.ZodObject<{
36314
36313
  } | {
36315
36314
  type: "function";
36316
36315
  name: string;
36317
- args: StyleValue;
36316
+ args: import("@webstudio-is/css-engine").StyleValue;
36318
36317
  hidden?: boolean;
36319
36318
  } | {
36320
36319
  value: string;
@@ -36375,7 +36374,7 @@ export declare const viewActionSchema: z.ZodObject<{
36375
36374
  } | {
36376
36375
  type: "function";
36377
36376
  name: string;
36378
- args: StyleValue;
36377
+ args: import("@webstudio-is/css-engine").StyleValue;
36379
36378
  hidden?: boolean;
36380
36379
  } | {
36381
36380
  value: string;
@@ -36608,7 +36607,7 @@ export declare const viewActionSchema: z.ZodObject<{
36608
36607
  } | {
36609
36608
  type: "function";
36610
36609
  name: string;
36611
- args: StyleValue;
36610
+ args: import("@webstudio-is/css-engine").StyleValue;
36612
36611
  hidden?: boolean;
36613
36612
  } | {
36614
36613
  value: string;
@@ -36669,7 +36668,7 @@ export declare const viewActionSchema: z.ZodObject<{
36669
36668
  } | {
36670
36669
  type: "function";
36671
36670
  name: string;
36672
- args: StyleValue;
36671
+ args: import("@webstudio-is/css-engine").StyleValue;
36673
36672
  hidden?: boolean;
36674
36673
  } | {
36675
36674
  value: string;
@@ -37051,7 +37050,7 @@ export declare const viewActionSchema: z.ZodObject<{
37051
37050
  } | {
37052
37051
  type: "function";
37053
37052
  name: string;
37054
- args: StyleValue;
37053
+ args: import("@webstudio-is/css-engine").StyleValue;
37055
37054
  hidden?: boolean;
37056
37055
  } | {
37057
37056
  value: string;
@@ -37112,7 +37111,7 @@ export declare const viewActionSchema: z.ZodObject<{
37112
37111
  } | {
37113
37112
  type: "function";
37114
37113
  name: string;
37115
- args: StyleValue;
37114
+ args: import("@webstudio-is/css-engine").StyleValue;
37116
37115
  hidden?: boolean;
37117
37116
  } | {
37118
37117
  value: string;
@@ -37345,7 +37344,7 @@ export declare const viewActionSchema: z.ZodObject<{
37345
37344
  } | {
37346
37345
  type: "function";
37347
37346
  name: string;
37348
- args: StyleValue;
37347
+ args: import("@webstudio-is/css-engine").StyleValue;
37349
37348
  hidden?: boolean;
37350
37349
  } | {
37351
37350
  value: string;
@@ -37406,7 +37405,7 @@ export declare const viewActionSchema: z.ZodObject<{
37406
37405
  } | {
37407
37406
  type: "function";
37408
37407
  name: string;
37409
- args: StyleValue;
37408
+ args: import("@webstudio-is/css-engine").StyleValue;
37410
37409
  hidden?: boolean;
37411
37410
  } | {
37412
37411
  value: string;
@@ -37738,7 +37737,7 @@ export declare const viewActionSchema: z.ZodObject<{
37738
37737
  } | {
37739
37738
  type: "function";
37740
37739
  name: string;
37741
- args: StyleValue;
37740
+ args: import("@webstudio-is/css-engine").StyleValue;
37742
37741
  hidden?: boolean;
37743
37742
  } | {
37744
37743
  value: string;
@@ -37799,7 +37798,7 @@ export declare const viewActionSchema: z.ZodObject<{
37799
37798
  } | {
37800
37799
  type: "function";
37801
37800
  name: string;
37802
- args: StyleValue;
37801
+ args: import("@webstudio-is/css-engine").StyleValue;
37803
37802
  hidden?: boolean;
37804
37803
  } | {
37805
37804
  value: string;
@@ -38032,7 +38031,7 @@ export declare const viewActionSchema: z.ZodObject<{
38032
38031
  } | {
38033
38032
  type: "function";
38034
38033
  name: string;
38035
- args: StyleValue;
38034
+ args: import("@webstudio-is/css-engine").StyleValue;
38036
38035
  hidden?: boolean;
38037
38036
  } | {
38038
38037
  value: string;
@@ -38093,7 +38092,7 @@ export declare const viewActionSchema: z.ZodObject<{
38093
38092
  } | {
38094
38093
  type: "function";
38095
38094
  name: string;
38096
- args: StyleValue;
38095
+ args: import("@webstudio-is/css-engine").StyleValue;
38097
38096
  hidden?: boolean;
38098
38097
  } | {
38099
38098
  value: string;
@@ -38389,7 +38388,7 @@ export declare const viewActionSchema: z.ZodObject<{
38389
38388
  type: "keyword";
38390
38389
  } | undefined;
38391
38390
  }>;
38392
- export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
38391
+ export declare const animationAction: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
38393
38392
  type: z.ZodLiteral<"scroll">;
38394
38393
  source: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"closest">, z.ZodLiteral<"nearest">, z.ZodLiteral<"root">]>>;
38395
38394
  axis: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"block">, z.ZodLiteral<"inline">, z.ZodLiteral<"x">, z.ZodLiteral<"y">]>>;
@@ -38631,12 +38630,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
38631
38630
  }>, z.ZodType<{
38632
38631
  type: "function";
38633
38632
  name: string;
38634
- args: StyleValue;
38633
+ args: import("@webstudio-is/css-engine").StyleValue;
38635
38634
  hidden?: boolean;
38636
38635
  }, z.ZodTypeDef, {
38637
38636
  type: "function";
38638
38637
  name: string;
38639
- args: StyleValue;
38638
+ args: import("@webstudio-is/css-engine").StyleValue;
38640
38639
  hidden?: boolean;
38641
38640
  }>, z.ZodObject<{
38642
38641
  type: z.ZodLiteral<"var">;
@@ -38789,7 +38788,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
38789
38788
  } | {
38790
38789
  type: "function";
38791
38790
  name: string;
38792
- args: StyleValue;
38791
+ args: import("@webstudio-is/css-engine").StyleValue;
38793
38792
  hidden?: boolean;
38794
38793
  } | {
38795
38794
  value: string;
@@ -38853,7 +38852,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
38853
38852
  } | {
38854
38853
  type: "function";
38855
38854
  name: string;
38856
- args: StyleValue;
38855
+ args: import("@webstudio-is/css-engine").StyleValue;
38857
38856
  hidden?: boolean;
38858
38857
  } | {
38859
38858
  value: string;
@@ -39926,12 +39925,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
39926
39925
  }>, z.ZodType<{
39927
39926
  type: "function";
39928
39927
  name: string;
39929
- args: StyleValue;
39928
+ args: import("@webstudio-is/css-engine").StyleValue;
39930
39929
  hidden?: boolean;
39931
39930
  }, z.ZodTypeDef, {
39932
39931
  type: "function";
39933
39932
  name: string;
39934
- args: StyleValue;
39933
+ args: import("@webstudio-is/css-engine").StyleValue;
39935
39934
  hidden?: boolean;
39936
39935
  }>, z.ZodObject<{
39937
39936
  type: z.ZodLiteral<"var">;
@@ -40084,7 +40083,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40084
40083
  } | {
40085
40084
  type: "function";
40086
40085
  name: string;
40087
- args: StyleValue;
40086
+ args: import("@webstudio-is/css-engine").StyleValue;
40088
40087
  hidden?: boolean;
40089
40088
  } | {
40090
40089
  value: string;
@@ -40145,7 +40144,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40145
40144
  } | {
40146
40145
  type: "function";
40147
40146
  name: string;
40148
- args: StyleValue;
40147
+ args: import("@webstudio-is/css-engine").StyleValue;
40149
40148
  hidden?: boolean;
40150
40149
  } | {
40151
40150
  value: string;
@@ -40381,7 +40380,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40381
40380
  } | {
40382
40381
  type: "function";
40383
40382
  name: string;
40384
- args: StyleValue;
40383
+ args: import("@webstudio-is/css-engine").StyleValue;
40385
40384
  hidden?: boolean;
40386
40385
  } | {
40387
40386
  value: string;
@@ -40442,7 +40441,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40442
40441
  } | {
40443
40442
  type: "function";
40444
40443
  name: string;
40445
- args: StyleValue;
40444
+ args: import("@webstudio-is/css-engine").StyleValue;
40446
40445
  hidden?: boolean;
40447
40446
  } | {
40448
40447
  value: string;
@@ -40823,12 +40822,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40823
40822
  }>, z.ZodType<{
40824
40823
  type: "function";
40825
40824
  name: string;
40826
- args: StyleValue;
40825
+ args: import("@webstudio-is/css-engine").StyleValue;
40827
40826
  hidden?: boolean;
40828
40827
  }, z.ZodTypeDef, {
40829
40828
  type: "function";
40830
40829
  name: string;
40831
- args: StyleValue;
40830
+ args: import("@webstudio-is/css-engine").StyleValue;
40832
40831
  hidden?: boolean;
40833
40832
  }>, z.ZodObject<{
40834
40833
  type: z.ZodLiteral<"var">;
@@ -40981,7 +40980,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
40981
40980
  } | {
40982
40981
  type: "function";
40983
40982
  name: string;
40984
- args: StyleValue;
40983
+ args: import("@webstudio-is/css-engine").StyleValue;
40985
40984
  hidden?: boolean;
40986
40985
  } | {
40987
40986
  value: string;
@@ -41045,7 +41044,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
41045
41044
  } | {
41046
41045
  type: "function";
41047
41046
  name: string;
41048
- args: StyleValue;
41047
+ args: import("@webstudio-is/css-engine").StyleValue;
41049
41048
  hidden?: boolean;
41050
41049
  } | {
41051
41050
  value: string;
@@ -41078,12 +41077,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
41078
41077
  }>, z.ZodType<{
41079
41078
  type: "function";
41080
41079
  name: string;
41081
- args: StyleValue;
41080
+ args: import("@webstudio-is/css-engine").StyleValue;
41082
41081
  hidden?: boolean;
41083
41082
  }, z.ZodTypeDef, {
41084
41083
  type: "function";
41085
41084
  name: string;
41086
- args: StyleValue;
41085
+ args: import("@webstudio-is/css-engine").StyleValue;
41087
41086
  hidden?: boolean;
41088
41087
  }>, z.ZodObject<{
41089
41088
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -42275,7 +42274,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42275
42274
  } | {
42276
42275
  type: "function";
42277
42276
  name: string;
42278
- args: StyleValue;
42277
+ args: import("@webstudio-is/css-engine").StyleValue;
42279
42278
  hidden?: boolean;
42280
42279
  } | {
42281
42280
  value: string;
@@ -42336,7 +42335,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42336
42335
  } | {
42337
42336
  type: "function";
42338
42337
  name: string;
42339
- args: StyleValue;
42338
+ args: import("@webstudio-is/css-engine").StyleValue;
42340
42339
  hidden?: boolean;
42341
42340
  } | {
42342
42341
  value: string;
@@ -42569,7 +42568,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42569
42568
  } | {
42570
42569
  type: "function";
42571
42570
  name: string;
42572
- args: StyleValue;
42571
+ args: import("@webstudio-is/css-engine").StyleValue;
42573
42572
  hidden?: boolean;
42574
42573
  } | {
42575
42574
  value: string;
@@ -42630,7 +42629,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42630
42629
  } | {
42631
42630
  type: "function";
42632
42631
  name: string;
42633
- args: StyleValue;
42632
+ args: import("@webstudio-is/css-engine").StyleValue;
42634
42633
  hidden?: boolean;
42635
42634
  } | {
42636
42635
  value: string;
@@ -42879,7 +42878,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42879
42878
  } | {
42880
42879
  type: "function";
42881
42880
  name: string;
42882
- args: StyleValue;
42881
+ args: import("@webstudio-is/css-engine").StyleValue;
42883
42882
  hidden?: boolean;
42884
42883
  } | {
42885
42884
  value: string;
@@ -42940,7 +42939,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
42940
42939
  } | {
42941
42940
  type: "function";
42942
42941
  name: string;
42943
- args: StyleValue;
42942
+ args: import("@webstudio-is/css-engine").StyleValue;
42944
42943
  hidden?: boolean;
42945
42944
  } | {
42946
42945
  value: string;
@@ -43173,7 +43172,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
43173
43172
  } | {
43174
43173
  type: "function";
43175
43174
  name: string;
43176
- args: StyleValue;
43175
+ args: import("@webstudio-is/css-engine").StyleValue;
43177
43176
  hidden?: boolean;
43178
43177
  } | {
43179
43178
  value: string;
@@ -43234,7 +43233,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
43234
43233
  } | {
43235
43234
  type: "function";
43236
43235
  name: string;
43237
- args: StyleValue;
43236
+ args: import("@webstudio-is/css-engine").StyleValue;
43238
43237
  hidden?: boolean;
43239
43238
  } | {
43240
43239
  value: string;
@@ -43682,7 +43681,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
43682
43681
  } | {
43683
43682
  type: "function";
43684
43683
  name: string;
43685
- args: StyleValue;
43684
+ args: import("@webstudio-is/css-engine").StyleValue;
43686
43685
  hidden?: boolean;
43687
43686
  } | {
43688
43687
  value: string;
@@ -43743,7 +43742,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
43743
43742
  } | {
43744
43743
  type: "function";
43745
43744
  name: string;
43746
- args: StyleValue;
43745
+ args: import("@webstudio-is/css-engine").StyleValue;
43747
43746
  hidden?: boolean;
43748
43747
  } | {
43749
43748
  value: string;
@@ -43976,7 +43975,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
43976
43975
  } | {
43977
43976
  type: "function";
43978
43977
  name: string;
43979
- args: StyleValue;
43978
+ args: import("@webstudio-is/css-engine").StyleValue;
43980
43979
  hidden?: boolean;
43981
43980
  } | {
43982
43981
  value: string;
@@ -44037,7 +44036,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44037
44036
  } | {
44038
44037
  type: "function";
44039
44038
  name: string;
44040
- args: StyleValue;
44039
+ args: import("@webstudio-is/css-engine").StyleValue;
44041
44040
  hidden?: boolean;
44042
44041
  } | {
44043
44042
  value: string;
@@ -44334,7 +44333,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44334
44333
  } | {
44335
44334
  type: "function";
44336
44335
  name: string;
44337
- args: StyleValue;
44336
+ args: import("@webstudio-is/css-engine").StyleValue;
44338
44337
  hidden?: boolean;
44339
44338
  } | {
44340
44339
  value: string;
@@ -44395,7 +44394,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44395
44394
  } | {
44396
44395
  type: "function";
44397
44396
  name: string;
44398
- args: StyleValue;
44397
+ args: import("@webstudio-is/css-engine").StyleValue;
44399
44398
  hidden?: boolean;
44400
44399
  } | {
44401
44400
  value: string;
@@ -44628,7 +44627,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44628
44627
  } | {
44629
44628
  type: "function";
44630
44629
  name: string;
44631
- args: StyleValue;
44630
+ args: import("@webstudio-is/css-engine").StyleValue;
44632
44631
  hidden?: boolean;
44633
44632
  } | {
44634
44633
  value: string;
@@ -44689,7 +44688,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44689
44688
  } | {
44690
44689
  type: "function";
44691
44690
  name: string;
44692
- args: StyleValue;
44691
+ args: import("@webstudio-is/css-engine").StyleValue;
44693
44692
  hidden?: boolean;
44694
44693
  } | {
44695
44694
  value: string;
@@ -44991,7 +44990,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
44991
44990
  } | {
44992
44991
  type: "function";
44993
44992
  name: string;
44994
- args: StyleValue;
44993
+ args: import("@webstudio-is/css-engine").StyleValue;
44995
44994
  hidden?: boolean;
44996
44995
  } | {
44997
44996
  value: string;
@@ -45052,7 +45051,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45052
45051
  } | {
45053
45052
  type: "function";
45054
45053
  name: string;
45055
- args: StyleValue;
45054
+ args: import("@webstudio-is/css-engine").StyleValue;
45056
45055
  hidden?: boolean;
45057
45056
  } | {
45058
45057
  value: string;
@@ -45285,7 +45284,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45285
45284
  } | {
45286
45285
  type: "function";
45287
45286
  name: string;
45288
- args: StyleValue;
45287
+ args: import("@webstudio-is/css-engine").StyleValue;
45289
45288
  hidden?: boolean;
45290
45289
  } | {
45291
45290
  value: string;
@@ -45346,7 +45345,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45346
45345
  } | {
45347
45346
  type: "function";
45348
45347
  name: string;
45349
- args: StyleValue;
45348
+ args: import("@webstudio-is/css-engine").StyleValue;
45350
45349
  hidden?: boolean;
45351
45350
  } | {
45352
45351
  value: string;
@@ -45650,7 +45649,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45650
45649
  } | {
45651
45650
  type: "function";
45652
45651
  name: string;
45653
- args: StyleValue;
45652
+ args: import("@webstudio-is/css-engine").StyleValue;
45654
45653
  hidden?: boolean;
45655
45654
  } | {
45656
45655
  value: string;
@@ -45711,7 +45710,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45711
45710
  } | {
45712
45711
  type: "function";
45713
45712
  name: string;
45714
- args: StyleValue;
45713
+ args: import("@webstudio-is/css-engine").StyleValue;
45715
45714
  hidden?: boolean;
45716
45715
  } | {
45717
45716
  value: string;
@@ -45944,7 +45943,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
45944
45943
  } | {
45945
45944
  type: "function";
45946
45945
  name: string;
45947
- args: StyleValue;
45946
+ args: import("@webstudio-is/css-engine").StyleValue;
45948
45947
  hidden?: boolean;
45949
45948
  } | {
45950
45949
  value: string;
@@ -46005,7 +46004,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
46005
46004
  } | {
46006
46005
  type: "function";
46007
46006
  name: string;
46008
- args: StyleValue;
46007
+ args: import("@webstudio-is/css-engine").StyleValue;
46009
46008
  hidden?: boolean;
46010
46009
  } | {
46011
46010
  value: string;
@@ -46514,12 +46513,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
46514
46513
  }>, z.ZodType<{
46515
46514
  type: "function";
46516
46515
  name: string;
46517
- args: StyleValue;
46516
+ args: import("@webstudio-is/css-engine").StyleValue;
46518
46517
  hidden?: boolean;
46519
46518
  }, z.ZodTypeDef, {
46520
46519
  type: "function";
46521
46520
  name: string;
46522
- args: StyleValue;
46521
+ args: import("@webstudio-is/css-engine").StyleValue;
46523
46522
  hidden?: boolean;
46524
46523
  }>, z.ZodObject<{
46525
46524
  type: z.ZodLiteral<"var">;
@@ -46672,7 +46671,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
46672
46671
  } | {
46673
46672
  type: "function";
46674
46673
  name: string;
46675
- args: StyleValue;
46674
+ args: import("@webstudio-is/css-engine").StyleValue;
46676
46675
  hidden?: boolean;
46677
46676
  } | {
46678
46677
  value: string;
@@ -46736,7 +46735,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
46736
46735
  } | {
46737
46736
  type: "function";
46738
46737
  name: string;
46739
- args: StyleValue;
46738
+ args: import("@webstudio-is/css-engine").StyleValue;
46740
46739
  hidden?: boolean;
46741
46740
  } | {
46742
46741
  value: string;
@@ -47809,12 +47808,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
47809
47808
  }>, z.ZodType<{
47810
47809
  type: "function";
47811
47810
  name: string;
47812
- args: StyleValue;
47811
+ args: import("@webstudio-is/css-engine").StyleValue;
47813
47812
  hidden?: boolean;
47814
47813
  }, z.ZodTypeDef, {
47815
47814
  type: "function";
47816
47815
  name: string;
47817
- args: StyleValue;
47816
+ args: import("@webstudio-is/css-engine").StyleValue;
47818
47817
  hidden?: boolean;
47819
47818
  }>, z.ZodObject<{
47820
47819
  type: z.ZodLiteral<"var">;
@@ -47967,7 +47966,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
47967
47966
  } | {
47968
47967
  type: "function";
47969
47968
  name: string;
47970
- args: StyleValue;
47969
+ args: import("@webstudio-is/css-engine").StyleValue;
47971
47970
  hidden?: boolean;
47972
47971
  } | {
47973
47972
  value: string;
@@ -48028,7 +48027,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48028
48027
  } | {
48029
48028
  type: "function";
48030
48029
  name: string;
48031
- args: StyleValue;
48030
+ args: import("@webstudio-is/css-engine").StyleValue;
48032
48031
  hidden?: boolean;
48033
48032
  } | {
48034
48033
  value: string;
@@ -48264,7 +48263,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48264
48263
  } | {
48265
48264
  type: "function";
48266
48265
  name: string;
48267
- args: StyleValue;
48266
+ args: import("@webstudio-is/css-engine").StyleValue;
48268
48267
  hidden?: boolean;
48269
48268
  } | {
48270
48269
  value: string;
@@ -48325,7 +48324,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48325
48324
  } | {
48326
48325
  type: "function";
48327
48326
  name: string;
48328
- args: StyleValue;
48327
+ args: import("@webstudio-is/css-engine").StyleValue;
48329
48328
  hidden?: boolean;
48330
48329
  } | {
48331
48330
  value: string;
@@ -48706,12 +48705,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48706
48705
  }>, z.ZodType<{
48707
48706
  type: "function";
48708
48707
  name: string;
48709
- args: StyleValue;
48708
+ args: import("@webstudio-is/css-engine").StyleValue;
48710
48709
  hidden?: boolean;
48711
48710
  }, z.ZodTypeDef, {
48712
48711
  type: "function";
48713
48712
  name: string;
48714
- args: StyleValue;
48713
+ args: import("@webstudio-is/css-engine").StyleValue;
48715
48714
  hidden?: boolean;
48716
48715
  }>, z.ZodObject<{
48717
48716
  type: z.ZodLiteral<"var">;
@@ -48864,7 +48863,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48864
48863
  } | {
48865
48864
  type: "function";
48866
48865
  name: string;
48867
- args: StyleValue;
48866
+ args: import("@webstudio-is/css-engine").StyleValue;
48868
48867
  hidden?: boolean;
48869
48868
  } | {
48870
48869
  value: string;
@@ -48928,7 +48927,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48928
48927
  } | {
48929
48928
  type: "function";
48930
48929
  name: string;
48931
- args: StyleValue;
48930
+ args: import("@webstudio-is/css-engine").StyleValue;
48932
48931
  hidden?: boolean;
48933
48932
  } | {
48934
48933
  value: string;
@@ -48961,12 +48960,12 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
48961
48960
  }>, z.ZodType<{
48962
48961
  type: "function";
48963
48962
  name: string;
48964
- args: StyleValue;
48963
+ args: import("@webstudio-is/css-engine").StyleValue;
48965
48964
  hidden?: boolean;
48966
48965
  }, z.ZodTypeDef, {
48967
48966
  type: "function";
48968
48967
  name: string;
48969
- args: StyleValue;
48968
+ args: import("@webstudio-is/css-engine").StyleValue;
48970
48969
  hidden?: boolean;
48971
48970
  }>, z.ZodObject<{
48972
48971
  type: z.ZodLiteral<"guaranteedInvalid">;
@@ -50158,7 +50157,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50158
50157
  } | {
50159
50158
  type: "function";
50160
50159
  name: string;
50161
- args: StyleValue;
50160
+ args: import("@webstudio-is/css-engine").StyleValue;
50162
50161
  hidden?: boolean;
50163
50162
  } | {
50164
50163
  value: string;
@@ -50219,7 +50218,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50219
50218
  } | {
50220
50219
  type: "function";
50221
50220
  name: string;
50222
- args: StyleValue;
50221
+ args: import("@webstudio-is/css-engine").StyleValue;
50223
50222
  hidden?: boolean;
50224
50223
  } | {
50225
50224
  value: string;
@@ -50452,7 +50451,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50452
50451
  } | {
50453
50452
  type: "function";
50454
50453
  name: string;
50455
- args: StyleValue;
50454
+ args: import("@webstudio-is/css-engine").StyleValue;
50456
50455
  hidden?: boolean;
50457
50456
  } | {
50458
50457
  value: string;
@@ -50513,7 +50512,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50513
50512
  } | {
50514
50513
  type: "function";
50515
50514
  name: string;
50516
- args: StyleValue;
50515
+ args: import("@webstudio-is/css-engine").StyleValue;
50517
50516
  hidden?: boolean;
50518
50517
  } | {
50519
50518
  value: string;
@@ -50762,7 +50761,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50762
50761
  } | {
50763
50762
  type: "function";
50764
50763
  name: string;
50765
- args: StyleValue;
50764
+ args: import("@webstudio-is/css-engine").StyleValue;
50766
50765
  hidden?: boolean;
50767
50766
  } | {
50768
50767
  value: string;
@@ -50823,7 +50822,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
50823
50822
  } | {
50824
50823
  type: "function";
50825
50824
  name: string;
50826
- args: StyleValue;
50825
+ args: import("@webstudio-is/css-engine").StyleValue;
50827
50826
  hidden?: boolean;
50828
50827
  } | {
50829
50828
  value: string;
@@ -51056,7 +51055,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51056
51055
  } | {
51057
51056
  type: "function";
51058
51057
  name: string;
51059
- args: StyleValue;
51058
+ args: import("@webstudio-is/css-engine").StyleValue;
51060
51059
  hidden?: boolean;
51061
51060
  } | {
51062
51061
  value: string;
@@ -51117,7 +51116,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51117
51116
  } | {
51118
51117
  type: "function";
51119
51118
  name: string;
51120
- args: StyleValue;
51119
+ args: import("@webstudio-is/css-engine").StyleValue;
51121
51120
  hidden?: boolean;
51122
51121
  } | {
51123
51122
  value: string;
@@ -51565,7 +51564,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51565
51564
  } | {
51566
51565
  type: "function";
51567
51566
  name: string;
51568
- args: StyleValue;
51567
+ args: import("@webstudio-is/css-engine").StyleValue;
51569
51568
  hidden?: boolean;
51570
51569
  } | {
51571
51570
  value: string;
@@ -51626,7 +51625,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51626
51625
  } | {
51627
51626
  type: "function";
51628
51627
  name: string;
51629
- args: StyleValue;
51628
+ args: import("@webstudio-is/css-engine").StyleValue;
51630
51629
  hidden?: boolean;
51631
51630
  } | {
51632
51631
  value: string;
@@ -51859,7 +51858,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51859
51858
  } | {
51860
51859
  type: "function";
51861
51860
  name: string;
51862
- args: StyleValue;
51861
+ args: import("@webstudio-is/css-engine").StyleValue;
51863
51862
  hidden?: boolean;
51864
51863
  } | {
51865
51864
  value: string;
@@ -51920,7 +51919,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
51920
51919
  } | {
51921
51920
  type: "function";
51922
51921
  name: string;
51923
- args: StyleValue;
51922
+ args: import("@webstudio-is/css-engine").StyleValue;
51924
51923
  hidden?: boolean;
51925
51924
  } | {
51926
51925
  value: string;
@@ -52217,7 +52216,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
52217
52216
  } | {
52218
52217
  type: "function";
52219
52218
  name: string;
52220
- args: StyleValue;
52219
+ args: import("@webstudio-is/css-engine").StyleValue;
52221
52220
  hidden?: boolean;
52222
52221
  } | {
52223
52222
  value: string;
@@ -52278,7 +52277,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
52278
52277
  } | {
52279
52278
  type: "function";
52280
52279
  name: string;
52281
- args: StyleValue;
52280
+ args: import("@webstudio-is/css-engine").StyleValue;
52282
52281
  hidden?: boolean;
52283
52282
  } | {
52284
52283
  value: string;
@@ -52511,7 +52510,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
52511
52510
  } | {
52512
52511
  type: "function";
52513
52512
  name: string;
52514
- args: StyleValue;
52513
+ args: import("@webstudio-is/css-engine").StyleValue;
52515
52514
  hidden?: boolean;
52516
52515
  } | {
52517
52516
  value: string;
@@ -52572,7 +52571,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
52572
52571
  } | {
52573
52572
  type: "function";
52574
52573
  name: string;
52575
- args: StyleValue;
52574
+ args: import("@webstudio-is/css-engine").StyleValue;
52576
52575
  hidden?: boolean;
52577
52576
  } | {
52578
52577
  value: string;
@@ -52954,7 +52953,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
52954
52953
  } | {
52955
52954
  type: "function";
52956
52955
  name: string;
52957
- args: StyleValue;
52956
+ args: import("@webstudio-is/css-engine").StyleValue;
52958
52957
  hidden?: boolean;
52959
52958
  } | {
52960
52959
  value: string;
@@ -53015,7 +53014,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53015
53014
  } | {
53016
53015
  type: "function";
53017
53016
  name: string;
53018
- args: StyleValue;
53017
+ args: import("@webstudio-is/css-engine").StyleValue;
53019
53018
  hidden?: boolean;
53020
53019
  } | {
53021
53020
  value: string;
@@ -53248,7 +53247,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53248
53247
  } | {
53249
53248
  type: "function";
53250
53249
  name: string;
53251
- args: StyleValue;
53250
+ args: import("@webstudio-is/css-engine").StyleValue;
53252
53251
  hidden?: boolean;
53253
53252
  } | {
53254
53253
  value: string;
@@ -53309,7 +53308,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53309
53308
  } | {
53310
53309
  type: "function";
53311
53310
  name: string;
53312
- args: StyleValue;
53311
+ args: import("@webstudio-is/css-engine").StyleValue;
53313
53312
  hidden?: boolean;
53314
53313
  } | {
53315
53314
  value: string;
@@ -53641,7 +53640,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53641
53640
  } | {
53642
53641
  type: "function";
53643
53642
  name: string;
53644
- args: StyleValue;
53643
+ args: import("@webstudio-is/css-engine").StyleValue;
53645
53644
  hidden?: boolean;
53646
53645
  } | {
53647
53646
  value: string;
@@ -53702,7 +53701,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53702
53701
  } | {
53703
53702
  type: "function";
53704
53703
  name: string;
53705
- args: StyleValue;
53704
+ args: import("@webstudio-is/css-engine").StyleValue;
53706
53705
  hidden?: boolean;
53707
53706
  } | {
53708
53707
  value: string;
@@ -53935,7 +53934,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53935
53934
  } | {
53936
53935
  type: "function";
53937
53936
  name: string;
53938
- args: StyleValue;
53937
+ args: import("@webstudio-is/css-engine").StyleValue;
53939
53938
  hidden?: boolean;
53940
53939
  } | {
53941
53940
  value: string;
@@ -53996,7 +53995,7 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
53996
53995
  } | {
53997
53996
  type: "function";
53998
53997
  name: string;
53999
- args: StyleValue;
53998
+ args: import("@webstudio-is/css-engine").StyleValue;
54000
53999
  hidden?: boolean;
54001
54000
  } | {
54002
54001
  value: string;
@@ -54292,22 +54291,22 @@ export declare const animationActionSchema: z.ZodDiscriminatedUnion<"type", [z.Z
54292
54291
  type: "keyword";
54293
54292
  } | undefined;
54294
54293
  }>]>;
54295
- export declare const isRangeUnit: (value: unknown) => value is z.infer<typeof rangeUnitSchema>;
54296
- export type RangeUnit = z.infer<typeof rangeUnitSchema>;
54297
- export type RangeUnitValue = z.infer<typeof rangeUnitValueSchema>;
54298
- export type DurationUnitValue = z.infer<typeof durationUnitValueSchema>;
54299
- export type IterationsUnitValue = z.infer<typeof iterationsUnitValueSchema>;
54300
- export type TimeUnit = z.infer<typeof timeUnitSchema>;
54301
- export type KeyframeStyles = z.infer<typeof keyframeStylesSchema>;
54302
- export type AnimationKeyframe = z.infer<typeof animationKeyframeSchema>;
54303
- export type ScrollNamedRange = z.infer<typeof scrollNamedRangeSchema>;
54304
- export type ScrollRangeValue = z.infer<typeof scrollRangeValueSchema>;
54305
- export type ViewNamedRange = z.infer<typeof viewNamedRangeSchema>;
54306
- export type ViewRangeValue = z.infer<typeof viewRangeValueSchema>;
54307
- export type AnimationActionScroll = z.infer<typeof scrollActionSchema>;
54308
- export type AnimationActionView = z.infer<typeof viewActionSchema>;
54309
- export type AnimationAction = z.infer<typeof animationActionSchema>;
54310
- export type ScrollAnimation = z.infer<typeof scrollAnimationSchema>;
54311
- export type ViewAnimation = z.infer<typeof viewAnimationSchema>;
54312
- export type InsetUnitValue = z.infer<typeof insetUnitValueSchema>;
54294
+ export declare const isRangeUnit: (value: unknown) => value is z.infer<typeof rangeUnit>;
54295
+ export type RangeUnit = z.infer<typeof rangeUnit>;
54296
+ export type RangeUnitValue = z.infer<typeof rangeUnitValue>;
54297
+ export type DurationUnitValue = z.infer<typeof durationUnitValue>;
54298
+ export type IterationsUnitValue = z.infer<typeof iterationsUnitValue>;
54299
+ export type TimeUnit = z.infer<typeof timeUnit>;
54300
+ export type KeyframeStyles = z.infer<typeof keyframeStyles>;
54301
+ export type AnimationKeyframe = z.infer<typeof animationKeyframe>;
54302
+ export type ScrollNamedRange = z.infer<typeof scrollNamedRange>;
54303
+ export type ScrollRangeValue = z.infer<typeof scrollRangeValue>;
54304
+ export type ViewNamedRange = z.infer<typeof viewNamedRange>;
54305
+ export type ViewRangeValue = z.infer<typeof viewRangeValue>;
54306
+ export type AnimationActionScroll = z.infer<typeof scrollAction>;
54307
+ export type AnimationActionView = z.infer<typeof viewAction>;
54308
+ export type AnimationAction = z.infer<typeof animationAction>;
54309
+ export type ScrollAnimation = z.infer<typeof scrollAnimation>;
54310
+ export type ViewAnimation = z.infer<typeof viewAnimation>;
54311
+ export type InsetUnitValue = z.infer<typeof insetUnitValue>;
54313
54312
  export {};