motion-v 0.13.0-beta.3 → 0.13.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -4730,7 +4730,8 @@ function handlePressEvent(state2, event, lifecycle) {
4730
4730
  }
4731
4731
  class PressGesture extends Feature {
4732
4732
  isActive() {
4733
- return Boolean(this.state.options.whilePress);
4733
+ const { whilePress, onPress, onPressCancel, onPressStart } = this.state.options;
4734
+ return Boolean(whilePress || onPress || onPressCancel || onPressStart);
4734
4735
  }
4735
4736
  constructor(state2) {
4736
4737
  super(state2);
@@ -41,8 +41,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
41
41
  as: string;
42
42
  axis: string;
43
43
  }>>>, {
44
- axis: "x" | "y";
45
44
  as: keyof import('vue').IntrinsicElementAttributes;
45
+ axis: "x" | "y";
46
46
  }, {}>, {
47
47
  default?(_: {}): any;
48
48
  }>;
@@ -1,13 +1,5 @@
1
1
  export declare const ReorderGroup: {
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
3
- axis: {
4
- type: import('vue').PropType<"x" | "y">;
5
- default: string;
6
- };
7
- values: {
8
- type: import('vue').PropType<unknown[]>;
9
- required: true;
10
- };
11
3
  layout: {
12
4
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
13
5
  };
@@ -31,6 +23,10 @@ export declare const ReorderGroup: {
31
23
  once?: boolean;
32
24
  }>;
33
25
  };
26
+ values: {
27
+ type: import('vue').PropType<unknown[]>;
28
+ required: true;
29
+ };
34
30
  dragSnapToOrigin: {
35
31
  type: import('vue').PropType<boolean>;
36
32
  };
@@ -89,22 +85,20 @@ export declare const ReorderGroup: {
89
85
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
90
86
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
91
87
  string?: string | number | import('motion-dom').MotionValue<any>;
92
- container?: string | number | import('motion-dom').MotionValue<any>;
93
- offset?: string | number | import('motion-dom').MotionValue<any>;
94
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
95
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
96
- filter?: string | number | import('motion-dom').MotionValue<any>;
97
- fill?: string | number | import('motion-dom').MotionValue<any>;
98
- values?: string | number | import('motion-dom').MotionValue<any>;
99
88
  end?: string | number | import('motion-dom').MotionValue<any>;
100
89
  x?: string | number | import('motion-dom').MotionValue<any>;
101
90
  y?: string | number | import('motion-dom').MotionValue<any>;
102
91
  position?: string | number | import('motion-dom').MotionValue<any>;
103
92
  page?: string | number | import('motion-dom').MotionValue<any>;
93
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
104
94
  top?: string | number | import('motion-dom').MotionValue<any>;
105
95
  right?: string | number | import('motion-dom').MotionValue<any>;
106
96
  bottom?: string | number | import('motion-dom').MotionValue<any>;
107
97
  left?: string | number | import('motion-dom').MotionValue<any>;
98
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
99
+ filter?: string | number | import('motion-dom').MotionValue<any>;
100
+ fill?: string | number | import('motion-dom').MotionValue<any>;
101
+ values?: string | number | import('motion-dom').MotionValue<any>;
108
102
  all?: string | number | import('motion-dom').MotionValue<any>;
109
103
  clear?: string | number | import('motion-dom').MotionValue<any>;
110
104
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -116,6 +110,7 @@ export declare const ReorderGroup: {
116
110
  from?: string | number | import('motion-dom').MotionValue<any>;
117
111
  resize?: string | number | import('motion-dom').MotionValue<any>;
118
112
  transform?: string | number | import('motion-dom').MotionValue<any>;
113
+ offset?: string | number | import('motion-dom').MotionValue<any>;
119
114
  direction?: string | number | import('motion-dom').MotionValue<any>;
120
115
  z?: string | number | import('motion-dom').MotionValue<any>;
121
116
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -243,6 +238,7 @@ export declare const ReorderGroup: {
243
238
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
244
239
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
245
240
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
241
+ container?: string | number | import('motion-dom').MotionValue<any>;
246
242
  containerName?: string | number | import('motion-dom').MotionValue<any>;
247
243
  containerType?: string | number | import('motion-dom').MotionValue<any>;
248
244
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -908,18 +904,14 @@ export declare const ReorderGroup: {
908
904
  asChild: {
909
905
  type: import('vue').PropType<boolean>;
910
906
  };
911
- 'onUpdate:values': {
912
- type: import('vue').PropType<(newOrder: unknown[]) => void>;
913
- };
914
- }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
915
907
  axis: {
916
908
  type: import('vue').PropType<"x" | "y">;
917
909
  default: string;
918
910
  };
919
- values: {
920
- type: import('vue').PropType<unknown[]>;
921
- required: true;
911
+ 'onUpdate:values': {
912
+ type: import('vue').PropType<(newOrder: unknown[]) => void>;
922
913
  };
914
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
923
915
  layout: {
924
916
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
925
917
  };
@@ -943,6 +935,10 @@ export declare const ReorderGroup: {
943
935
  once?: boolean;
944
936
  }>;
945
937
  };
938
+ values: {
939
+ type: import('vue').PropType<unknown[]>;
940
+ required: true;
941
+ };
946
942
  dragSnapToOrigin: {
947
943
  type: import('vue').PropType<boolean>;
948
944
  };
@@ -1001,22 +997,20 @@ export declare const ReorderGroup: {
1001
997
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
1002
998
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
1003
999
  string?: string | number | import('motion-dom').MotionValue<any>;
1004
- container?: string | number | import('motion-dom').MotionValue<any>;
1005
- offset?: string | number | import('motion-dom').MotionValue<any>;
1006
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
1007
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
1008
- filter?: string | number | import('motion-dom').MotionValue<any>;
1009
- fill?: string | number | import('motion-dom').MotionValue<any>;
1010
- values?: string | number | import('motion-dom').MotionValue<any>;
1011
1000
  end?: string | number | import('motion-dom').MotionValue<any>;
1012
1001
  x?: string | number | import('motion-dom').MotionValue<any>;
1013
1002
  y?: string | number | import('motion-dom').MotionValue<any>;
1014
1003
  position?: string | number | import('motion-dom').MotionValue<any>;
1015
1004
  page?: string | number | import('motion-dom').MotionValue<any>;
1005
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
1016
1006
  top?: string | number | import('motion-dom').MotionValue<any>;
1017
1007
  right?: string | number | import('motion-dom').MotionValue<any>;
1018
1008
  bottom?: string | number | import('motion-dom').MotionValue<any>;
1019
1009
  left?: string | number | import('motion-dom').MotionValue<any>;
1010
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
1011
+ filter?: string | number | import('motion-dom').MotionValue<any>;
1012
+ fill?: string | number | import('motion-dom').MotionValue<any>;
1013
+ values?: string | number | import('motion-dom').MotionValue<any>;
1020
1014
  all?: string | number | import('motion-dom').MotionValue<any>;
1021
1015
  clear?: string | number | import('motion-dom').MotionValue<any>;
1022
1016
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -1028,6 +1022,7 @@ export declare const ReorderGroup: {
1028
1022
  from?: string | number | import('motion-dom').MotionValue<any>;
1029
1023
  resize?: string | number | import('motion-dom').MotionValue<any>;
1030
1024
  transform?: string | number | import('motion-dom').MotionValue<any>;
1025
+ offset?: string | number | import('motion-dom').MotionValue<any>;
1031
1026
  direction?: string | number | import('motion-dom').MotionValue<any>;
1032
1027
  z?: string | number | import('motion-dom').MotionValue<any>;
1033
1028
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -1155,6 +1150,7 @@ export declare const ReorderGroup: {
1155
1150
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
1156
1151
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
1157
1152
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
1153
+ container?: string | number | import('motion-dom').MotionValue<any>;
1158
1154
  containerName?: string | number | import('motion-dom').MotionValue<any>;
1159
1155
  containerType?: string | number | import('motion-dom').MotionValue<any>;
1160
1156
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -1820,12 +1816,16 @@ export declare const ReorderGroup: {
1820
1816
  asChild: {
1821
1817
  type: import('vue').PropType<boolean>;
1822
1818
  };
1819
+ axis: {
1820
+ type: import('vue').PropType<"x" | "y">;
1821
+ default: string;
1822
+ };
1823
1823
  'onUpdate:values': {
1824
1824
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
1825
1825
  };
1826
1826
  }>>, {
1827
- axis: "x" | "y";
1828
1827
  as: keyof import('vue').IntrinsicElementAttributes;
1828
+ axis: "x" | "y";
1829
1829
  }, true, {}, {}, {
1830
1830
  P: {};
1831
1831
  B: {};
@@ -1834,14 +1834,6 @@ export declare const ReorderGroup: {
1834
1834
  M: {};
1835
1835
  Defaults: {};
1836
1836
  }, Readonly<import('vue').ExtractPropTypes<{
1837
- axis: {
1838
- type: import('vue').PropType<"x" | "y">;
1839
- default: string;
1840
- };
1841
- values: {
1842
- type: import('vue').PropType<unknown[]>;
1843
- required: true;
1844
- };
1845
1837
  layout: {
1846
1838
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
1847
1839
  };
@@ -1865,6 +1857,10 @@ export declare const ReorderGroup: {
1865
1857
  once?: boolean;
1866
1858
  }>;
1867
1859
  };
1860
+ values: {
1861
+ type: import('vue').PropType<unknown[]>;
1862
+ required: true;
1863
+ };
1868
1864
  dragSnapToOrigin: {
1869
1865
  type: import('vue').PropType<boolean>;
1870
1866
  };
@@ -1923,22 +1919,20 @@ export declare const ReorderGroup: {
1923
1919
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
1924
1920
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
1925
1921
  string?: string | number | import('motion-dom').MotionValue<any>;
1926
- container?: string | number | import('motion-dom').MotionValue<any>;
1927
- offset?: string | number | import('motion-dom').MotionValue<any>;
1928
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
1929
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
1930
- filter?: string | number | import('motion-dom').MotionValue<any>;
1931
- fill?: string | number | import('motion-dom').MotionValue<any>;
1932
- values?: string | number | import('motion-dom').MotionValue<any>;
1933
1922
  end?: string | number | import('motion-dom').MotionValue<any>;
1934
1923
  x?: string | number | import('motion-dom').MotionValue<any>;
1935
1924
  y?: string | number | import('motion-dom').MotionValue<any>;
1936
1925
  position?: string | number | import('motion-dom').MotionValue<any>;
1937
1926
  page?: string | number | import('motion-dom').MotionValue<any>;
1927
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
1938
1928
  top?: string | number | import('motion-dom').MotionValue<any>;
1939
1929
  right?: string | number | import('motion-dom').MotionValue<any>;
1940
1930
  bottom?: string | number | import('motion-dom').MotionValue<any>;
1941
1931
  left?: string | number | import('motion-dom').MotionValue<any>;
1932
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
1933
+ filter?: string | number | import('motion-dom').MotionValue<any>;
1934
+ fill?: string | number | import('motion-dom').MotionValue<any>;
1935
+ values?: string | number | import('motion-dom').MotionValue<any>;
1942
1936
  all?: string | number | import('motion-dom').MotionValue<any>;
1943
1937
  clear?: string | number | import('motion-dom').MotionValue<any>;
1944
1938
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -1950,6 +1944,7 @@ export declare const ReorderGroup: {
1950
1944
  from?: string | number | import('motion-dom').MotionValue<any>;
1951
1945
  resize?: string | number | import('motion-dom').MotionValue<any>;
1952
1946
  transform?: string | number | import('motion-dom').MotionValue<any>;
1947
+ offset?: string | number | import('motion-dom').MotionValue<any>;
1953
1948
  direction?: string | number | import('motion-dom').MotionValue<any>;
1954
1949
  z?: string | number | import('motion-dom').MotionValue<any>;
1955
1950
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -2077,6 +2072,7 @@ export declare const ReorderGroup: {
2077
2072
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
2078
2073
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
2079
2074
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
2075
+ container?: string | number | import('motion-dom').MotionValue<any>;
2080
2076
  containerName?: string | number | import('motion-dom').MotionValue<any>;
2081
2077
  containerType?: string | number | import('motion-dom').MotionValue<any>;
2082
2078
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -2742,25 +2738,21 @@ export declare const ReorderGroup: {
2742
2738
  asChild: {
2743
2739
  type: import('vue').PropType<boolean>;
2744
2740
  };
2741
+ axis: {
2742
+ type: import('vue').PropType<"x" | "y">;
2743
+ default: string;
2744
+ };
2745
2745
  'onUpdate:values': {
2746
2746
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
2747
2747
  };
2748
2748
  }>>, {}, {}, {}, {}, {
2749
- axis: "x" | "y";
2750
2749
  as: keyof import('vue').IntrinsicElementAttributes;
2750
+ axis: "x" | "y";
2751
2751
  }>;
2752
2752
  __isFragment?: never;
2753
2753
  __isTeleport?: never;
2754
2754
  __isSuspense?: never;
2755
2755
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
2756
- axis: {
2757
- type: import('vue').PropType<"x" | "y">;
2758
- default: string;
2759
- };
2760
- values: {
2761
- type: import('vue').PropType<unknown[]>;
2762
- required: true;
2763
- };
2764
2756
  layout: {
2765
2757
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
2766
2758
  };
@@ -2784,6 +2776,10 @@ export declare const ReorderGroup: {
2784
2776
  once?: boolean;
2785
2777
  }>;
2786
2778
  };
2779
+ values: {
2780
+ type: import('vue').PropType<unknown[]>;
2781
+ required: true;
2782
+ };
2787
2783
  dragSnapToOrigin: {
2788
2784
  type: import('vue').PropType<boolean>;
2789
2785
  };
@@ -2842,22 +2838,20 @@ export declare const ReorderGroup: {
2842
2838
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
2843
2839
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
2844
2840
  string?: string | number | import('motion-dom').MotionValue<any>;
2845
- container?: string | number | import('motion-dom').MotionValue<any>;
2846
- offset?: string | number | import('motion-dom').MotionValue<any>;
2847
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
2848
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
2849
- filter?: string | number | import('motion-dom').MotionValue<any>;
2850
- fill?: string | number | import('motion-dom').MotionValue<any>;
2851
- values?: string | number | import('motion-dom').MotionValue<any>;
2852
2841
  end?: string | number | import('motion-dom').MotionValue<any>;
2853
2842
  x?: string | number | import('motion-dom').MotionValue<any>;
2854
2843
  y?: string | number | import('motion-dom').MotionValue<any>;
2855
2844
  position?: string | number | import('motion-dom').MotionValue<any>;
2856
2845
  page?: string | number | import('motion-dom').MotionValue<any>;
2846
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
2857
2847
  top?: string | number | import('motion-dom').MotionValue<any>;
2858
2848
  right?: string | number | import('motion-dom').MotionValue<any>;
2859
2849
  bottom?: string | number | import('motion-dom').MotionValue<any>;
2860
2850
  left?: string | number | import('motion-dom').MotionValue<any>;
2851
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
2852
+ filter?: string | number | import('motion-dom').MotionValue<any>;
2853
+ fill?: string | number | import('motion-dom').MotionValue<any>;
2854
+ values?: string | number | import('motion-dom').MotionValue<any>;
2861
2855
  all?: string | number | import('motion-dom').MotionValue<any>;
2862
2856
  clear?: string | number | import('motion-dom').MotionValue<any>;
2863
2857
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -2869,6 +2863,7 @@ export declare const ReorderGroup: {
2869
2863
  from?: string | number | import('motion-dom').MotionValue<any>;
2870
2864
  resize?: string | number | import('motion-dom').MotionValue<any>;
2871
2865
  transform?: string | number | import('motion-dom').MotionValue<any>;
2866
+ offset?: string | number | import('motion-dom').MotionValue<any>;
2872
2867
  direction?: string | number | import('motion-dom').MotionValue<any>;
2873
2868
  z?: string | number | import('motion-dom').MotionValue<any>;
2874
2869
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -2996,6 +2991,7 @@ export declare const ReorderGroup: {
2996
2991
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
2997
2992
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
2998
2993
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
2994
+ container?: string | number | import('motion-dom').MotionValue<any>;
2999
2995
  containerName?: string | number | import('motion-dom').MotionValue<any>;
3000
2996
  containerType?: string | number | import('motion-dom').MotionValue<any>;
3001
2997
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -3661,12 +3657,16 @@ export declare const ReorderGroup: {
3661
3657
  asChild: {
3662
3658
  type: import('vue').PropType<boolean>;
3663
3659
  };
3660
+ axis: {
3661
+ type: import('vue').PropType<"x" | "y">;
3662
+ default: string;
3663
+ };
3664
3664
  'onUpdate:values': {
3665
3665
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
3666
3666
  };
3667
3667
  }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
3668
- axis: "x" | "y";
3669
3668
  as: keyof import('vue').IntrinsicElementAttributes;
3669
+ axis: "x" | "y";
3670
3670
  }, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
3671
3671
  $slots: {
3672
3672
  default?(_: {}): any;
@@ -3706,22 +3706,20 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
3706
3706
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
3707
3707
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
3708
3708
  string?: string | number | import('motion-dom').MotionValue<any>;
3709
- container?: string | number | import('motion-dom').MotionValue<any>;
3710
- offset?: string | number | import('motion-dom').MotionValue<any>;
3711
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
3712
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
3713
- filter?: string | number | import('motion-dom').MotionValue<any>;
3714
- fill?: string | number | import('motion-dom').MotionValue<any>;
3715
- values?: string | number | import('motion-dom').MotionValue<any>;
3716
3709
  end?: string | number | import('motion-dom').MotionValue<any>;
3717
3710
  x?: string | number | import('motion-dom').MotionValue<any>;
3718
3711
  y?: string | number | import('motion-dom').MotionValue<any>;
3719
3712
  position?: string | number | import('motion-dom').MotionValue<any>;
3720
3713
  page?: string | number | import('motion-dom').MotionValue<any>;
3714
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
3721
3715
  top?: string | number | import('motion-dom').MotionValue<any>;
3722
3716
  right?: string | number | import('motion-dom').MotionValue<any>;
3723
3717
  bottom?: string | number | import('motion-dom').MotionValue<any>;
3724
3718
  left?: string | number | import('motion-dom').MotionValue<any>;
3719
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
3720
+ filter?: string | number | import('motion-dom').MotionValue<any>;
3721
+ fill?: string | number | import('motion-dom').MotionValue<any>;
3722
+ values?: string | number | import('motion-dom').MotionValue<any>;
3725
3723
  all?: string | number | import('motion-dom').MotionValue<any>;
3726
3724
  clear?: string | number | import('motion-dom').MotionValue<any>;
3727
3725
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -3733,6 +3731,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
3733
3731
  from?: string | number | import('motion-dom').MotionValue<any>;
3734
3732
  resize?: string | number | import('motion-dom').MotionValue<any>;
3735
3733
  transform?: string | number | import('motion-dom').MotionValue<any>;
3734
+ offset?: string | number | import('motion-dom').MotionValue<any>;
3736
3735
  direction?: string | number | import('motion-dom').MotionValue<any>;
3737
3736
  z?: string | number | import('motion-dom').MotionValue<any>;
3738
3737
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -3860,6 +3859,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
3860
3859
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
3861
3860
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
3862
3861
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
3862
+ container?: string | number | import('motion-dom').MotionValue<any>;
3863
3863
  containerName?: string | number | import('motion-dom').MotionValue<any>;
3864
3864
  containerType?: string | number | import('motion-dom').MotionValue<any>;
3865
3865
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -4471,14 +4471,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
4471
4471
  export declare const Reorder: {
4472
4472
  Group: {
4473
4473
  new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
4474
- axis: {
4475
- type: import('vue').PropType<"x" | "y">;
4476
- default: string;
4477
- };
4478
- values: {
4479
- type: import('vue').PropType<unknown[]>;
4480
- required: true;
4481
- };
4482
4474
  layout: {
4483
4475
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
4484
4476
  };
@@ -4502,6 +4494,10 @@ export declare const Reorder: {
4502
4494
  once?: boolean;
4503
4495
  }>;
4504
4496
  };
4497
+ values: {
4498
+ type: import('vue').PropType<unknown[]>;
4499
+ required: true;
4500
+ };
4505
4501
  dragSnapToOrigin: {
4506
4502
  type: import('vue').PropType<boolean>;
4507
4503
  };
@@ -4560,22 +4556,20 @@ export declare const Reorder: {
4560
4556
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
4561
4557
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
4562
4558
  string?: string | number | import('motion-dom').MotionValue<any>;
4563
- container?: string | number | import('motion-dom').MotionValue<any>;
4564
- offset?: string | number | import('motion-dom').MotionValue<any>;
4565
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
4566
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
4567
- filter?: string | number | import('motion-dom').MotionValue<any>;
4568
- fill?: string | number | import('motion-dom').MotionValue<any>;
4569
- values?: string | number | import('motion-dom').MotionValue<any>;
4570
4559
  end?: string | number | import('motion-dom').MotionValue<any>;
4571
4560
  x?: string | number | import('motion-dom').MotionValue<any>;
4572
4561
  y?: string | number | import('motion-dom').MotionValue<any>;
4573
4562
  position?: string | number | import('motion-dom').MotionValue<any>;
4574
4563
  page?: string | number | import('motion-dom').MotionValue<any>;
4564
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
4575
4565
  top?: string | number | import('motion-dom').MotionValue<any>;
4576
4566
  right?: string | number | import('motion-dom').MotionValue<any>;
4577
4567
  bottom?: string | number | import('motion-dom').MotionValue<any>;
4578
4568
  left?: string | number | import('motion-dom').MotionValue<any>;
4569
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
4570
+ filter?: string | number | import('motion-dom').MotionValue<any>;
4571
+ fill?: string | number | import('motion-dom').MotionValue<any>;
4572
+ values?: string | number | import('motion-dom').MotionValue<any>;
4579
4573
  all?: string | number | import('motion-dom').MotionValue<any>;
4580
4574
  clear?: string | number | import('motion-dom').MotionValue<any>;
4581
4575
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -4587,6 +4581,7 @@ export declare const Reorder: {
4587
4581
  from?: string | number | import('motion-dom').MotionValue<any>;
4588
4582
  resize?: string | number | import('motion-dom').MotionValue<any>;
4589
4583
  transform?: string | number | import('motion-dom').MotionValue<any>;
4584
+ offset?: string | number | import('motion-dom').MotionValue<any>;
4590
4585
  direction?: string | number | import('motion-dom').MotionValue<any>;
4591
4586
  z?: string | number | import('motion-dom').MotionValue<any>;
4592
4587
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -4714,6 +4709,7 @@ export declare const Reorder: {
4714
4709
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
4715
4710
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
4716
4711
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
4712
+ container?: string | number | import('motion-dom').MotionValue<any>;
4717
4713
  containerName?: string | number | import('motion-dom').MotionValue<any>;
4718
4714
  containerType?: string | number | import('motion-dom').MotionValue<any>;
4719
4715
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -5379,18 +5375,14 @@ export declare const Reorder: {
5379
5375
  asChild: {
5380
5376
  type: import('vue').PropType<boolean>;
5381
5377
  };
5382
- 'onUpdate:values': {
5383
- type: import('vue').PropType<(newOrder: unknown[]) => void>;
5384
- };
5385
- }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
5386
5378
  axis: {
5387
5379
  type: import('vue').PropType<"x" | "y">;
5388
5380
  default: string;
5389
5381
  };
5390
- values: {
5391
- type: import('vue').PropType<unknown[]>;
5392
- required: true;
5382
+ 'onUpdate:values': {
5383
+ type: import('vue').PropType<(newOrder: unknown[]) => void>;
5393
5384
  };
5385
+ }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
5394
5386
  layout: {
5395
5387
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
5396
5388
  };
@@ -5414,6 +5406,10 @@ export declare const Reorder: {
5414
5406
  once?: boolean;
5415
5407
  }>;
5416
5408
  };
5409
+ values: {
5410
+ type: import('vue').PropType<unknown[]>;
5411
+ required: true;
5412
+ };
5417
5413
  dragSnapToOrigin: {
5418
5414
  type: import('vue').PropType<boolean>;
5419
5415
  };
@@ -5472,22 +5468,20 @@ export declare const Reorder: {
5472
5468
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
5473
5469
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
5474
5470
  string?: string | number | import('motion-dom').MotionValue<any>;
5475
- container?: string | number | import('motion-dom').MotionValue<any>;
5476
- offset?: string | number | import('motion-dom').MotionValue<any>;
5477
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
5478
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
5479
- filter?: string | number | import('motion-dom').MotionValue<any>;
5480
- fill?: string | number | import('motion-dom').MotionValue<any>;
5481
- values?: string | number | import('motion-dom').MotionValue<any>;
5482
5471
  end?: string | number | import('motion-dom').MotionValue<any>;
5483
5472
  x?: string | number | import('motion-dom').MotionValue<any>;
5484
5473
  y?: string | number | import('motion-dom').MotionValue<any>;
5485
5474
  position?: string | number | import('motion-dom').MotionValue<any>;
5486
5475
  page?: string | number | import('motion-dom').MotionValue<any>;
5476
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
5487
5477
  top?: string | number | import('motion-dom').MotionValue<any>;
5488
5478
  right?: string | number | import('motion-dom').MotionValue<any>;
5489
5479
  bottom?: string | number | import('motion-dom').MotionValue<any>;
5490
5480
  left?: string | number | import('motion-dom').MotionValue<any>;
5481
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
5482
+ filter?: string | number | import('motion-dom').MotionValue<any>;
5483
+ fill?: string | number | import('motion-dom').MotionValue<any>;
5484
+ values?: string | number | import('motion-dom').MotionValue<any>;
5491
5485
  all?: string | number | import('motion-dom').MotionValue<any>;
5492
5486
  clear?: string | number | import('motion-dom').MotionValue<any>;
5493
5487
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -5499,6 +5493,7 @@ export declare const Reorder: {
5499
5493
  from?: string | number | import('motion-dom').MotionValue<any>;
5500
5494
  resize?: string | number | import('motion-dom').MotionValue<any>;
5501
5495
  transform?: string | number | import('motion-dom').MotionValue<any>;
5496
+ offset?: string | number | import('motion-dom').MotionValue<any>;
5502
5497
  direction?: string | number | import('motion-dom').MotionValue<any>;
5503
5498
  z?: string | number | import('motion-dom').MotionValue<any>;
5504
5499
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -5626,6 +5621,7 @@ export declare const Reorder: {
5626
5621
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
5627
5622
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
5628
5623
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
5624
+ container?: string | number | import('motion-dom').MotionValue<any>;
5629
5625
  containerName?: string | number | import('motion-dom').MotionValue<any>;
5630
5626
  containerType?: string | number | import('motion-dom').MotionValue<any>;
5631
5627
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -6291,12 +6287,16 @@ export declare const Reorder: {
6291
6287
  asChild: {
6292
6288
  type: import('vue').PropType<boolean>;
6293
6289
  };
6290
+ axis: {
6291
+ type: import('vue').PropType<"x" | "y">;
6292
+ default: string;
6293
+ };
6294
6294
  'onUpdate:values': {
6295
6295
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
6296
6296
  };
6297
6297
  }>>, {
6298
- axis: "x" | "y";
6299
6298
  as: keyof import('vue').IntrinsicElementAttributes;
6299
+ axis: "x" | "y";
6300
6300
  }, true, {}, {}, {
6301
6301
  P: {};
6302
6302
  B: {};
@@ -6305,14 +6305,6 @@ export declare const Reorder: {
6305
6305
  M: {};
6306
6306
  Defaults: {};
6307
6307
  }, Readonly<import('vue').ExtractPropTypes<{
6308
- axis: {
6309
- type: import('vue').PropType<"x" | "y">;
6310
- default: string;
6311
- };
6312
- values: {
6313
- type: import('vue').PropType<unknown[]>;
6314
- required: true;
6315
- };
6316
6308
  layout: {
6317
6309
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
6318
6310
  };
@@ -6336,6 +6328,10 @@ export declare const Reorder: {
6336
6328
  once?: boolean;
6337
6329
  }>;
6338
6330
  };
6331
+ values: {
6332
+ type: import('vue').PropType<unknown[]>;
6333
+ required: true;
6334
+ };
6339
6335
  dragSnapToOrigin: {
6340
6336
  type: import('vue').PropType<boolean>;
6341
6337
  };
@@ -6394,22 +6390,20 @@ export declare const Reorder: {
6394
6390
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
6395
6391
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
6396
6392
  string?: string | number | import('motion-dom').MotionValue<any>;
6397
- container?: string | number | import('motion-dom').MotionValue<any>;
6398
- offset?: string | number | import('motion-dom').MotionValue<any>;
6399
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
6400
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
6401
- filter?: string | number | import('motion-dom').MotionValue<any>;
6402
- fill?: string | number | import('motion-dom').MotionValue<any>;
6403
- values?: string | number | import('motion-dom').MotionValue<any>;
6404
6393
  end?: string | number | import('motion-dom').MotionValue<any>;
6405
6394
  x?: string | number | import('motion-dom').MotionValue<any>;
6406
6395
  y?: string | number | import('motion-dom').MotionValue<any>;
6407
6396
  position?: string | number | import('motion-dom').MotionValue<any>;
6408
6397
  page?: string | number | import('motion-dom').MotionValue<any>;
6398
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
6409
6399
  top?: string | number | import('motion-dom').MotionValue<any>;
6410
6400
  right?: string | number | import('motion-dom').MotionValue<any>;
6411
6401
  bottom?: string | number | import('motion-dom').MotionValue<any>;
6412
6402
  left?: string | number | import('motion-dom').MotionValue<any>;
6403
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
6404
+ filter?: string | number | import('motion-dom').MotionValue<any>;
6405
+ fill?: string | number | import('motion-dom').MotionValue<any>;
6406
+ values?: string | number | import('motion-dom').MotionValue<any>;
6413
6407
  all?: string | number | import('motion-dom').MotionValue<any>;
6414
6408
  clear?: string | number | import('motion-dom').MotionValue<any>;
6415
6409
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -6421,6 +6415,7 @@ export declare const Reorder: {
6421
6415
  from?: string | number | import('motion-dom').MotionValue<any>;
6422
6416
  resize?: string | number | import('motion-dom').MotionValue<any>;
6423
6417
  transform?: string | number | import('motion-dom').MotionValue<any>;
6418
+ offset?: string | number | import('motion-dom').MotionValue<any>;
6424
6419
  direction?: string | number | import('motion-dom').MotionValue<any>;
6425
6420
  z?: string | number | import('motion-dom').MotionValue<any>;
6426
6421
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -6548,6 +6543,7 @@ export declare const Reorder: {
6548
6543
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
6549
6544
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
6550
6545
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
6546
+ container?: string | number | import('motion-dom').MotionValue<any>;
6551
6547
  containerName?: string | number | import('motion-dom').MotionValue<any>;
6552
6548
  containerType?: string | number | import('motion-dom').MotionValue<any>;
6553
6549
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -7213,25 +7209,21 @@ export declare const Reorder: {
7213
7209
  asChild: {
7214
7210
  type: import('vue').PropType<boolean>;
7215
7211
  };
7212
+ axis: {
7213
+ type: import('vue').PropType<"x" | "y">;
7214
+ default: string;
7215
+ };
7216
7216
  'onUpdate:values': {
7217
7217
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
7218
7218
  };
7219
7219
  }>>, {}, {}, {}, {}, {
7220
- axis: "x" | "y";
7221
7220
  as: keyof import('vue').IntrinsicElementAttributes;
7221
+ axis: "x" | "y";
7222
7222
  }>;
7223
7223
  __isFragment?: never;
7224
7224
  __isTeleport?: never;
7225
7225
  __isSuspense?: never;
7226
7226
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
7227
- axis: {
7228
- type: import('vue').PropType<"x" | "y">;
7229
- default: string;
7230
- };
7231
- values: {
7232
- type: import('vue').PropType<unknown[]>;
7233
- required: true;
7234
- };
7235
7227
  layout: {
7236
7228
  type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
7237
7229
  };
@@ -7255,6 +7247,10 @@ export declare const Reorder: {
7255
7247
  once?: boolean;
7256
7248
  }>;
7257
7249
  };
7250
+ values: {
7251
+ type: import('vue').PropType<unknown[]>;
7252
+ required: true;
7253
+ };
7258
7254
  dragSnapToOrigin: {
7259
7255
  type: import('vue').PropType<boolean>;
7260
7256
  };
@@ -7313,22 +7309,20 @@ export declare const Reorder: {
7313
7309
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
7314
7310
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
7315
7311
  string?: string | number | import('motion-dom').MotionValue<any>;
7316
- container?: string | number | import('motion-dom').MotionValue<any>;
7317
- offset?: string | number | import('motion-dom').MotionValue<any>;
7318
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
7319
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
7320
- filter?: string | number | import('motion-dom').MotionValue<any>;
7321
- fill?: string | number | import('motion-dom').MotionValue<any>;
7322
- values?: string | number | import('motion-dom').MotionValue<any>;
7323
7312
  end?: string | number | import('motion-dom').MotionValue<any>;
7324
7313
  x?: string | number | import('motion-dom').MotionValue<any>;
7325
7314
  y?: string | number | import('motion-dom').MotionValue<any>;
7326
7315
  position?: string | number | import('motion-dom').MotionValue<any>;
7327
7316
  page?: string | number | import('motion-dom').MotionValue<any>;
7317
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
7328
7318
  top?: string | number | import('motion-dom').MotionValue<any>;
7329
7319
  right?: string | number | import('motion-dom').MotionValue<any>;
7330
7320
  bottom?: string | number | import('motion-dom').MotionValue<any>;
7331
7321
  left?: string | number | import('motion-dom').MotionValue<any>;
7322
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
7323
+ filter?: string | number | import('motion-dom').MotionValue<any>;
7324
+ fill?: string | number | import('motion-dom').MotionValue<any>;
7325
+ values?: string | number | import('motion-dom').MotionValue<any>;
7332
7326
  all?: string | number | import('motion-dom').MotionValue<any>;
7333
7327
  clear?: string | number | import('motion-dom').MotionValue<any>;
7334
7328
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -7340,6 +7334,7 @@ export declare const Reorder: {
7340
7334
  from?: string | number | import('motion-dom').MotionValue<any>;
7341
7335
  resize?: string | number | import('motion-dom').MotionValue<any>;
7342
7336
  transform?: string | number | import('motion-dom').MotionValue<any>;
7337
+ offset?: string | number | import('motion-dom').MotionValue<any>;
7343
7338
  direction?: string | number | import('motion-dom').MotionValue<any>;
7344
7339
  z?: string | number | import('motion-dom').MotionValue<any>;
7345
7340
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -7467,6 +7462,7 @@ export declare const Reorder: {
7467
7462
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
7468
7463
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
7469
7464
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
7465
+ container?: string | number | import('motion-dom').MotionValue<any>;
7470
7466
  containerName?: string | number | import('motion-dom').MotionValue<any>;
7471
7467
  containerType?: string | number | import('motion-dom').MotionValue<any>;
7472
7468
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -8132,12 +8128,16 @@ export declare const Reorder: {
8132
8128
  asChild: {
8133
8129
  type: import('vue').PropType<boolean>;
8134
8130
  };
8131
+ axis: {
8132
+ type: import('vue').PropType<"x" | "y">;
8133
+ default: string;
8134
+ };
8135
8135
  'onUpdate:values': {
8136
8136
  type: import('vue').PropType<(newOrder: unknown[]) => void>;
8137
8137
  };
8138
8138
  }>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
8139
- axis: "x" | "y";
8140
8139
  as: keyof import('vue').IntrinsicElementAttributes;
8140
+ axis: "x" | "y";
8141
8141
  }, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
8142
8142
  $slots: {
8143
8143
  default?(_: {}): any;
@@ -8177,22 +8177,20 @@ export declare const Reorder: {
8177
8177
  [x: number]: string | number | import('motion-dom').MotionValue<any>;
8178
8178
  [x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
8179
8179
  string?: string | number | import('motion-dom').MotionValue<any>;
8180
- container?: string | number | import('motion-dom').MotionValue<any>;
8181
- offset?: string | number | import('motion-dom').MotionValue<any>;
8182
- [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
8183
- readonly length?: string | number | import('motion-dom').MotionValue<any>;
8184
- filter?: string | number | import('motion-dom').MotionValue<any>;
8185
- fill?: string | number | import('motion-dom').MotionValue<any>;
8186
- values?: string | number | import('motion-dom').MotionValue<any>;
8187
8180
  end?: string | number | import('motion-dom').MotionValue<any>;
8188
8181
  x?: string | number | import('motion-dom').MotionValue<any>;
8189
8182
  y?: string | number | import('motion-dom').MotionValue<any>;
8190
8183
  position?: string | number | import('motion-dom').MotionValue<any>;
8191
8184
  page?: string | number | import('motion-dom').MotionValue<any>;
8185
+ [Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
8192
8186
  top?: string | number | import('motion-dom').MotionValue<any>;
8193
8187
  right?: string | number | import('motion-dom').MotionValue<any>;
8194
8188
  bottom?: string | number | import('motion-dom').MotionValue<any>;
8195
8189
  left?: string | number | import('motion-dom').MotionValue<any>;
8190
+ readonly length?: string | number | import('motion-dom').MotionValue<any>;
8191
+ filter?: string | number | import('motion-dom').MotionValue<any>;
8192
+ fill?: string | number | import('motion-dom').MotionValue<any>;
8193
+ values?: string | number | import('motion-dom').MotionValue<any>;
8196
8194
  all?: string | number | import('motion-dom').MotionValue<any>;
8197
8195
  clear?: string | number | import('motion-dom').MotionValue<any>;
8198
8196
  willChange?: string | number | import('motion-dom').MotionValue<any>;
@@ -8204,6 +8202,7 @@ export declare const Reorder: {
8204
8202
  from?: string | number | import('motion-dom').MotionValue<any>;
8205
8203
  resize?: string | number | import('motion-dom').MotionValue<any>;
8206
8204
  transform?: string | number | import('motion-dom').MotionValue<any>;
8205
+ offset?: string | number | import('motion-dom').MotionValue<any>;
8207
8206
  direction?: string | number | import('motion-dom').MotionValue<any>;
8208
8207
  z?: string | number | import('motion-dom').MotionValue<any>;
8209
8208
  accentColor?: string | number | import('motion-dom').MotionValue<any>;
@@ -8331,6 +8330,7 @@ export declare const Reorder: {
8331
8330
  containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
8332
8331
  containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
8333
8332
  containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
8333
+ container?: string | number | import('motion-dom').MotionValue<any>;
8334
8334
  containerName?: string | number | import('motion-dom').MotionValue<any>;
8335
8335
  containerType?: string | number | import('motion-dom').MotionValue<any>;
8336
8336
  content?: string | number | import('motion-dom').MotionValue<any>;
@@ -21,7 +21,8 @@ function handlePressEvent(state, event, lifecycle) {
21
21
  }
22
22
  class PressGesture extends Feature {
23
23
  isActive() {
24
- return Boolean(this.state.options.whilePress);
24
+ const { whilePress, onPress, onPressCancel, onPressStart } = this.state.options;
25
+ return Boolean(whilePress || onPress || onPressCancel || onPressStart);
25
26
  }
26
27
  constructor(state) {
27
28
  super(state);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motion-v",
3
- "version": "0.13.0-beta.3",
3
+ "version": "0.13.0-beta.4",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "MIT",