motion-v 1.0.0-alpha.4 → 1.0.0-beta.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 +1062 -265
- package/dist/es/components/animate-presence/AnimatePresence.d.ts +1 -1
- package/dist/es/components/animate-presence/use-pop-layout.mjs +2 -1
- package/dist/es/components/motion/props.d.ts +0 -6
- package/dist/es/components/motion/props.mjs +1 -3
- package/dist/es/components/motion/use-motion-state.d.ts +41 -41
- package/dist/es/components/motion/use-motion-state.mjs +5 -3
- package/dist/es/components/motion/utils.mjs +4 -2
- package/dist/es/components/reorder/index.d.ts +160 -160
- package/dist/es/components/reorder/utils.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animate/index.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animate/resolve-subjects.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animate/single-value.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/AcceleratedAnimation.mjs +4 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/BaseAnimation.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/MainThreadAnimation.mjs +2 -3
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/drivers/driver-frameloop.mjs +3 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/utils/can-animate.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/NativeAnimation.mjs +4 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/animate-elements.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/animate-style.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/animators/waapi/index.mjs +2 -9
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/generators/spring/index.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/interfaces/motion-value.mjs +3 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/interfaces/visual-element-target.mjs +3 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/animation/sequence/create.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/easing/utils/map.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/projection/node/create-projection-node.mjs +4 -24
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/VisualElement.mjs +3 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/resize/handle-element.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/index.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/observe.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/scroll/track.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/dom/viewport/index.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/svg/SVGVisualElement.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/utils/KeyframesResolver.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/utils/motion-values.mjs +1 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/render/utils/setters.mjs +2 -1
- package/dist/es/external/.pnpm/framer-motion@12.5.0/external/framer-motion/dist/es/utils/delay.mjs +2 -1
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/controls/BaseGroup.mjs +79 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/controls/Group.mjs +9 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/generators/utils/calc-duration.mjs +15 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/generators/utils/create-generator-easing.mjs +17 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/generators/utils/is-generator.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/utils/get-value-transition.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/NativeAnimationControls.mjs +81 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/utils/attach-timeline.mjs +7 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/utils/easing.mjs +37 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/animation/waapi/utils/linear.mjs +13 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/batcher.mjs +64 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/frame.mjs +10 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/microtask.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/order.mjs +17 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/render-step.mjs +70 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/frameloop/sync-time.mjs +22 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/drag/state/is-active.mjs +11 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/hover.mjs +30 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/index.mjs +74 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/utils/is-keyboard-accessible.mjs +13 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/utils/keyboard.mjs +32 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/press/utils/state.mjs +4 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/utils/capture-pointer.mjs +12 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/utils/is-node-or-child.mjs +12 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/utils/is-primary-pointer.mjs +10 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/gestures/utils/setup.mjs +15 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/stats/buffer.mjs +7 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/is-bezier-definition.mjs +4 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/resolve-elements.mjs +17 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/flags.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/linear-easing.mjs +12 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/memo.mjs +13 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/utils/supports/scroll-timeline.mjs +6 -0
- package/dist/es/external/.pnpm/motion-dom@12.5.0/external/motion-dom/dist/es/value/index.mjs +277 -0
- package/dist/es/external/.pnpm/motion-utils@12.5.0/external/motion-utils/dist/es/global-config.mjs +7 -0
- package/dist/es/features/gestures/drag/VisualElementDragControls.mjs +2 -1
- package/dist/es/features/gestures/hover/index.mjs +3 -1
- package/dist/es/features/gestures/in-view/index.mjs +2 -1
- package/dist/es/features/gestures/pan/PanSession.mjs +2 -1
- package/dist/es/features/gestures/pan/index.mjs +1 -1
- package/dist/es/features/gestures/press/index.mjs +3 -1
- package/dist/es/index.mjs +6 -1
- package/dist/es/state/motion-state.mjs +1 -1
- package/dist/es/state/style.mjs +3 -0
- package/dist/es/utils/use-animation-frame.mjs +2 -1
- package/dist/es/value/use-combine-values.mjs +3 -1
- package/dist/es/value/use-computed.mjs +2 -1
- package/dist/es/value/use-scroll.mjs +2 -1
- package/dist/es/value/use-spring.mjs +3 -1
- package/dist/es/value/use-time.mjs +2 -1
- package/dist/es/value/use-velocity.mjs +3 -1
- package/package.json +1 -1
|
@@ -35,15 +35,43 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
35
35
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
36
36
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
37
37
|
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
39
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
40
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
41
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
42
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
40
43
|
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
44
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
45
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
46
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
47
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
48
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
49
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
50
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
51
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
52
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
53
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
54
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
55
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
56
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
57
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
58
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
59
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
60
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
61
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
62
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
63
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
64
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
65
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
66
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
67
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
68
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
69
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
41
70
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
42
71
|
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
43
72
|
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
44
73
|
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
45
74
|
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
46
|
-
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
47
75
|
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
48
76
|
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
49
77
|
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -134,7 +162,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
134
162
|
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
135
163
|
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
136
164
|
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
137
|
-
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
138
165
|
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
139
166
|
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
140
167
|
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -142,9 +169,7 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
142
169
|
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
143
170
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
144
171
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
145
|
-
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
146
172
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
147
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
148
173
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
149
174
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
150
175
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -180,14 +205,11 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
180
205
|
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
181
206
|
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
182
207
|
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
183
|
-
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
184
208
|
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
185
209
|
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
186
210
|
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
187
|
-
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
188
211
|
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
189
212
|
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
190
|
-
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
191
213
|
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
192
214
|
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
193
215
|
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -258,7 +280,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
258
280
|
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
259
281
|
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
260
282
|
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
261
|
-
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
262
283
|
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
263
284
|
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
264
285
|
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -278,11 +299,9 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
278
299
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
279
300
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
280
301
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
281
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
282
302
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
283
303
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
284
304
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
285
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
286
305
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
287
306
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
288
307
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -305,7 +324,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
305
324
|
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
306
325
|
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
307
326
|
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
308
|
-
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
309
327
|
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
310
328
|
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
311
329
|
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -341,29 +359,23 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
341
359
|
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
342
360
|
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
343
361
|
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
344
|
-
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
345
362
|
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
346
363
|
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
347
364
|
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
348
365
|
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
349
|
-
|
|
366
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
350
367
|
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
351
368
|
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
352
369
|
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
353
370
|
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
354
371
|
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
355
|
-
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
356
372
|
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
357
373
|
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
358
374
|
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
359
|
-
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
360
|
-
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
361
|
-
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
362
375
|
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
363
376
|
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
364
377
|
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
365
378
|
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
366
|
-
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
367
379
|
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
368
380
|
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
369
381
|
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -434,19 +446,15 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
434
446
|
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
435
447
|
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
436
448
|
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
437
|
-
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
438
449
|
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
439
|
-
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
440
450
|
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
441
451
|
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
442
452
|
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
443
|
-
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
444
453
|
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
445
454
|
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
446
455
|
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
447
456
|
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
448
457
|
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
449
|
-
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
450
458
|
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
451
459
|
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
452
460
|
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -526,13 +534,10 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
526
534
|
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
527
535
|
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
528
536
|
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
529
|
-
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
530
537
|
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
531
538
|
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
532
539
|
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
533
540
|
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
534
|
-
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
535
|
-
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
536
541
|
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
537
542
|
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
538
543
|
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -540,23 +545,14 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
540
545
|
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
541
546
|
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
542
547
|
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
543
|
-
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
544
|
-
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
545
|
-
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
546
|
-
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
547
548
|
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
548
549
|
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
549
550
|
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
550
551
|
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
551
552
|
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
552
553
|
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
553
|
-
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
554
554
|
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
555
555
|
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
556
|
-
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
557
|
-
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
558
|
-
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
559
|
-
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
560
556
|
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
561
557
|
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
562
558
|
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -592,7 +588,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
592
588
|
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
593
589
|
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
594
590
|
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
595
|
-
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
596
591
|
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
597
592
|
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
598
593
|
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -600,7 +595,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
600
595
|
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
601
596
|
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
602
597
|
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
603
|
-
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
604
598
|
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
605
599
|
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
606
600
|
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -648,7 +642,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
648
642
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
649
643
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
650
644
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
651
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
652
645
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
653
646
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
654
647
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -699,7 +692,6 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
699
692
|
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
700
693
|
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
701
694
|
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
702
|
-
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
703
695
|
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
704
696
|
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
705
697
|
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -732,6 +724,14 @@ export declare const ReorderGroup: <T, K, V>(__VLS_props: NonNullable<Awaited<ty
|
|
|
732
724
|
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
733
725
|
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
734
726
|
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
727
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
728
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
729
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
730
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
731
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
732
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
733
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
734
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
735
735
|
}>;
|
|
736
736
|
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
737
737
|
transition?: import('../..').$Transition & {
|
|
@@ -836,15 +836,43 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
836
836
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
837
837
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
838
838
|
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
839
|
-
|
|
840
|
-
|
|
839
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
840
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
841
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
842
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
843
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
841
844
|
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
845
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
846
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
847
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
848
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
849
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
850
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
851
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
852
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
853
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
854
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
855
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
856
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
857
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
858
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
859
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
860
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
861
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
862
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
863
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
864
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
865
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
866
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
867
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
868
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
869
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
870
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
842
871
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
843
872
|
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
844
873
|
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
845
874
|
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
846
875
|
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
847
|
-
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
848
876
|
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
849
877
|
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
850
878
|
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -935,7 +963,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
935
963
|
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
936
964
|
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
937
965
|
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
938
|
-
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
939
966
|
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
940
967
|
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
941
968
|
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -943,9 +970,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
943
970
|
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
944
971
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
945
972
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
946
|
-
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
947
973
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
948
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
949
974
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
950
975
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
951
976
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -981,14 +1006,11 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
981
1006
|
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
982
1007
|
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
983
1008
|
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
984
|
-
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
985
1009
|
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
986
1010
|
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
987
1011
|
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
988
|
-
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
989
1012
|
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
990
1013
|
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
991
|
-
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
992
1014
|
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
993
1015
|
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
994
1016
|
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1059,7 +1081,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1059
1081
|
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1060
1082
|
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
1061
1083
|
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
1062
|
-
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
1063
1084
|
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
1064
1085
|
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1065
1086
|
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1079,11 +1100,9 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1079
1100
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
1080
1101
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1081
1102
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
1082
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1083
1103
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
1084
1104
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
1085
1105
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
1086
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1087
1106
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
1088
1107
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
1089
1108
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1106,7 +1125,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1106
1125
|
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
1107
1126
|
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
1108
1127
|
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1109
|
-
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1110
1128
|
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1111
1129
|
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
1112
1130
|
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1142,29 +1160,23 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1142
1160
|
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
1143
1161
|
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1144
1162
|
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
1145
|
-
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
1146
1163
|
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1147
1164
|
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
1148
1165
|
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
1149
1166
|
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
1150
|
-
|
|
1167
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
1151
1168
|
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
1152
1169
|
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1153
1170
|
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
1154
1171
|
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
1155
1172
|
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
1156
|
-
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
1157
1173
|
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
1158
1174
|
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
1159
1175
|
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
1160
|
-
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1161
|
-
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
1162
|
-
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1163
1176
|
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
1164
1177
|
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1165
1178
|
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
1166
1179
|
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
1167
|
-
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
1168
1180
|
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
1169
1181
|
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
1170
1182
|
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1235,19 +1247,15 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1235
1247
|
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
1236
1248
|
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
1237
1249
|
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
1238
|
-
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
1239
1250
|
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1240
|
-
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
1241
1251
|
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
1242
1252
|
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
1243
1253
|
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
1244
|
-
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1245
1254
|
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
1246
1255
|
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
1247
1256
|
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
1248
1257
|
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
1249
1258
|
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1250
|
-
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1251
1259
|
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
1252
1260
|
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
1253
1261
|
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1327,13 +1335,10 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1327
1335
|
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
1328
1336
|
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
1329
1337
|
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
1330
|
-
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
1331
1338
|
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
1332
1339
|
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
1333
1340
|
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
1334
1341
|
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
1335
|
-
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
1336
|
-
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
1337
1342
|
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
1338
1343
|
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
1339
1344
|
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1341,23 +1346,14 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1341
1346
|
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
1342
1347
|
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
1343
1348
|
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
1344
|
-
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
1345
|
-
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1346
|
-
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1347
|
-
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1348
1349
|
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1349
1350
|
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1350
1351
|
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1351
1352
|
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1352
1353
|
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1353
1354
|
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1354
|
-
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
1355
1355
|
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1356
1356
|
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1357
|
-
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1358
|
-
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1359
|
-
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1360
|
-
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
1361
1357
|
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1362
1358
|
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1363
1359
|
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1393,7 +1389,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1393
1389
|
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
1394
1390
|
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
1395
1391
|
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
1396
|
-
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
1397
1392
|
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1398
1393
|
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
1399
1394
|
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1401,7 +1396,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1401
1396
|
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
1402
1397
|
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
1403
1398
|
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
1404
|
-
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
1405
1399
|
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
1406
1400
|
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
1407
1401
|
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1449,7 +1443,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1449
1443
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1450
1444
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
1451
1445
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
1452
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
1453
1446
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
1454
1447
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
1455
1448
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1500,7 +1493,6 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1500
1493
|
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
1501
1494
|
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
1502
1495
|
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
1503
|
-
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
1504
1496
|
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
1505
1497
|
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1506
1498
|
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1533,6 +1525,14 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
1533
1525
|
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
1534
1526
|
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1535
1527
|
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
1528
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1529
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1530
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1531
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
1532
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
1533
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
1534
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
1535
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
1536
1536
|
}>;
|
|
1537
1537
|
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
1538
1538
|
transition?: import('../..').$Transition & {
|
|
@@ -1638,15 +1638,43 @@ export declare const Reorder: {
|
|
|
1638
1638
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
1639
1639
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
1640
1640
|
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
1641
|
-
|
|
1642
|
-
|
|
1641
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
1642
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
1643
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
1644
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
1645
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
1643
1646
|
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
1647
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
1648
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
1649
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
1650
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
1651
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
1652
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1653
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
1654
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
1655
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
1656
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
1657
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
1658
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1659
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
1660
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
1661
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1662
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1663
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
1664
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1665
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
1666
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1667
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
1668
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1669
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1670
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
1671
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1672
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
1644
1673
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1645
1674
|
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1646
1675
|
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
1647
1676
|
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
1648
1677
|
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
1649
|
-
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
1650
1678
|
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
1651
1679
|
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1652
1680
|
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1737,7 +1765,6 @@ export declare const Reorder: {
|
|
|
1737
1765
|
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
1738
1766
|
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
1739
1767
|
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
1740
|
-
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
1741
1768
|
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
1742
1769
|
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
1743
1770
|
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1745,9 +1772,7 @@ export declare const Reorder: {
|
|
|
1745
1772
|
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
1746
1773
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
1747
1774
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1748
|
-
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
1749
1775
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
1750
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
1751
1776
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
1752
1777
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
1753
1778
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1783,14 +1808,11 @@ export declare const Reorder: {
|
|
|
1783
1808
|
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
1784
1809
|
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
1785
1810
|
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
1786
|
-
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
1787
1811
|
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
1788
1812
|
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
1789
1813
|
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
1790
|
-
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
1791
1814
|
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
1792
1815
|
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
1793
|
-
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1794
1816
|
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
1795
1817
|
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
1796
1818
|
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1861,7 +1883,6 @@ export declare const Reorder: {
|
|
|
1861
1883
|
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1862
1884
|
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
1863
1885
|
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
1864
|
-
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
1865
1886
|
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
1866
1887
|
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1867
1888
|
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1881,11 +1902,9 @@ export declare const Reorder: {
|
|
|
1881
1902
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
1882
1903
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1883
1904
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
1884
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
1885
1905
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
1886
1906
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
1887
1907
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
1888
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
1889
1908
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
1890
1909
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
1891
1910
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1908,7 +1927,6 @@ export declare const Reorder: {
|
|
|
1908
1927
|
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
1909
1928
|
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
1910
1929
|
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1911
|
-
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
1912
1930
|
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
1913
1931
|
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
1914
1932
|
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -1944,29 +1962,23 @@ export declare const Reorder: {
|
|
|
1944
1962
|
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
1945
1963
|
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
1946
1964
|
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
1947
|
-
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
1948
1965
|
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
1949
1966
|
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
1950
1967
|
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
1951
1968
|
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
1952
|
-
|
|
1969
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
1953
1970
|
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
1954
1971
|
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
1955
1972
|
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
1956
1973
|
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
1957
1974
|
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
1958
|
-
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
1959
1975
|
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
1960
1976
|
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
1961
1977
|
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
1962
|
-
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
1963
|
-
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
1964
|
-
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
1965
1978
|
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
1966
1979
|
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
1967
1980
|
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
1968
1981
|
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
1969
|
-
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
1970
1982
|
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
1971
1983
|
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
1972
1984
|
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2037,19 +2049,15 @@ export declare const Reorder: {
|
|
|
2037
2049
|
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
2038
2050
|
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2039
2051
|
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
2040
|
-
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
2041
2052
|
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2042
|
-
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
2043
2053
|
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
2044
2054
|
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
2045
2055
|
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
2046
|
-
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2047
2056
|
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
2048
2057
|
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
2049
2058
|
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
2050
2059
|
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2051
2060
|
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2052
|
-
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2053
2061
|
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
2054
2062
|
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
2055
2063
|
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2129,13 +2137,10 @@ export declare const Reorder: {
|
|
|
2129
2137
|
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
2130
2138
|
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
2131
2139
|
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
2132
|
-
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
2133
2140
|
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
2134
2141
|
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
2135
2142
|
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
2136
2143
|
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2137
|
-
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
2138
|
-
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
2139
2144
|
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
2140
2145
|
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
2141
2146
|
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2143,23 +2148,14 @@ export declare const Reorder: {
|
|
|
2143
2148
|
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
2144
2149
|
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2145
2150
|
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2146
|
-
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
2147
|
-
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2148
|
-
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2149
|
-
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2150
2151
|
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2151
2152
|
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2152
2153
|
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2153
2154
|
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2154
2155
|
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2155
2156
|
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2156
|
-
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
2157
2157
|
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2158
2158
|
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2159
|
-
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2160
|
-
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2161
|
-
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2162
|
-
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
2163
2159
|
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
2164
2160
|
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2165
2161
|
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2195,7 +2191,6 @@ export declare const Reorder: {
|
|
|
2195
2191
|
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2196
2192
|
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
2197
2193
|
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
2198
|
-
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
2199
2194
|
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
2200
2195
|
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
2201
2196
|
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2203,7 +2198,6 @@ export declare const Reorder: {
|
|
|
2203
2198
|
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
2204
2199
|
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
2205
2200
|
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
2206
|
-
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
2207
2201
|
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
2208
2202
|
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
2209
2203
|
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2251,7 +2245,6 @@ export declare const Reorder: {
|
|
|
2251
2245
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2252
2246
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
2253
2247
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
2254
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
2255
2248
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
2256
2249
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
2257
2250
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2302,7 +2295,6 @@ export declare const Reorder: {
|
|
|
2302
2295
|
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
2303
2296
|
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
2304
2297
|
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
2305
|
-
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
2306
2298
|
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
2307
2299
|
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2308
2300
|
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2335,6 +2327,14 @@ export declare const Reorder: {
|
|
|
2335
2327
|
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
2336
2328
|
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
2337
2329
|
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
2330
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2331
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2332
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2333
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
2334
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2335
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2336
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2337
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
2338
2338
|
}>;
|
|
2339
2339
|
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
2340
2340
|
transition?: import('../..').$Transition & {
|
|
@@ -2439,15 +2439,43 @@ export declare const Reorder: {
|
|
|
2439
2439
|
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
2440
2440
|
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
2441
2441
|
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
2442
|
-
|
|
2443
|
-
|
|
2442
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
2443
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
2444
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
2445
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
2446
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
2444
2447
|
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
2448
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
2449
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
2450
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
2451
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
2452
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
2453
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
2454
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
2455
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
2456
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
2457
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
2458
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
2459
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2460
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
2461
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
2462
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2463
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2464
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
2465
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2466
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
2467
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
2468
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
2469
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
2470
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
2471
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
2472
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2473
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
2445
2474
|
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2446
2475
|
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
2447
2476
|
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
2448
2477
|
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
2449
2478
|
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
2450
|
-
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
2451
2479
|
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
2452
2480
|
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2453
2481
|
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2538,7 +2566,6 @@ export declare const Reorder: {
|
|
|
2538
2566
|
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
2539
2567
|
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
2540
2568
|
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
2541
|
-
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
2542
2569
|
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
2543
2570
|
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
2544
2571
|
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2546,9 +2573,7 @@ export declare const Reorder: {
|
|
|
2546
2573
|
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
2547
2574
|
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
2548
2575
|
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2549
|
-
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
2550
2576
|
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
2551
|
-
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
2552
2577
|
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
2553
2578
|
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
2554
2579
|
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2584,14 +2609,11 @@ export declare const Reorder: {
|
|
|
2584
2609
|
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
2585
2610
|
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
2586
2611
|
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
2587
|
-
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2588
2612
|
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
2589
2613
|
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
2590
2614
|
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
2591
|
-
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
2592
2615
|
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
2593
2616
|
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
2594
|
-
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
2595
2617
|
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
2596
2618
|
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
2597
2619
|
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2662,7 +2684,6 @@ export declare const Reorder: {
|
|
|
2662
2684
|
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
2663
2685
|
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
2664
2686
|
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
2665
|
-
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
2666
2687
|
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
2667
2688
|
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2668
2689
|
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2682,11 +2703,9 @@ export declare const Reorder: {
|
|
|
2682
2703
|
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
2683
2704
|
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
2684
2705
|
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
2685
|
-
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
2686
2706
|
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
2687
2707
|
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
2688
2708
|
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
2689
|
-
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
2690
2709
|
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
2691
2710
|
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
2692
2711
|
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2709,7 +2728,6 @@ export declare const Reorder: {
|
|
|
2709
2728
|
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2710
2729
|
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
2711
2730
|
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2712
|
-
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
2713
2731
|
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
2714
2732
|
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
2715
2733
|
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2745,29 +2763,23 @@ export declare const Reorder: {
|
|
|
2745
2763
|
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
2746
2764
|
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
2747
2765
|
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
2748
|
-
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
2749
2766
|
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
2750
2767
|
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
2751
2768
|
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
2752
2769
|
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
2753
|
-
|
|
2770
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
2754
2771
|
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
2755
2772
|
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
2756
2773
|
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
2757
2774
|
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
2758
2775
|
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
2759
|
-
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
2760
2776
|
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
2761
2777
|
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
2762
2778
|
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
2763
|
-
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
2764
|
-
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
2765
|
-
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2766
2779
|
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
2767
2780
|
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2768
2781
|
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
2769
2782
|
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
2770
|
-
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
2771
2783
|
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
2772
2784
|
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
2773
2785
|
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2838,19 +2850,15 @@ export declare const Reorder: {
|
|
|
2838
2850
|
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
2839
2851
|
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2840
2852
|
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
2841
|
-
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
2842
2853
|
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2843
|
-
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
2844
2854
|
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
2845
2855
|
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
2846
2856
|
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
2847
|
-
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
2848
2857
|
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
2849
2858
|
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
2850
2859
|
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
2851
2860
|
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2852
2861
|
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
2853
|
-
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2854
2862
|
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
2855
2863
|
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
2856
2864
|
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2930,13 +2938,10 @@ export declare const Reorder: {
|
|
|
2930
2938
|
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
2931
2939
|
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
2932
2940
|
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
2933
|
-
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
2934
2941
|
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
2935
2942
|
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
2936
2943
|
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
2937
2944
|
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2938
|
-
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
2939
|
-
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
2940
2945
|
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
2941
2946
|
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
2942
2947
|
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2944,23 +2949,14 @@ export declare const Reorder: {
|
|
|
2944
2949
|
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
2945
2950
|
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2946
2951
|
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
2947
|
-
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
2948
|
-
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2949
|
-
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2950
|
-
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2951
2952
|
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2952
2953
|
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2953
2954
|
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2954
2955
|
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2955
2956
|
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2956
2957
|
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2957
|
-
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
2958
2958
|
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2959
2959
|
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2960
|
-
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
2961
|
-
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
2962
|
-
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
2963
|
-
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
2964
2960
|
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
2965
2961
|
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
2966
2962
|
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -2996,7 +2992,6 @@ export declare const Reorder: {
|
|
|
2996
2992
|
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
2997
2993
|
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
2998
2994
|
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
2999
|
-
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
3000
2995
|
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
3001
2996
|
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
3002
2997
|
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3004,7 +2999,6 @@ export declare const Reorder: {
|
|
|
3004
2999
|
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
3005
3000
|
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
3006
3001
|
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
3007
|
-
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
3008
3002
|
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
3009
3003
|
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
3010
3004
|
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3052,7 +3046,6 @@ export declare const Reorder: {
|
|
|
3052
3046
|
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
3053
3047
|
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
3054
3048
|
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
3055
|
-
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
3056
3049
|
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
3057
3050
|
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
3058
3051
|
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3103,7 +3096,6 @@ export declare const Reorder: {
|
|
|
3103
3096
|
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
3104
3097
|
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
3105
3098
|
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
3106
|
-
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
3107
3099
|
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
3108
3100
|
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
3109
3101
|
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
@@ -3136,6 +3128,14 @@ export declare const Reorder: {
|
|
|
3136
3128
|
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
3137
3129
|
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
3138
3130
|
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
3131
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
3132
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
3133
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
3134
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
3135
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
3136
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
3137
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
3138
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
3139
3139
|
}>;
|
|
3140
3140
|
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
3141
3141
|
transition?: import('../..').$Transition & {
|