motion-v 0.13.0-beta.3 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +61 -26
- package/dist/es/components/animate-presence/AnimatePresence.d.ts +0 -3
- package/dist/es/components/animate-presence/AnimatePresence.vue.mjs +27 -19
- package/dist/es/components/animate-presence/types.d.ts +0 -1
- package/dist/es/components/motion/Motion.d.ts +5 -4
- package/dist/es/components/motion/Motion.vue.mjs +13 -3
- package/dist/es/components/motion/NameSpace.d.ts +5 -4
- package/dist/es/components/motion/NameSpace.mjs +2 -1
- package/dist/es/components/motion/Primitive.d.ts +11 -2
- package/dist/es/components/motion/Primitive.mjs +9 -1
- package/dist/es/components/reorder/Group.d.ts +1 -1
- package/dist/es/components/reorder/Group.vue.mjs +3 -0
- package/dist/es/components/reorder/Item.vue.mjs +3 -0
- package/dist/es/components/reorder/index.d.ts +254 -176
- package/dist/es/features/gestures/press/index.mjs +2 -1
- package/dist/es/features/layout/types.d.ts +4 -0
- package/dist/es/state/animate-updates.mjs +2 -1
- package/dist/es/state/motion-state.d.ts +7 -2
- package/dist/es/types/common.d.ts +4 -0
- package/dist/es/types/index.d.ts +1 -0
- package/dist/es/types/motion-values.d.ts +2 -1
- package/dist/es/types/state.d.ts +3 -3
- package/package.json +1 -1
- package/dist/es/state/animation/index.d.ts +0 -0
- package/dist/es/state/animation/types.d.ts +0 -0
|
@@ -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
|
};
|
|
@@ -26,11 +18,18 @@ export declare const ReorderGroup: {
|
|
|
26
18
|
crossfade: {
|
|
27
19
|
type: import('vue').PropType<boolean>;
|
|
28
20
|
};
|
|
21
|
+
layoutDependency: {
|
|
22
|
+
type: import('vue').PropType<any>;
|
|
23
|
+
};
|
|
29
24
|
inViewOptions: {
|
|
30
25
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
31
26
|
once?: boolean;
|
|
32
27
|
}>;
|
|
33
28
|
};
|
|
29
|
+
values: {
|
|
30
|
+
type: import('vue').PropType<unknown[]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
34
33
|
dragSnapToOrigin: {
|
|
35
34
|
type: import('vue').PropType<boolean>;
|
|
36
35
|
};
|
|
@@ -89,22 +88,20 @@ export declare const ReorderGroup: {
|
|
|
89
88
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
90
89
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
91
90
|
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
91
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
100
92
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
101
93
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
102
94
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
103
95
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
96
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
104
97
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
105
98
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
106
99
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
107
100
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
101
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
102
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
103
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
104
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
108
105
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
109
106
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
110
107
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -116,6 +113,11 @@ export declare const ReorderGroup: {
|
|
|
116
113
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
117
114
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
118
115
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
116
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
117
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
118
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
119
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
120
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
119
121
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
120
122
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
121
123
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -221,7 +223,6 @@ export declare const ReorderGroup: {
|
|
|
221
223
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
222
224
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
223
225
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
224
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
225
226
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
226
227
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
227
228
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -243,6 +244,7 @@ export declare const ReorderGroup: {
|
|
|
243
244
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
244
245
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
245
246
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
247
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
246
248
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
247
249
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
248
250
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -350,11 +352,9 @@ export declare const ReorderGroup: {
|
|
|
350
352
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
351
353
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
352
354
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
353
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
354
355
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
355
356
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
356
357
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
357
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
358
358
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
359
359
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
360
360
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -695,7 +695,6 @@ export declare const ReorderGroup: {
|
|
|
695
695
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
696
696
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
697
697
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
698
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
699
698
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
700
699
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
701
700
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -830,6 +829,9 @@ export declare const ReorderGroup: {
|
|
|
830
829
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
831
830
|
}>;
|
|
832
831
|
};
|
|
832
|
+
inherit: {
|
|
833
|
+
type: import('vue').PropType<boolean>;
|
|
834
|
+
};
|
|
833
835
|
layoutGroup: {
|
|
834
836
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
835
837
|
};
|
|
@@ -908,18 +910,17 @@ export declare const ReorderGroup: {
|
|
|
908
910
|
asChild: {
|
|
909
911
|
type: import('vue').PropType<boolean>;
|
|
910
912
|
};
|
|
911
|
-
|
|
912
|
-
type: import('vue').PropType<
|
|
913
|
+
forwardMotionProps: {
|
|
914
|
+
type: import('vue').PropType<boolean>;
|
|
913
915
|
};
|
|
914
|
-
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
915
916
|
axis: {
|
|
916
917
|
type: import('vue').PropType<"x" | "y">;
|
|
917
918
|
default: string;
|
|
918
919
|
};
|
|
919
|
-
values: {
|
|
920
|
-
type: import('vue').PropType<unknown[]>;
|
|
921
|
-
required: true;
|
|
920
|
+
'onUpdate:values': {
|
|
921
|
+
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
922
922
|
};
|
|
923
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
923
924
|
layout: {
|
|
924
925
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
925
926
|
};
|
|
@@ -938,11 +939,18 @@ export declare const ReorderGroup: {
|
|
|
938
939
|
crossfade: {
|
|
939
940
|
type: import('vue').PropType<boolean>;
|
|
940
941
|
};
|
|
942
|
+
layoutDependency: {
|
|
943
|
+
type: import('vue').PropType<any>;
|
|
944
|
+
};
|
|
941
945
|
inViewOptions: {
|
|
942
946
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
943
947
|
once?: boolean;
|
|
944
948
|
}>;
|
|
945
949
|
};
|
|
950
|
+
values: {
|
|
951
|
+
type: import('vue').PropType<unknown[]>;
|
|
952
|
+
required: true;
|
|
953
|
+
};
|
|
946
954
|
dragSnapToOrigin: {
|
|
947
955
|
type: import('vue').PropType<boolean>;
|
|
948
956
|
};
|
|
@@ -1001,22 +1009,20 @@ export declare const ReorderGroup: {
|
|
|
1001
1009
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
1002
1010
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
1003
1011
|
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
1012
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
1012
1013
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
1013
1014
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
1014
1015
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
1015
1016
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
1017
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
1016
1018
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
1017
1019
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
1018
1020
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
1019
1021
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
1022
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
1023
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1024
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
1025
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
1020
1026
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
1021
1027
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
1022
1028
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1028,6 +1034,11 @@ export declare const ReorderGroup: {
|
|
|
1028
1034
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
1029
1035
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1030
1036
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
1037
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1038
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
1039
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1040
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1041
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
1031
1042
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1032
1043
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
1033
1044
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1133,7 +1144,6 @@ export declare const ReorderGroup: {
|
|
|
1133
1144
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
1134
1145
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1135
1146
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
1136
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
1137
1147
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
1138
1148
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
1139
1149
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1155,6 +1165,7 @@ export declare const ReorderGroup: {
|
|
|
1155
1165
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1156
1166
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1157
1167
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
1168
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
1158
1169
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
1159
1170
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
1160
1171
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1262,11 +1273,9 @@ export declare const ReorderGroup: {
|
|
|
1262
1273
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
1263
1274
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1264
1275
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
1265
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1266
1276
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
1267
1277
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
1268
1278
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
1269
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1270
1279
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
1271
1280
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
1272
1281
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1607,7 +1616,6 @@ export declare const ReorderGroup: {
|
|
|
1607
1616
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1608
1617
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
1609
1618
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
1610
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
1611
1619
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
1612
1620
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
1613
1621
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1742,6 +1750,9 @@ export declare const ReorderGroup: {
|
|
|
1742
1750
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
1743
1751
|
}>;
|
|
1744
1752
|
};
|
|
1753
|
+
inherit: {
|
|
1754
|
+
type: import('vue').PropType<boolean>;
|
|
1755
|
+
};
|
|
1745
1756
|
layoutGroup: {
|
|
1746
1757
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
1747
1758
|
};
|
|
@@ -1820,12 +1831,19 @@ export declare const ReorderGroup: {
|
|
|
1820
1831
|
asChild: {
|
|
1821
1832
|
type: import('vue').PropType<boolean>;
|
|
1822
1833
|
};
|
|
1834
|
+
forwardMotionProps: {
|
|
1835
|
+
type: import('vue').PropType<boolean>;
|
|
1836
|
+
};
|
|
1837
|
+
axis: {
|
|
1838
|
+
type: import('vue').PropType<"x" | "y">;
|
|
1839
|
+
default: string;
|
|
1840
|
+
};
|
|
1823
1841
|
'onUpdate:values': {
|
|
1824
1842
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
1825
1843
|
};
|
|
1826
1844
|
}>>, {
|
|
1827
|
-
axis: "x" | "y";
|
|
1828
1845
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
1846
|
+
axis: "x" | "y";
|
|
1829
1847
|
}, true, {}, {}, {
|
|
1830
1848
|
P: {};
|
|
1831
1849
|
B: {};
|
|
@@ -1834,14 +1852,6 @@ export declare const ReorderGroup: {
|
|
|
1834
1852
|
M: {};
|
|
1835
1853
|
Defaults: {};
|
|
1836
1854
|
}, 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
1855
|
layout: {
|
|
1846
1856
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
1847
1857
|
};
|
|
@@ -1860,11 +1870,18 @@ export declare const ReorderGroup: {
|
|
|
1860
1870
|
crossfade: {
|
|
1861
1871
|
type: import('vue').PropType<boolean>;
|
|
1862
1872
|
};
|
|
1873
|
+
layoutDependency: {
|
|
1874
|
+
type: import('vue').PropType<any>;
|
|
1875
|
+
};
|
|
1863
1876
|
inViewOptions: {
|
|
1864
1877
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
1865
1878
|
once?: boolean;
|
|
1866
1879
|
}>;
|
|
1867
1880
|
};
|
|
1881
|
+
values: {
|
|
1882
|
+
type: import('vue').PropType<unknown[]>;
|
|
1883
|
+
required: true;
|
|
1884
|
+
};
|
|
1868
1885
|
dragSnapToOrigin: {
|
|
1869
1886
|
type: import('vue').PropType<boolean>;
|
|
1870
1887
|
};
|
|
@@ -1923,22 +1940,20 @@ export declare const ReorderGroup: {
|
|
|
1923
1940
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
1924
1941
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
1925
1942
|
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
1943
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
1934
1944
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
1935
1945
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
1936
1946
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
1937
1947
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
1948
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
1938
1949
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
1939
1950
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
1940
1951
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
1941
1952
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
1953
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
1954
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1955
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
1956
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
1942
1957
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
1943
1958
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
1944
1959
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1950,6 +1965,11 @@ export declare const ReorderGroup: {
|
|
|
1950
1965
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
1951
1966
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1952
1967
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
1968
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1969
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
1970
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1971
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1972
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
1953
1973
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1954
1974
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
1955
1975
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2055,7 +2075,6 @@ export declare const ReorderGroup: {
|
|
|
2055
2075
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
2056
2076
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2057
2077
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
2058
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
2059
2078
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
2060
2079
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
2061
2080
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2077,6 +2096,7 @@ export declare const ReorderGroup: {
|
|
|
2077
2096
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2078
2097
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2079
2098
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
2099
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
2080
2100
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
2081
2101
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
2082
2102
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2184,11 +2204,9 @@ export declare const ReorderGroup: {
|
|
|
2184
2204
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
2185
2205
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
2186
2206
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
2187
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
2188
2207
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
2189
2208
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
2190
2209
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
2191
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
2192
2210
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
2193
2211
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
2194
2212
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2529,7 +2547,6 @@ export declare const ReorderGroup: {
|
|
|
2529
2547
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2530
2548
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
2531
2549
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
2532
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
2533
2550
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
2534
2551
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
2535
2552
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2664,6 +2681,9 @@ export declare const ReorderGroup: {
|
|
|
2664
2681
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
2665
2682
|
}>;
|
|
2666
2683
|
};
|
|
2684
|
+
inherit: {
|
|
2685
|
+
type: import('vue').PropType<boolean>;
|
|
2686
|
+
};
|
|
2667
2687
|
layoutGroup: {
|
|
2668
2688
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
2669
2689
|
};
|
|
@@ -2742,25 +2762,24 @@ export declare const ReorderGroup: {
|
|
|
2742
2762
|
asChild: {
|
|
2743
2763
|
type: import('vue').PropType<boolean>;
|
|
2744
2764
|
};
|
|
2765
|
+
forwardMotionProps: {
|
|
2766
|
+
type: import('vue').PropType<boolean>;
|
|
2767
|
+
};
|
|
2768
|
+
axis: {
|
|
2769
|
+
type: import('vue').PropType<"x" | "y">;
|
|
2770
|
+
default: string;
|
|
2771
|
+
};
|
|
2745
2772
|
'onUpdate:values': {
|
|
2746
2773
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
2747
2774
|
};
|
|
2748
2775
|
}>>, {}, {}, {}, {}, {
|
|
2749
|
-
axis: "x" | "y";
|
|
2750
2776
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
2777
|
+
axis: "x" | "y";
|
|
2751
2778
|
}>;
|
|
2752
2779
|
__isFragment?: never;
|
|
2753
2780
|
__isTeleport?: never;
|
|
2754
2781
|
__isSuspense?: never;
|
|
2755
2782
|
} & 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
2783
|
layout: {
|
|
2765
2784
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
2766
2785
|
};
|
|
@@ -2779,11 +2798,18 @@ export declare const ReorderGroup: {
|
|
|
2779
2798
|
crossfade: {
|
|
2780
2799
|
type: import('vue').PropType<boolean>;
|
|
2781
2800
|
};
|
|
2801
|
+
layoutDependency: {
|
|
2802
|
+
type: import('vue').PropType<any>;
|
|
2803
|
+
};
|
|
2782
2804
|
inViewOptions: {
|
|
2783
2805
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
2784
2806
|
once?: boolean;
|
|
2785
2807
|
}>;
|
|
2786
2808
|
};
|
|
2809
|
+
values: {
|
|
2810
|
+
type: import('vue').PropType<unknown[]>;
|
|
2811
|
+
required: true;
|
|
2812
|
+
};
|
|
2787
2813
|
dragSnapToOrigin: {
|
|
2788
2814
|
type: import('vue').PropType<boolean>;
|
|
2789
2815
|
};
|
|
@@ -2842,22 +2868,20 @@ export declare const ReorderGroup: {
|
|
|
2842
2868
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
2843
2869
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
2844
2870
|
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
2871
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
2853
2872
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
2854
2873
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
2855
2874
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
2856
2875
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
2876
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
2857
2877
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
2858
2878
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
2859
2879
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
2860
2880
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
2881
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
2882
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
2883
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
2884
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
2861
2885
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
2862
2886
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
2863
2887
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2869,6 +2893,11 @@ export declare const ReorderGroup: {
|
|
|
2869
2893
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
2870
2894
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2871
2895
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
2896
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
2897
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
2898
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
2899
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
2900
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
2872
2901
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2873
2902
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
2874
2903
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2974,7 +3003,6 @@ export declare const ReorderGroup: {
|
|
|
2974
3003
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
2975
3004
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2976
3005
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
2977
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
2978
3006
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
2979
3007
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
2980
3008
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2996,6 +3024,7 @@ export declare const ReorderGroup: {
|
|
|
2996
3024
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2997
3025
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2998
3026
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
3027
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
2999
3028
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
3000
3029
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
3001
3030
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3103,11 +3132,9 @@ export declare const ReorderGroup: {
|
|
|
3103
3132
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
3104
3133
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
3105
3134
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
3106
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
3107
3135
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
3108
3136
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
3109
3137
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
3110
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
3111
3138
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
3112
3139
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
3113
3140
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3448,7 +3475,6 @@ export declare const ReorderGroup: {
|
|
|
3448
3475
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
3449
3476
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
3450
3477
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
3451
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
3452
3478
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
3453
3479
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
3454
3480
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3583,6 +3609,9 @@ export declare const ReorderGroup: {
|
|
|
3583
3609
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
3584
3610
|
}>;
|
|
3585
3611
|
};
|
|
3612
|
+
inherit: {
|
|
3613
|
+
type: import('vue').PropType<boolean>;
|
|
3614
|
+
};
|
|
3586
3615
|
layoutGroup: {
|
|
3587
3616
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
3588
3617
|
};
|
|
@@ -3661,12 +3690,19 @@ export declare const ReorderGroup: {
|
|
|
3661
3690
|
asChild: {
|
|
3662
3691
|
type: import('vue').PropType<boolean>;
|
|
3663
3692
|
};
|
|
3693
|
+
forwardMotionProps: {
|
|
3694
|
+
type: import('vue').PropType<boolean>;
|
|
3695
|
+
};
|
|
3696
|
+
axis: {
|
|
3697
|
+
type: import('vue').PropType<"x" | "y">;
|
|
3698
|
+
default: string;
|
|
3699
|
+
};
|
|
3664
3700
|
'onUpdate:values': {
|
|
3665
3701
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
3666
3702
|
};
|
|
3667
3703
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
3668
|
-
axis: "x" | "y";
|
|
3669
3704
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
3705
|
+
axis: "x" | "y";
|
|
3670
3706
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
3671
3707
|
$slots: {
|
|
3672
3708
|
default?(_: {}): any;
|
|
@@ -3695,6 +3731,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3695
3731
|
whilePress?: import('../..').Options["whilePress"];
|
|
3696
3732
|
whileInView?: import('../..').Options["whileInView"];
|
|
3697
3733
|
whileFocus?: import('../..').Options["whileFocus"];
|
|
3734
|
+
forwardMotionProps?: boolean;
|
|
3698
3735
|
custom?: unknown;
|
|
3699
3736
|
initial?: import('../..').VariantLabels | import('../..').Variant | boolean;
|
|
3700
3737
|
animate?: import('../..').VariantLabels | import('../..').Variant | import('../../animation/types').AnimationControls;
|
|
@@ -3702,26 +3739,25 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3702
3739
|
variants?: {
|
|
3703
3740
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
3704
3741
|
};
|
|
3742
|
+
inherit?: boolean;
|
|
3705
3743
|
style?: Partial<{
|
|
3706
3744
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
3707
3745
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
3708
3746
|
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
3747
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
3717
3748
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
3718
3749
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
3719
3750
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
3720
3751
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
3752
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
3721
3753
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
3722
3754
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
3723
3755
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
3724
3756
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
3757
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
3758
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
3759
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
3760
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
3725
3761
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
3726
3762
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
3727
3763
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3733,6 +3769,11 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3733
3769
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
3734
3770
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
3735
3771
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
3772
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
3773
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
3774
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
3775
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
3776
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
3736
3777
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
3737
3778
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
3738
3779
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3838,7 +3879,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3838
3879
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
3839
3880
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
3840
3881
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
3841
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
3842
3882
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
3843
3883
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
3844
3884
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3860,6 +3900,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3860
3900
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
3861
3901
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
3862
3902
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
3903
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
3863
3904
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
3864
3905
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
3865
3906
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3967,11 +4008,9 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3967
4008
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
3968
4009
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
3969
4010
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
3970
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
3971
4011
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
3972
4012
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
3973
4013
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
3974
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
3975
4014
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
3976
4015
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
3977
4016
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4312,7 +4351,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4312
4351
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
4313
4352
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
4314
4353
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
4315
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
4316
4354
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
4317
4355
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
4318
4356
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4417,6 +4455,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4417
4455
|
layoutRoot?: boolean;
|
|
4418
4456
|
'data-framer-portal-id'?: string;
|
|
4419
4457
|
crossfade?: boolean;
|
|
4458
|
+
layoutDependency?: any;
|
|
4420
4459
|
onBeforeLayoutMeasure?: (box: import('framer-motion').Box) => void;
|
|
4421
4460
|
onLayoutMeasure?: (box: import('framer-motion').Box, prevBox: import('framer-motion').Box) => void;
|
|
4422
4461
|
onLayoutAnimationStart?: () => void;
|
|
@@ -4471,14 +4510,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4471
4510
|
export declare const Reorder: {
|
|
4472
4511
|
Group: {
|
|
4473
4512
|
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
4513
|
layout: {
|
|
4483
4514
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
4484
4515
|
};
|
|
@@ -4497,11 +4528,18 @@ export declare const Reorder: {
|
|
|
4497
4528
|
crossfade: {
|
|
4498
4529
|
type: import('vue').PropType<boolean>;
|
|
4499
4530
|
};
|
|
4531
|
+
layoutDependency: {
|
|
4532
|
+
type: import('vue').PropType<any>;
|
|
4533
|
+
};
|
|
4500
4534
|
inViewOptions: {
|
|
4501
4535
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
4502
4536
|
once?: boolean;
|
|
4503
4537
|
}>;
|
|
4504
4538
|
};
|
|
4539
|
+
values: {
|
|
4540
|
+
type: import('vue').PropType<unknown[]>;
|
|
4541
|
+
required: true;
|
|
4542
|
+
};
|
|
4505
4543
|
dragSnapToOrigin: {
|
|
4506
4544
|
type: import('vue').PropType<boolean>;
|
|
4507
4545
|
};
|
|
@@ -4560,22 +4598,20 @@ export declare const Reorder: {
|
|
|
4560
4598
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
4561
4599
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
4562
4600
|
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
4601
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
4571
4602
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
4572
4603
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
4573
4604
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
4574
4605
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
4606
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
4575
4607
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
4576
4608
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
4577
4609
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
4578
4610
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
4611
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
4612
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
4613
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
4614
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
4579
4615
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
4580
4616
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
4581
4617
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4587,6 +4623,11 @@ export declare const Reorder: {
|
|
|
4587
4623
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
4588
4624
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
4589
4625
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
4626
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
4627
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
4628
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
4629
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
4630
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
4590
4631
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
4591
4632
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
4592
4633
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4692,7 +4733,6 @@ export declare const Reorder: {
|
|
|
4692
4733
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
4693
4734
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
4694
4735
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
4695
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
4696
4736
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
4697
4737
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
4698
4738
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4714,6 +4754,7 @@ export declare const Reorder: {
|
|
|
4714
4754
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
4715
4755
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
4716
4756
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
4757
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
4717
4758
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
4718
4759
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
4719
4760
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -4821,11 +4862,9 @@ export declare const Reorder: {
|
|
|
4821
4862
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
4822
4863
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
4823
4864
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
4824
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
4825
4865
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
4826
4866
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
4827
4867
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
4828
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
4829
4868
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
4830
4869
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
4831
4870
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5166,7 +5205,6 @@ export declare const Reorder: {
|
|
|
5166
5205
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
5167
5206
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
5168
5207
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
5169
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
5170
5208
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
5171
5209
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
5172
5210
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5301,6 +5339,9 @@ export declare const Reorder: {
|
|
|
5301
5339
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
5302
5340
|
}>;
|
|
5303
5341
|
};
|
|
5342
|
+
inherit: {
|
|
5343
|
+
type: import('vue').PropType<boolean>;
|
|
5344
|
+
};
|
|
5304
5345
|
layoutGroup: {
|
|
5305
5346
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
5306
5347
|
};
|
|
@@ -5379,18 +5420,17 @@ export declare const Reorder: {
|
|
|
5379
5420
|
asChild: {
|
|
5380
5421
|
type: import('vue').PropType<boolean>;
|
|
5381
5422
|
};
|
|
5382
|
-
|
|
5383
|
-
type: import('vue').PropType<
|
|
5423
|
+
forwardMotionProps: {
|
|
5424
|
+
type: import('vue').PropType<boolean>;
|
|
5384
5425
|
};
|
|
5385
|
-
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
5386
5426
|
axis: {
|
|
5387
5427
|
type: import('vue').PropType<"x" | "y">;
|
|
5388
5428
|
default: string;
|
|
5389
5429
|
};
|
|
5390
|
-
values: {
|
|
5391
|
-
type: import('vue').PropType<unknown[]>;
|
|
5392
|
-
required: true;
|
|
5430
|
+
'onUpdate:values': {
|
|
5431
|
+
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
5393
5432
|
};
|
|
5433
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
5394
5434
|
layout: {
|
|
5395
5435
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
5396
5436
|
};
|
|
@@ -5409,11 +5449,18 @@ export declare const Reorder: {
|
|
|
5409
5449
|
crossfade: {
|
|
5410
5450
|
type: import('vue').PropType<boolean>;
|
|
5411
5451
|
};
|
|
5452
|
+
layoutDependency: {
|
|
5453
|
+
type: import('vue').PropType<any>;
|
|
5454
|
+
};
|
|
5412
5455
|
inViewOptions: {
|
|
5413
5456
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
5414
5457
|
once?: boolean;
|
|
5415
5458
|
}>;
|
|
5416
5459
|
};
|
|
5460
|
+
values: {
|
|
5461
|
+
type: import('vue').PropType<unknown[]>;
|
|
5462
|
+
required: true;
|
|
5463
|
+
};
|
|
5417
5464
|
dragSnapToOrigin: {
|
|
5418
5465
|
type: import('vue').PropType<boolean>;
|
|
5419
5466
|
};
|
|
@@ -5472,22 +5519,20 @@ export declare const Reorder: {
|
|
|
5472
5519
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
5473
5520
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
5474
5521
|
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
5522
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
5483
5523
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
5484
5524
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
5485
5525
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
5486
5526
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
5527
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
5487
5528
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
5488
5529
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
5489
5530
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
5490
5531
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
5532
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
5533
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
5534
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
5535
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
5491
5536
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
5492
5537
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
5493
5538
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5499,6 +5544,11 @@ export declare const Reorder: {
|
|
|
5499
5544
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
5500
5545
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
5501
5546
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
5547
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
5548
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
5549
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
5550
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
5551
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
5502
5552
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
5503
5553
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
5504
5554
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5604,7 +5654,6 @@ export declare const Reorder: {
|
|
|
5604
5654
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
5605
5655
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
5606
5656
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
5607
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
5608
5657
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
5609
5658
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
5610
5659
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5626,6 +5675,7 @@ export declare const Reorder: {
|
|
|
5626
5675
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
5627
5676
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
5628
5677
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
5678
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
5629
5679
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
5630
5680
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
5631
5681
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -5733,11 +5783,9 @@ export declare const Reorder: {
|
|
|
5733
5783
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
5734
5784
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
5735
5785
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
5736
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
5737
5786
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
5738
5787
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
5739
5788
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
5740
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
5741
5789
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
5742
5790
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
5743
5791
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6078,7 +6126,6 @@ export declare const Reorder: {
|
|
|
6078
6126
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
6079
6127
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
6080
6128
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
6081
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
6082
6129
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
6083
6130
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
6084
6131
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6213,6 +6260,9 @@ export declare const Reorder: {
|
|
|
6213
6260
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
6214
6261
|
}>;
|
|
6215
6262
|
};
|
|
6263
|
+
inherit: {
|
|
6264
|
+
type: import('vue').PropType<boolean>;
|
|
6265
|
+
};
|
|
6216
6266
|
layoutGroup: {
|
|
6217
6267
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
6218
6268
|
};
|
|
@@ -6291,12 +6341,19 @@ export declare const Reorder: {
|
|
|
6291
6341
|
asChild: {
|
|
6292
6342
|
type: import('vue').PropType<boolean>;
|
|
6293
6343
|
};
|
|
6344
|
+
forwardMotionProps: {
|
|
6345
|
+
type: import('vue').PropType<boolean>;
|
|
6346
|
+
};
|
|
6347
|
+
axis: {
|
|
6348
|
+
type: import('vue').PropType<"x" | "y">;
|
|
6349
|
+
default: string;
|
|
6350
|
+
};
|
|
6294
6351
|
'onUpdate:values': {
|
|
6295
6352
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
6296
6353
|
};
|
|
6297
6354
|
}>>, {
|
|
6298
|
-
axis: "x" | "y";
|
|
6299
6355
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
6356
|
+
axis: "x" | "y";
|
|
6300
6357
|
}, true, {}, {}, {
|
|
6301
6358
|
P: {};
|
|
6302
6359
|
B: {};
|
|
@@ -6305,14 +6362,6 @@ export declare const Reorder: {
|
|
|
6305
6362
|
M: {};
|
|
6306
6363
|
Defaults: {};
|
|
6307
6364
|
}, 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
6365
|
layout: {
|
|
6317
6366
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
6318
6367
|
};
|
|
@@ -6331,11 +6380,18 @@ export declare const Reorder: {
|
|
|
6331
6380
|
crossfade: {
|
|
6332
6381
|
type: import('vue').PropType<boolean>;
|
|
6333
6382
|
};
|
|
6383
|
+
layoutDependency: {
|
|
6384
|
+
type: import('vue').PropType<any>;
|
|
6385
|
+
};
|
|
6334
6386
|
inViewOptions: {
|
|
6335
6387
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
6336
6388
|
once?: boolean;
|
|
6337
6389
|
}>;
|
|
6338
6390
|
};
|
|
6391
|
+
values: {
|
|
6392
|
+
type: import('vue').PropType<unknown[]>;
|
|
6393
|
+
required: true;
|
|
6394
|
+
};
|
|
6339
6395
|
dragSnapToOrigin: {
|
|
6340
6396
|
type: import('vue').PropType<boolean>;
|
|
6341
6397
|
};
|
|
@@ -6394,22 +6450,20 @@ export declare const Reorder: {
|
|
|
6394
6450
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
6395
6451
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
6396
6452
|
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
6453
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
6405
6454
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
6406
6455
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
6407
6456
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
6408
6457
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
6458
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
6409
6459
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
6410
6460
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
6411
6461
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
6412
6462
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
6463
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
6464
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
6465
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
6466
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
6413
6467
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
6414
6468
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
6415
6469
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6421,6 +6475,11 @@ export declare const Reorder: {
|
|
|
6421
6475
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
6422
6476
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
6423
6477
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
6478
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
6479
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
6480
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
6481
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
6482
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
6424
6483
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
6425
6484
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
6426
6485
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6526,7 +6585,6 @@ export declare const Reorder: {
|
|
|
6526
6585
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
6527
6586
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
6528
6587
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
6529
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
6530
6588
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
6531
6589
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
6532
6590
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6548,6 +6606,7 @@ export declare const Reorder: {
|
|
|
6548
6606
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
6549
6607
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
6550
6608
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
6609
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
6551
6610
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
6552
6611
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
6553
6612
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -6655,11 +6714,9 @@ export declare const Reorder: {
|
|
|
6655
6714
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
6656
6715
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
6657
6716
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
6658
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
6659
6717
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
6660
6718
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
6661
6719
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
6662
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
6663
6720
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
6664
6721
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
6665
6722
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7000,7 +7057,6 @@ export declare const Reorder: {
|
|
|
7000
7057
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
7001
7058
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
7002
7059
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
7003
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
7004
7060
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
7005
7061
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
7006
7062
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7135,6 +7191,9 @@ export declare const Reorder: {
|
|
|
7135
7191
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
7136
7192
|
}>;
|
|
7137
7193
|
};
|
|
7194
|
+
inherit: {
|
|
7195
|
+
type: import('vue').PropType<boolean>;
|
|
7196
|
+
};
|
|
7138
7197
|
layoutGroup: {
|
|
7139
7198
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
7140
7199
|
};
|
|
@@ -7213,25 +7272,24 @@ export declare const Reorder: {
|
|
|
7213
7272
|
asChild: {
|
|
7214
7273
|
type: import('vue').PropType<boolean>;
|
|
7215
7274
|
};
|
|
7275
|
+
forwardMotionProps: {
|
|
7276
|
+
type: import('vue').PropType<boolean>;
|
|
7277
|
+
};
|
|
7278
|
+
axis: {
|
|
7279
|
+
type: import('vue').PropType<"x" | "y">;
|
|
7280
|
+
default: string;
|
|
7281
|
+
};
|
|
7216
7282
|
'onUpdate:values': {
|
|
7217
7283
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
7218
7284
|
};
|
|
7219
7285
|
}>>, {}, {}, {}, {}, {
|
|
7220
|
-
axis: "x" | "y";
|
|
7221
7286
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
7287
|
+
axis: "x" | "y";
|
|
7222
7288
|
}>;
|
|
7223
7289
|
__isFragment?: never;
|
|
7224
7290
|
__isTeleport?: never;
|
|
7225
7291
|
__isSuspense?: never;
|
|
7226
7292
|
} & 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
7293
|
layout: {
|
|
7236
7294
|
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
7237
7295
|
};
|
|
@@ -7250,11 +7308,18 @@ export declare const Reorder: {
|
|
|
7250
7308
|
crossfade: {
|
|
7251
7309
|
type: import('vue').PropType<boolean>;
|
|
7252
7310
|
};
|
|
7311
|
+
layoutDependency: {
|
|
7312
|
+
type: import('vue').PropType<any>;
|
|
7313
|
+
};
|
|
7253
7314
|
inViewOptions: {
|
|
7254
7315
|
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
7255
7316
|
once?: boolean;
|
|
7256
7317
|
}>;
|
|
7257
7318
|
};
|
|
7319
|
+
values: {
|
|
7320
|
+
type: import('vue').PropType<unknown[]>;
|
|
7321
|
+
required: true;
|
|
7322
|
+
};
|
|
7258
7323
|
dragSnapToOrigin: {
|
|
7259
7324
|
type: import('vue').PropType<boolean>;
|
|
7260
7325
|
};
|
|
@@ -7313,22 +7378,20 @@ export declare const Reorder: {
|
|
|
7313
7378
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
7314
7379
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
7315
7380
|
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
7381
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
7324
7382
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
7325
7383
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
7326
7384
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
7327
7385
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
7386
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
7328
7387
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
7329
7388
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
7330
7389
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
7331
7390
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
7391
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
7392
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
7393
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
7394
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
7332
7395
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
7333
7396
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
7334
7397
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7340,6 +7403,11 @@ export declare const Reorder: {
|
|
|
7340
7403
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
7341
7404
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
7342
7405
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
7406
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
7407
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
7408
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
7409
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
7410
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
7343
7411
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
7344
7412
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
7345
7413
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7445,7 +7513,6 @@ export declare const Reorder: {
|
|
|
7445
7513
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
7446
7514
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
7447
7515
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
7448
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
7449
7516
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
7450
7517
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
7451
7518
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7467,6 +7534,7 @@ export declare const Reorder: {
|
|
|
7467
7534
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
7468
7535
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
7469
7536
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
7537
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
7470
7538
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
7471
7539
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
7472
7540
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7574,11 +7642,9 @@ export declare const Reorder: {
|
|
|
7574
7642
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
7575
7643
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
7576
7644
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
7577
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
7578
7645
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
7579
7646
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
7580
7647
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
7581
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
7582
7648
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
7583
7649
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
7584
7650
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -7919,7 +7985,6 @@ export declare const Reorder: {
|
|
|
7919
7985
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
7920
7986
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
7921
7987
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
7922
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
7923
7988
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
7924
7989
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
7925
7990
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8054,6 +8119,9 @@ export declare const Reorder: {
|
|
|
8054
8119
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
8055
8120
|
}>;
|
|
8056
8121
|
};
|
|
8122
|
+
inherit: {
|
|
8123
|
+
type: import('vue').PropType<boolean>;
|
|
8124
|
+
};
|
|
8057
8125
|
layoutGroup: {
|
|
8058
8126
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
8059
8127
|
};
|
|
@@ -8132,12 +8200,19 @@ export declare const Reorder: {
|
|
|
8132
8200
|
asChild: {
|
|
8133
8201
|
type: import('vue').PropType<boolean>;
|
|
8134
8202
|
};
|
|
8203
|
+
forwardMotionProps: {
|
|
8204
|
+
type: import('vue').PropType<boolean>;
|
|
8205
|
+
};
|
|
8206
|
+
axis: {
|
|
8207
|
+
type: import('vue').PropType<"x" | "y">;
|
|
8208
|
+
default: string;
|
|
8209
|
+
};
|
|
8135
8210
|
'onUpdate:values': {
|
|
8136
8211
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
8137
8212
|
};
|
|
8138
8213
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
8139
|
-
axis: "x" | "y";
|
|
8140
8214
|
as: keyof import('vue').IntrinsicElementAttributes;
|
|
8215
|
+
axis: "x" | "y";
|
|
8141
8216
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
8142
8217
|
$slots: {
|
|
8143
8218
|
default?(_: {}): any;
|
|
@@ -8166,6 +8241,7 @@ export declare const Reorder: {
|
|
|
8166
8241
|
whilePress?: import('../..').Options["whilePress"];
|
|
8167
8242
|
whileInView?: import('../..').Options["whileInView"];
|
|
8168
8243
|
whileFocus?: import('../..').Options["whileFocus"];
|
|
8244
|
+
forwardMotionProps?: boolean;
|
|
8169
8245
|
custom?: unknown;
|
|
8170
8246
|
initial?: import('../..').VariantLabels | import('../..').Variant | boolean;
|
|
8171
8247
|
animate?: import('../..').VariantLabels | import('../..').Variant | import('../../animation/types').AnimationControls;
|
|
@@ -8173,26 +8249,25 @@ export declare const Reorder: {
|
|
|
8173
8249
|
variants?: {
|
|
8174
8250
|
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
8175
8251
|
};
|
|
8252
|
+
inherit?: boolean;
|
|
8176
8253
|
style?: Partial<{
|
|
8177
8254
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
8178
8255
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
8179
8256
|
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
8257
|
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
8188
8258
|
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
8189
8259
|
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
8190
8260
|
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
8191
8261
|
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
8262
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
8192
8263
|
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
8193
8264
|
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
8194
8265
|
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
8195
8266
|
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
8267
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
8268
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
8269
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
8270
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
8196
8271
|
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
8197
8272
|
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
8198
8273
|
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8204,6 +8279,11 @@ export declare const Reorder: {
|
|
|
8204
8279
|
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
8205
8280
|
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
8206
8281
|
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
8282
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
8283
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
8284
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
8285
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
8286
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
8207
8287
|
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
8208
8288
|
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
8209
8289
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8309,7 +8389,6 @@ export declare const Reorder: {
|
|
|
8309
8389
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
8310
8390
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
8311
8391
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
8312
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
8313
8392
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
8314
8393
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
8315
8394
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8331,6 +8410,7 @@ export declare const Reorder: {
|
|
|
8331
8410
|
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
8332
8411
|
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
8333
8412
|
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
8413
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
8334
8414
|
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
8335
8415
|
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
8336
8416
|
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8438,11 +8518,9 @@ export declare const Reorder: {
|
|
|
8438
8518
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
8439
8519
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
8440
8520
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
8441
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
8442
8521
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
8443
8522
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
8444
8523
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
8445
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
8446
8524
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
8447
8525
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
8448
8526
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8783,7 +8861,6 @@ export declare const Reorder: {
|
|
|
8783
8861
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
8784
8862
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
8785
8863
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
8786
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
8787
8864
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
8788
8865
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
8789
8866
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -8888,6 +8965,7 @@ export declare const Reorder: {
|
|
|
8888
8965
|
layoutRoot?: boolean;
|
|
8889
8966
|
'data-framer-portal-id'?: string;
|
|
8890
8967
|
crossfade?: boolean;
|
|
8968
|
+
layoutDependency?: any;
|
|
8891
8969
|
onBeforeLayoutMeasure?: (box: import('framer-motion').Box) => void;
|
|
8892
8970
|
onLayoutMeasure?: (box: import('framer-motion').Box, prevBox: import('framer-motion').Box) => void;
|
|
8893
8971
|
onLayoutAnimationStart?: () => void;
|