motion-v 0.13.1 → 1.0.0-alpha.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 +1000 -961
- package/dist/es/components/index.d.ts +2 -0
- package/dist/es/components/lazy-motion/context.d.ts +7 -0
- package/dist/es/components/lazy-motion/context.mjs +6 -0
- package/dist/es/components/lazy-motion/index.d.ts +26 -0
- package/dist/es/components/lazy-motion/index.mjs +36 -0
- package/dist/es/components/motion/index.d.ts +179 -2
- package/dist/es/components/motion/index.mjs +8 -0
- package/dist/es/components/motion/m.d.ts +178 -0
- package/dist/es/components/motion/m.mjs +7 -0
- package/dist/es/components/motion/props.d.ts +227 -0
- package/dist/es/components/motion/props.mjs +93 -0
- package/dist/es/components/motion/{Motion.d.ts → types.d.ts} +12 -9
- package/dist/es/components/motion/use-motion-state.d.ts +790 -0
- package/dist/es/components/motion/use-motion-state.mjs +115 -0
- package/dist/es/components/motion/utils.d.ts +20 -5
- package/dist/es/components/motion/utils.mjs +122 -1
- package/dist/es/components/reorder/Group.vue.mjs +5 -2
- package/dist/es/components/reorder/Item.vue.mjs +5 -2
- package/dist/es/components/reorder/index.d.ts +12 -0
- package/dist/es/features/animation/animation.d.ts +32 -0
- package/dist/es/features/animation/animation.mjs +152 -5
- package/dist/es/features/animation/types.d.ts +17 -0
- package/dist/es/features/dom-animation.d.ts +2 -0
- package/dist/es/features/dom-animation.mjs +19 -0
- package/dist/es/features/dom-max.d.ts +2 -0
- package/dist/es/features/dom-max.mjs +23 -0
- package/dist/es/features/feature-manager.mjs +20 -20
- package/dist/es/features/gestures/drag/VisualElementDragControls.d.ts +1 -1
- package/dist/es/features/gestures/hover/index.d.ts +2 -0
- package/dist/es/features/gestures/hover/index.mjs +13 -2
- package/dist/es/features/gestures/in-view/index.mjs +3 -3
- package/dist/es/features/gestures/index.d.ts +0 -1
- package/dist/es/features/gestures/press/index.mjs +17 -19
- package/dist/es/features/index.d.ts +2 -0
- package/dist/es/index.d.ts +1 -0
- package/dist/es/index.mjs +17 -9
- package/dist/es/state/motion-state.d.ts +6 -5
- package/dist/es/state/motion-state.mjs +7 -12
- package/dist/es/state/style.mjs +2 -2
- package/dist/es/state/transform.d.ts +0 -1
- package/dist/es/state/transform.mjs +0 -1
- package/dist/es/types/state.d.ts +1 -0
- package/dist/nuxt/index.cjs +3 -1
- package/dist/nuxt/index.mjs +3 -1
- package/dist/resolver/index.cjs +3 -1
- package/dist/resolver/index.mjs +3 -1
- package/package.json +1 -1
- package/dist/es/components/motion/Motion.vue.mjs +0 -241
- package/dist/es/components/motion/Motion.vue2.mjs +0 -4
- package/dist/es/components/motion/NameSpace.d.ts +0 -15
- package/dist/es/components/motion/NameSpace.mjs +0 -48
- package/dist/es/components/motion/Primitive.d.ts +0 -57
- package/dist/es/components/motion/Primitive.mjs +0 -45
- package/dist/es/components/motion/Slot.d.ts +0 -5
- package/dist/es/components/motion/Slot.mjs +0 -36
- package/dist/es/components/motion/renderSlotFragments.mjs +0 -13
- package/dist/es/features/gestures/base.d.ts +0 -8
- package/dist/es/state/animate-updates.d.ts +0 -20
- package/dist/es/state/animate-updates.mjs +0 -147
- package/dist/es/utils/noop.d.ts +0 -1
|
@@ -0,0 +1,790 @@
|
|
|
1
|
+
import { MotionProps } from './types';
|
|
2
|
+
import { MotionState } from '../../state';
|
|
3
|
+
export declare function useMotionState(props: MotionProps): {
|
|
4
|
+
getProps: () => {
|
|
5
|
+
lazyMotionContext: import('../lazy-motion/context').LazyMotionContext;
|
|
6
|
+
layoutId: string;
|
|
7
|
+
transition: import('../..').$Transition & {
|
|
8
|
+
layout?: import('../..').$Transition;
|
|
9
|
+
};
|
|
10
|
+
layoutGroup: import('../context').LayoutGroupState;
|
|
11
|
+
motionConfig: import('../motion-config/types').MotionConfigState;
|
|
12
|
+
inViewOptions: import('../../features/gestures/in-view/types').InViewOptions & {
|
|
13
|
+
once?: boolean;
|
|
14
|
+
};
|
|
15
|
+
animatePresenceContext: import('../presence').PresenceContext;
|
|
16
|
+
initial: false | import('../..').VariantLabels | import('../..').Variant;
|
|
17
|
+
as?: "div";
|
|
18
|
+
asChild?: boolean;
|
|
19
|
+
hover?: import('../..').Options["hover"];
|
|
20
|
+
press?: import('../..').Options["press"];
|
|
21
|
+
inView?: import('../..').Options["inView"];
|
|
22
|
+
focus?: import('../..').Options["focus"];
|
|
23
|
+
whileDrag?: import('../..').Options["whileDrag"];
|
|
24
|
+
whileHover?: import('../..').Options["whileHover"];
|
|
25
|
+
whilePress?: import('../..').Options["whilePress"];
|
|
26
|
+
whileInView?: import('../..').Options["whileInView"];
|
|
27
|
+
whileFocus?: import('../..').Options["whileFocus"];
|
|
28
|
+
forwardMotionProps?: boolean;
|
|
29
|
+
features?: import('../../features').Feature[];
|
|
30
|
+
ignoreStrict?: boolean;
|
|
31
|
+
custom?: unknown;
|
|
32
|
+
animate?: import('../..').VariantLabels | import('../..').Variant | import('../../animation/types').AnimationControls;
|
|
33
|
+
exit?: import('../..').VariantLabels | import('../..').Variant;
|
|
34
|
+
variants?: {
|
|
35
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
36
|
+
};
|
|
37
|
+
inherit?: boolean;
|
|
38
|
+
style?: Partial<{
|
|
39
|
+
[x: number]: string | number | import('motion-dom').MotionValue<any>;
|
|
40
|
+
[x: `--${string}`]: string | number | import('motion-dom').MotionValue<any>;
|
|
41
|
+
string?: string | number | import('motion-dom').MotionValue<any>;
|
|
42
|
+
end?: string | number | import('motion-dom').MotionValue<any>;
|
|
43
|
+
x?: string | number | import('motion-dom').MotionValue<any>;
|
|
44
|
+
y?: string | number | import('motion-dom').MotionValue<any>;
|
|
45
|
+
position?: string | number | import('motion-dom').MotionValue<any>;
|
|
46
|
+
page?: string | number | import('motion-dom').MotionValue<any>;
|
|
47
|
+
[Symbol.iterator]?: string | number | import('motion-dom').MotionValue<any>;
|
|
48
|
+
top?: string | number | import('motion-dom').MotionValue<any>;
|
|
49
|
+
right?: string | number | import('motion-dom').MotionValue<any>;
|
|
50
|
+
bottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
51
|
+
left?: string | number | import('motion-dom').MotionValue<any>;
|
|
52
|
+
readonly length?: string | number | import('motion-dom').MotionValue<any>;
|
|
53
|
+
filter?: string | number | import('motion-dom').MotionValue<any>;
|
|
54
|
+
fill?: string | number | import('motion-dom').MotionValue<any>;
|
|
55
|
+
values?: string | number | import('motion-dom').MotionValue<any>;
|
|
56
|
+
all?: string | number | import('motion-dom').MotionValue<any>;
|
|
57
|
+
clear?: string | number | import('motion-dom').MotionValue<any>;
|
|
58
|
+
willChange?: string | number | import('motion-dom').MotionValue<any>;
|
|
59
|
+
rotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
60
|
+
scale?: string | number | import('motion-dom').MotionValue<any>;
|
|
61
|
+
perspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
62
|
+
transition?: string | number | import('motion-dom').MotionValue<any>;
|
|
63
|
+
translate?: string | number | import('motion-dom').MotionValue<any>;
|
|
64
|
+
from?: string | number | import('motion-dom').MotionValue<any>;
|
|
65
|
+
resize?: string | number | import('motion-dom').MotionValue<any>;
|
|
66
|
+
transform?: string | number | import('motion-dom').MotionValue<any>;
|
|
67
|
+
offset?: string | number | import('motion-dom').MotionValue<any>;
|
|
68
|
+
clipPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
69
|
+
marker?: string | number | import('motion-dom').MotionValue<any>;
|
|
70
|
+
mask?: string | number | import('motion-dom').MotionValue<any>;
|
|
71
|
+
path?: string | number | import('motion-dom').MotionValue<any>;
|
|
72
|
+
direction?: string | number | import('motion-dom').MotionValue<any>;
|
|
73
|
+
z?: string | number | import('motion-dom').MotionValue<any>;
|
|
74
|
+
accentColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
75
|
+
alignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
76
|
+
alignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
77
|
+
alignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
78
|
+
alignmentBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
79
|
+
animation?: string | number | import('motion-dom').MotionValue<any>;
|
|
80
|
+
animationComposition?: string | number | import('motion-dom').MotionValue<any>;
|
|
81
|
+
animationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
82
|
+
animationDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
83
|
+
animationDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
84
|
+
animationFillMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
85
|
+
animationIterationCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
86
|
+
animationName?: string | number | import('motion-dom').MotionValue<any>;
|
|
87
|
+
animationPlayState?: string | number | import('motion-dom').MotionValue<any>;
|
|
88
|
+
animationTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
89
|
+
appearance?: string | number | import('motion-dom').MotionValue<any>;
|
|
90
|
+
aspectRatio?: string | number | import('motion-dom').MotionValue<any>;
|
|
91
|
+
backdropFilter?: string | number | import('motion-dom').MotionValue<any>;
|
|
92
|
+
backfaceVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
93
|
+
background?: string | number | import('motion-dom').MotionValue<any>;
|
|
94
|
+
backgroundAttachment?: string | number | import('motion-dom').MotionValue<any>;
|
|
95
|
+
backgroundBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
96
|
+
backgroundClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
97
|
+
backgroundColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
98
|
+
backgroundImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
99
|
+
backgroundOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
100
|
+
backgroundPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
101
|
+
backgroundPositionX?: string | number | import('motion-dom').MotionValue<any>;
|
|
102
|
+
backgroundPositionY?: string | number | import('motion-dom').MotionValue<any>;
|
|
103
|
+
backgroundRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
104
|
+
backgroundSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
105
|
+
baselineShift?: string | number | import('motion-dom').MotionValue<any>;
|
|
106
|
+
baselineSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
107
|
+
blockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
108
|
+
border?: string | number | import('motion-dom').MotionValue<any>;
|
|
109
|
+
borderBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
110
|
+
borderBlockColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
111
|
+
borderBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
112
|
+
borderBlockEndColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
113
|
+
borderBlockEndStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
114
|
+
borderBlockEndWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
115
|
+
borderBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
116
|
+
borderBlockStartColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
117
|
+
borderBlockStartStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
118
|
+
borderBlockStartWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
119
|
+
borderBlockStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
120
|
+
borderBlockWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
121
|
+
borderBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
122
|
+
borderBottomColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
123
|
+
borderBottomLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
124
|
+
borderBottomRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
125
|
+
borderBottomStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
126
|
+
borderBottomWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
127
|
+
borderCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
128
|
+
borderColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
129
|
+
borderEndEndRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
130
|
+
borderEndStartRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
131
|
+
borderImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
132
|
+
borderImageOutset?: string | number | import('motion-dom').MotionValue<any>;
|
|
133
|
+
borderImageRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
134
|
+
borderImageSlice?: string | number | import('motion-dom').MotionValue<any>;
|
|
135
|
+
borderImageSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
136
|
+
borderImageWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
137
|
+
borderInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
138
|
+
borderInlineColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
139
|
+
borderInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
140
|
+
borderInlineEndColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
141
|
+
borderInlineEndStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
142
|
+
borderInlineEndWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
143
|
+
borderInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
144
|
+
borderInlineStartColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
145
|
+
borderInlineStartStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
146
|
+
borderInlineStartWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
147
|
+
borderInlineStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
148
|
+
borderInlineWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
149
|
+
borderLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
150
|
+
borderLeftColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
151
|
+
borderLeftStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
152
|
+
borderLeftWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
153
|
+
borderRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
154
|
+
borderRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
155
|
+
borderRightColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
156
|
+
borderRightStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
157
|
+
borderRightWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
158
|
+
borderSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
159
|
+
borderStartEndRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
160
|
+
borderStartStartRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
161
|
+
borderStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
162
|
+
borderTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
163
|
+
borderTopColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
164
|
+
borderTopLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
165
|
+
borderTopRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
166
|
+
borderTopStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
167
|
+
borderTopWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
168
|
+
borderWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
169
|
+
boxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
170
|
+
boxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
171
|
+
breakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
172
|
+
breakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
173
|
+
breakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
174
|
+
captionSide?: string | number | import('motion-dom').MotionValue<any>;
|
|
175
|
+
caretColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
176
|
+
clip?: string | number | import('motion-dom').MotionValue<any>;
|
|
177
|
+
clipRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
178
|
+
color?: string | number | import('motion-dom').MotionValue<any>;
|
|
179
|
+
colorInterpolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
180
|
+
colorInterpolationFilters?: string | number | import('motion-dom').MotionValue<any>;
|
|
181
|
+
colorScheme?: string | number | import('motion-dom').MotionValue<any>;
|
|
182
|
+
columnCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
183
|
+
columnFill?: string | number | import('motion-dom').MotionValue<any>;
|
|
184
|
+
columnGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
185
|
+
columnRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
186
|
+
columnRuleColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
187
|
+
columnRuleStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
188
|
+
columnRuleWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
189
|
+
columnSpan?: string | number | import('motion-dom').MotionValue<any>;
|
|
190
|
+
columnWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
191
|
+
columns?: string | number | import('motion-dom').MotionValue<any>;
|
|
192
|
+
contain?: string | number | import('motion-dom').MotionValue<any>;
|
|
193
|
+
containIntrinsicBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
194
|
+
containIntrinsicHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
195
|
+
containIntrinsicInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
196
|
+
containIntrinsicSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
197
|
+
containIntrinsicWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
198
|
+
container?: string | number | import('motion-dom').MotionValue<any>;
|
|
199
|
+
containerName?: string | number | import('motion-dom').MotionValue<any>;
|
|
200
|
+
containerType?: string | number | import('motion-dom').MotionValue<any>;
|
|
201
|
+
content?: string | number | import('motion-dom').MotionValue<any>;
|
|
202
|
+
contentVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
203
|
+
counterIncrement?: string | number | import('motion-dom').MotionValue<any>;
|
|
204
|
+
counterReset?: string | number | import('motion-dom').MotionValue<any>;
|
|
205
|
+
counterSet?: string | number | import('motion-dom').MotionValue<any>;
|
|
206
|
+
cssFloat?: string | number | import('motion-dom').MotionValue<any>;
|
|
207
|
+
cssText?: string | number | import('motion-dom').MotionValue<any>;
|
|
208
|
+
cursor?: string | number | import('motion-dom').MotionValue<any>;
|
|
209
|
+
cx?: string | number | import('motion-dom').MotionValue<any>;
|
|
210
|
+
cy?: string | number | import('motion-dom').MotionValue<any>;
|
|
211
|
+
d?: string | number | import('motion-dom').MotionValue<any>;
|
|
212
|
+
display?: string | number | import('motion-dom').MotionValue<any>;
|
|
213
|
+
dominantBaseline?: string | number | import('motion-dom').MotionValue<any>;
|
|
214
|
+
emptyCells?: string | number | import('motion-dom').MotionValue<any>;
|
|
215
|
+
fillOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
216
|
+
fillRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
217
|
+
flex?: string | number | import('motion-dom').MotionValue<any>;
|
|
218
|
+
flexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
219
|
+
flexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
220
|
+
flexFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
221
|
+
flexGrow?: string | number | import('motion-dom').MotionValue<any>;
|
|
222
|
+
flexShrink?: string | number | import('motion-dom').MotionValue<any>;
|
|
223
|
+
flexWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
224
|
+
float?: string | number | import('motion-dom').MotionValue<any>;
|
|
225
|
+
floodColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
226
|
+
floodOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
227
|
+
font?: string | number | import('motion-dom').MotionValue<any>;
|
|
228
|
+
fontFamily?: string | number | import('motion-dom').MotionValue<any>;
|
|
229
|
+
fontFeatureSettings?: string | number | import('motion-dom').MotionValue<any>;
|
|
230
|
+
fontKerning?: string | number | import('motion-dom').MotionValue<any>;
|
|
231
|
+
fontOpticalSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
232
|
+
fontPalette?: string | number | import('motion-dom').MotionValue<any>;
|
|
233
|
+
fontSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
234
|
+
fontSizeAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
235
|
+
fontStretch?: string | number | import('motion-dom').MotionValue<any>;
|
|
236
|
+
fontStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
237
|
+
fontSynthesis?: string | number | import('motion-dom').MotionValue<any>;
|
|
238
|
+
fontSynthesisSmallCaps?: string | number | import('motion-dom').MotionValue<any>;
|
|
239
|
+
fontSynthesisStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
240
|
+
fontSynthesisWeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
241
|
+
fontVariant?: string | number | import('motion-dom').MotionValue<any>;
|
|
242
|
+
fontVariantAlternates?: string | number | import('motion-dom').MotionValue<any>;
|
|
243
|
+
fontVariantCaps?: string | number | import('motion-dom').MotionValue<any>;
|
|
244
|
+
fontVariantEastAsian?: string | number | import('motion-dom').MotionValue<any>;
|
|
245
|
+
fontVariantLigatures?: string | number | import('motion-dom').MotionValue<any>;
|
|
246
|
+
fontVariantNumeric?: string | number | import('motion-dom').MotionValue<any>;
|
|
247
|
+
fontVariantPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
248
|
+
fontVariationSettings?: string | number | import('motion-dom').MotionValue<any>;
|
|
249
|
+
fontWeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
250
|
+
forcedColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
251
|
+
gap?: string | number | import('motion-dom').MotionValue<any>;
|
|
252
|
+
grid?: string | number | import('motion-dom').MotionValue<any>;
|
|
253
|
+
gridArea?: string | number | import('motion-dom').MotionValue<any>;
|
|
254
|
+
gridAutoColumns?: string | number | import('motion-dom').MotionValue<any>;
|
|
255
|
+
gridAutoFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
256
|
+
gridAutoRows?: string | number | import('motion-dom').MotionValue<any>;
|
|
257
|
+
gridColumn?: string | number | import('motion-dom').MotionValue<any>;
|
|
258
|
+
gridColumnEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
259
|
+
gridColumnGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
260
|
+
gridColumnStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
261
|
+
gridGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
262
|
+
gridRow?: string | number | import('motion-dom').MotionValue<any>;
|
|
263
|
+
gridRowEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
264
|
+
gridRowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
265
|
+
gridRowStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
266
|
+
gridTemplate?: string | number | import('motion-dom').MotionValue<any>;
|
|
267
|
+
gridTemplateAreas?: string | number | import('motion-dom').MotionValue<any>;
|
|
268
|
+
gridTemplateColumns?: string | number | import('motion-dom').MotionValue<any>;
|
|
269
|
+
gridTemplateRows?: string | number | import('motion-dom').MotionValue<any>;
|
|
270
|
+
height?: string | number | import('motion-dom').MotionValue<any>;
|
|
271
|
+
hyphenateCharacter?: string | number | import('motion-dom').MotionValue<any>;
|
|
272
|
+
hyphens?: string | number | import('motion-dom').MotionValue<any>;
|
|
273
|
+
imageOrientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
274
|
+
imageRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
275
|
+
inlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
276
|
+
inset?: string | number | import('motion-dom').MotionValue<any>;
|
|
277
|
+
insetBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
278
|
+
insetBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
279
|
+
insetBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
280
|
+
insetInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
281
|
+
insetInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
282
|
+
insetInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
283
|
+
isolation?: string | number | import('motion-dom').MotionValue<any>;
|
|
284
|
+
justifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
285
|
+
justifyItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
286
|
+
justifySelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
287
|
+
letterSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
288
|
+
lightingColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
289
|
+
lineBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
290
|
+
lineHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
291
|
+
listStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
292
|
+
listStyleImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
293
|
+
listStylePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
294
|
+
listStyleType?: string | number | import('motion-dom').MotionValue<any>;
|
|
295
|
+
margin?: string | number | import('motion-dom').MotionValue<any>;
|
|
296
|
+
marginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
297
|
+
marginBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
298
|
+
marginBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
299
|
+
marginBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
300
|
+
marginInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
301
|
+
marginInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
302
|
+
marginInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
303
|
+
marginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
304
|
+
marginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
305
|
+
marginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
306
|
+
markerEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
307
|
+
markerMid?: string | number | import('motion-dom').MotionValue<any>;
|
|
308
|
+
markerStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
309
|
+
maskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
310
|
+
maskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
311
|
+
maskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
312
|
+
maskMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
313
|
+
maskOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
314
|
+
maskPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
315
|
+
maskRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
316
|
+
maskSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
317
|
+
maskType?: string | number | import('motion-dom').MotionValue<any>;
|
|
318
|
+
mathDepth?: string | number | import('motion-dom').MotionValue<any>;
|
|
319
|
+
mathStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
320
|
+
maxBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
321
|
+
maxHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
322
|
+
maxInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
323
|
+
maxWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
324
|
+
minBlockSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
325
|
+
minHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
326
|
+
minInlineSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
327
|
+
minWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
328
|
+
mixBlendMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
329
|
+
objectFit?: string | number | import('motion-dom').MotionValue<any>;
|
|
330
|
+
objectPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
331
|
+
offsetAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
332
|
+
offsetDistance?: string | number | import('motion-dom').MotionValue<any>;
|
|
333
|
+
offsetPath?: string | number | import('motion-dom').MotionValue<any>;
|
|
334
|
+
offsetPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
335
|
+
offsetRotate?: string | number | import('motion-dom').MotionValue<any>;
|
|
336
|
+
opacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
337
|
+
order?: string | number | import('motion-dom').MotionValue<any>;
|
|
338
|
+
orphans?: string | number | import('motion-dom').MotionValue<any>;
|
|
339
|
+
outline?: string | number | import('motion-dom').MotionValue<any>;
|
|
340
|
+
outlineColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
341
|
+
outlineOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
342
|
+
outlineStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
343
|
+
outlineWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
344
|
+
overflow?: string | number | import('motion-dom').MotionValue<any>;
|
|
345
|
+
overflowAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
346
|
+
overflowClipMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
347
|
+
overflowWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
348
|
+
overflowX?: string | number | import('motion-dom').MotionValue<any>;
|
|
349
|
+
overflowY?: string | number | import('motion-dom').MotionValue<any>;
|
|
350
|
+
overscrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
351
|
+
overscrollBehaviorBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
352
|
+
overscrollBehaviorInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
353
|
+
overscrollBehaviorX?: string | number | import('motion-dom').MotionValue<any>;
|
|
354
|
+
overscrollBehaviorY?: string | number | import('motion-dom').MotionValue<any>;
|
|
355
|
+
padding?: string | number | import('motion-dom').MotionValue<any>;
|
|
356
|
+
paddingBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
357
|
+
paddingBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
358
|
+
paddingBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
359
|
+
paddingBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
360
|
+
paddingInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
361
|
+
paddingInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
362
|
+
paddingInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
363
|
+
paddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
364
|
+
paddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
365
|
+
paddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
366
|
+
pageBreakAfter?: string | number | import('motion-dom').MotionValue<any>;
|
|
367
|
+
pageBreakBefore?: string | number | import('motion-dom').MotionValue<any>;
|
|
368
|
+
pageBreakInside?: string | number | import('motion-dom').MotionValue<any>;
|
|
369
|
+
paintOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
370
|
+
readonly parentRule?: string | number | import('motion-dom').MotionValue<any>;
|
|
371
|
+
perspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
372
|
+
placeContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
373
|
+
placeItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
374
|
+
placeSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
375
|
+
pointerEvents?: string | number | import('motion-dom').MotionValue<any>;
|
|
376
|
+
printColorAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
377
|
+
quotes?: string | number | import('motion-dom').MotionValue<any>;
|
|
378
|
+
r?: string | number | import('motion-dom').MotionValue<any>;
|
|
379
|
+
rowGap?: string | number | import('motion-dom').MotionValue<any>;
|
|
380
|
+
rubyPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
381
|
+
rx?: string | number | import('motion-dom').MotionValue<any>;
|
|
382
|
+
ry?: string | number | import('motion-dom').MotionValue<any>;
|
|
383
|
+
scrollBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
384
|
+
scrollMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
385
|
+
scrollMarginBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
386
|
+
scrollMarginBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
387
|
+
scrollMarginBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
388
|
+
scrollMarginBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
389
|
+
scrollMarginInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
390
|
+
scrollMarginInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
391
|
+
scrollMarginInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
392
|
+
scrollMarginLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
393
|
+
scrollMarginRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
394
|
+
scrollMarginTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
395
|
+
scrollPadding?: string | number | import('motion-dom').MotionValue<any>;
|
|
396
|
+
scrollPaddingBlock?: string | number | import('motion-dom').MotionValue<any>;
|
|
397
|
+
scrollPaddingBlockEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
398
|
+
scrollPaddingBlockStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
399
|
+
scrollPaddingBottom?: string | number | import('motion-dom').MotionValue<any>;
|
|
400
|
+
scrollPaddingInline?: string | number | import('motion-dom').MotionValue<any>;
|
|
401
|
+
scrollPaddingInlineEnd?: string | number | import('motion-dom').MotionValue<any>;
|
|
402
|
+
scrollPaddingInlineStart?: string | number | import('motion-dom').MotionValue<any>;
|
|
403
|
+
scrollPaddingLeft?: string | number | import('motion-dom').MotionValue<any>;
|
|
404
|
+
scrollPaddingRight?: string | number | import('motion-dom').MotionValue<any>;
|
|
405
|
+
scrollPaddingTop?: string | number | import('motion-dom').MotionValue<any>;
|
|
406
|
+
scrollSnapAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
407
|
+
scrollSnapStop?: string | number | import('motion-dom').MotionValue<any>;
|
|
408
|
+
scrollSnapType?: string | number | import('motion-dom').MotionValue<any>;
|
|
409
|
+
scrollbarColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
410
|
+
scrollbarGutter?: string | number | import('motion-dom').MotionValue<any>;
|
|
411
|
+
scrollbarWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
412
|
+
shapeImageThreshold?: string | number | import('motion-dom').MotionValue<any>;
|
|
413
|
+
shapeMargin?: string | number | import('motion-dom').MotionValue<any>;
|
|
414
|
+
shapeOutside?: string | number | import('motion-dom').MotionValue<any>;
|
|
415
|
+
shapeRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
416
|
+
stopColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
417
|
+
stopOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
418
|
+
stroke?: string | number | import('motion-dom').MotionValue<any>;
|
|
419
|
+
strokeDasharray?: string | number | import('motion-dom').MotionValue<any>;
|
|
420
|
+
strokeDashoffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
421
|
+
strokeLinecap?: string | number | import('motion-dom').MotionValue<any>;
|
|
422
|
+
strokeLinejoin?: string | number | import('motion-dom').MotionValue<any>;
|
|
423
|
+
strokeMiterlimit?: string | number | import('motion-dom').MotionValue<any>;
|
|
424
|
+
strokeOpacity?: string | number | import('motion-dom').MotionValue<any>;
|
|
425
|
+
strokeWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
426
|
+
tabSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
427
|
+
tableLayout?: string | number | import('motion-dom').MotionValue<any>;
|
|
428
|
+
textAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
429
|
+
textAlignLast?: string | number | import('motion-dom').MotionValue<any>;
|
|
430
|
+
textAnchor?: string | number | import('motion-dom').MotionValue<any>;
|
|
431
|
+
textCombineUpright?: string | number | import('motion-dom').MotionValue<any>;
|
|
432
|
+
textDecoration?: string | number | import('motion-dom').MotionValue<any>;
|
|
433
|
+
textDecorationColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
434
|
+
textDecorationLine?: string | number | import('motion-dom').MotionValue<any>;
|
|
435
|
+
textDecorationSkipInk?: string | number | import('motion-dom').MotionValue<any>;
|
|
436
|
+
textDecorationStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
437
|
+
textDecorationThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
438
|
+
textEmphasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
439
|
+
textEmphasisColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
440
|
+
textEmphasisPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
441
|
+
textEmphasisStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
442
|
+
textIndent?: string | number | import('motion-dom').MotionValue<any>;
|
|
443
|
+
textOrientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
444
|
+
textOverflow?: string | number | import('motion-dom').MotionValue<any>;
|
|
445
|
+
textRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
446
|
+
textShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
447
|
+
textTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
448
|
+
textUnderlineOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
449
|
+
textUnderlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
450
|
+
textWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
451
|
+
textWrapMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
452
|
+
textWrapStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
453
|
+
touchAction?: string | number | import('motion-dom').MotionValue<any>;
|
|
454
|
+
transformBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
455
|
+
transformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
456
|
+
transformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
457
|
+
transitionBehavior?: string | number | import('motion-dom').MotionValue<any>;
|
|
458
|
+
transitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
459
|
+
transitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
460
|
+
transitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
461
|
+
transitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
462
|
+
unicodeBidi?: string | number | import('motion-dom').MotionValue<any>;
|
|
463
|
+
userSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
464
|
+
vectorEffect?: string | number | import('motion-dom').MotionValue<any>;
|
|
465
|
+
verticalAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
466
|
+
visibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
467
|
+
webkitAlignContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
468
|
+
webkitAlignItems?: string | number | import('motion-dom').MotionValue<any>;
|
|
469
|
+
webkitAlignSelf?: string | number | import('motion-dom').MotionValue<any>;
|
|
470
|
+
webkitAnimation?: string | number | import('motion-dom').MotionValue<any>;
|
|
471
|
+
webkitAnimationDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
472
|
+
webkitAnimationDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
473
|
+
webkitAnimationDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
474
|
+
webkitAnimationFillMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
475
|
+
webkitAnimationIterationCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
476
|
+
webkitAnimationName?: string | number | import('motion-dom').MotionValue<any>;
|
|
477
|
+
webkitAnimationPlayState?: string | number | import('motion-dom').MotionValue<any>;
|
|
478
|
+
webkitAnimationTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
479
|
+
webkitAppearance?: string | number | import('motion-dom').MotionValue<any>;
|
|
480
|
+
webkitBackfaceVisibility?: string | number | import('motion-dom').MotionValue<any>;
|
|
481
|
+
webkitBackgroundClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
482
|
+
webkitBackgroundOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
483
|
+
webkitBackgroundSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
484
|
+
webkitBorderBottomLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
485
|
+
webkitBorderBottomRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
486
|
+
webkitBorderRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
487
|
+
webkitBorderTopLeftRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
488
|
+
webkitBorderTopRightRadius?: string | number | import('motion-dom').MotionValue<any>;
|
|
489
|
+
webkitBoxAlign?: string | number | import('motion-dom').MotionValue<any>;
|
|
490
|
+
webkitBoxFlex?: string | number | import('motion-dom').MotionValue<any>;
|
|
491
|
+
webkitBoxOrdinalGroup?: string | number | import('motion-dom').MotionValue<any>;
|
|
492
|
+
webkitBoxOrient?: string | number | import('motion-dom').MotionValue<any>;
|
|
493
|
+
webkitBoxPack?: string | number | import('motion-dom').MotionValue<any>;
|
|
494
|
+
webkitBoxShadow?: string | number | import('motion-dom').MotionValue<any>;
|
|
495
|
+
webkitBoxSizing?: string | number | import('motion-dom').MotionValue<any>;
|
|
496
|
+
webkitFilter?: string | number | import('motion-dom').MotionValue<any>;
|
|
497
|
+
webkitFlex?: string | number | import('motion-dom').MotionValue<any>;
|
|
498
|
+
webkitFlexBasis?: string | number | import('motion-dom').MotionValue<any>;
|
|
499
|
+
webkitFlexDirection?: string | number | import('motion-dom').MotionValue<any>;
|
|
500
|
+
webkitFlexFlow?: string | number | import('motion-dom').MotionValue<any>;
|
|
501
|
+
webkitFlexGrow?: string | number | import('motion-dom').MotionValue<any>;
|
|
502
|
+
webkitFlexShrink?: string | number | import('motion-dom').MotionValue<any>;
|
|
503
|
+
webkitFlexWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
504
|
+
webkitJustifyContent?: string | number | import('motion-dom').MotionValue<any>;
|
|
505
|
+
webkitLineClamp?: string | number | import('motion-dom').MotionValue<any>;
|
|
506
|
+
webkitMask?: string | number | import('motion-dom').MotionValue<any>;
|
|
507
|
+
webkitMaskBoxImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
508
|
+
webkitMaskBoxImageOutset?: string | number | import('motion-dom').MotionValue<any>;
|
|
509
|
+
webkitMaskBoxImageRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
510
|
+
webkitMaskBoxImageSlice?: string | number | import('motion-dom').MotionValue<any>;
|
|
511
|
+
webkitMaskBoxImageSource?: string | number | import('motion-dom').MotionValue<any>;
|
|
512
|
+
webkitMaskBoxImageWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
513
|
+
webkitMaskClip?: string | number | import('motion-dom').MotionValue<any>;
|
|
514
|
+
webkitMaskComposite?: string | number | import('motion-dom').MotionValue<any>;
|
|
515
|
+
webkitMaskImage?: string | number | import('motion-dom').MotionValue<any>;
|
|
516
|
+
webkitMaskOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
517
|
+
webkitMaskPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
518
|
+
webkitMaskRepeat?: string | number | import('motion-dom').MotionValue<any>;
|
|
519
|
+
webkitMaskSize?: string | number | import('motion-dom').MotionValue<any>;
|
|
520
|
+
webkitOrder?: string | number | import('motion-dom').MotionValue<any>;
|
|
521
|
+
webkitPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
522
|
+
webkitPerspectiveOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
523
|
+
webkitTextFillColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
524
|
+
webkitTextSizeAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
525
|
+
webkitTextStroke?: string | number | import('motion-dom').MotionValue<any>;
|
|
526
|
+
webkitTextStrokeColor?: string | number | import('motion-dom').MotionValue<any>;
|
|
527
|
+
webkitTextStrokeWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
528
|
+
webkitTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
529
|
+
webkitTransformOrigin?: string | number | import('motion-dom').MotionValue<any>;
|
|
530
|
+
webkitTransformStyle?: string | number | import('motion-dom').MotionValue<any>;
|
|
531
|
+
webkitTransition?: string | number | import('motion-dom').MotionValue<any>;
|
|
532
|
+
webkitTransitionDelay?: string | number | import('motion-dom').MotionValue<any>;
|
|
533
|
+
webkitTransitionDuration?: string | number | import('motion-dom').MotionValue<any>;
|
|
534
|
+
webkitTransitionProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
535
|
+
webkitTransitionTimingFunction?: string | number | import('motion-dom').MotionValue<any>;
|
|
536
|
+
webkitUserSelect?: string | number | import('motion-dom').MotionValue<any>;
|
|
537
|
+
whiteSpace?: string | number | import('motion-dom').MotionValue<any>;
|
|
538
|
+
whiteSpaceCollapse?: string | number | import('motion-dom').MotionValue<any>;
|
|
539
|
+
widows?: string | number | import('motion-dom').MotionValue<any>;
|
|
540
|
+
width?: string | number | import('motion-dom').MotionValue<any>;
|
|
541
|
+
wordBreak?: string | number | import('motion-dom').MotionValue<any>;
|
|
542
|
+
wordSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
543
|
+
wordWrap?: string | number | import('motion-dom').MotionValue<any>;
|
|
544
|
+
writingMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
545
|
+
zIndex?: string | number | import('motion-dom').MotionValue<any>;
|
|
546
|
+
zoom?: string | number | import('motion-dom').MotionValue<any>;
|
|
547
|
+
getPropertyPriority?: string | number | import('motion-dom').MotionValue<any>;
|
|
548
|
+
getPropertyValue?: string | number | import('motion-dom').MotionValue<any>;
|
|
549
|
+
item?: string | number | import('motion-dom').MotionValue<any>;
|
|
550
|
+
removeProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
551
|
+
setProperty?: string | number | import('motion-dom').MotionValue<any>;
|
|
552
|
+
rotateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
553
|
+
rotateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
554
|
+
rotateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
555
|
+
scaleX?: string | number | import('motion-dom').MotionValue<any>;
|
|
556
|
+
scaleY?: string | number | import('motion-dom').MotionValue<any>;
|
|
557
|
+
scaleZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
558
|
+
skewX?: string | number | import('motion-dom').MotionValue<any>;
|
|
559
|
+
skewY?: string | number | import('motion-dom').MotionValue<any>;
|
|
560
|
+
accentHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
561
|
+
accumulate?: string | number | import('motion-dom').MotionValue<any>;
|
|
562
|
+
additive?: string | number | import('motion-dom').MotionValue<any>;
|
|
563
|
+
allowReorder?: string | number | import('motion-dom').MotionValue<any>;
|
|
564
|
+
alphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
565
|
+
amplitude?: string | number | import('motion-dom').MotionValue<any>;
|
|
566
|
+
arabicForm?: string | number | import('motion-dom').MotionValue<any>;
|
|
567
|
+
ascent?: string | number | import('motion-dom').MotionValue<any>;
|
|
568
|
+
attributeName?: string | number | import('motion-dom').MotionValue<any>;
|
|
569
|
+
attributeType?: string | number | import('motion-dom').MotionValue<any>;
|
|
570
|
+
autoReverse?: string | number | import('motion-dom').MotionValue<any>;
|
|
571
|
+
azimuth?: string | number | import('motion-dom').MotionValue<any>;
|
|
572
|
+
baseFrequency?: string | number | import('motion-dom').MotionValue<any>;
|
|
573
|
+
baseProfile?: string | number | import('motion-dom').MotionValue<any>;
|
|
574
|
+
bbox?: string | number | import('motion-dom').MotionValue<any>;
|
|
575
|
+
begin?: string | number | import('motion-dom').MotionValue<any>;
|
|
576
|
+
bias?: string | number | import('motion-dom').MotionValue<any>;
|
|
577
|
+
by?: string | number | import('motion-dom').MotionValue<any>;
|
|
578
|
+
calcMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
579
|
+
capHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
580
|
+
clipPathUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
581
|
+
colorProfile?: string | number | import('motion-dom').MotionValue<any>;
|
|
582
|
+
colorRendering?: string | number | import('motion-dom').MotionValue<any>;
|
|
583
|
+
contentScriptType?: string | number | import('motion-dom').MotionValue<any>;
|
|
584
|
+
contentStyleType?: string | number | import('motion-dom').MotionValue<any>;
|
|
585
|
+
decelerate?: string | number | import('motion-dom').MotionValue<any>;
|
|
586
|
+
descent?: string | number | import('motion-dom').MotionValue<any>;
|
|
587
|
+
diffuseConstant?: string | number | import('motion-dom').MotionValue<any>;
|
|
588
|
+
divisor?: string | number | import('motion-dom').MotionValue<any>;
|
|
589
|
+
dur?: string | number | import('motion-dom').MotionValue<any>;
|
|
590
|
+
dx?: string | number | import('motion-dom').MotionValue<any>;
|
|
591
|
+
dy?: string | number | import('motion-dom').MotionValue<any>;
|
|
592
|
+
edgeMode?: string | number | import('motion-dom').MotionValue<any>;
|
|
593
|
+
elevation?: string | number | import('motion-dom').MotionValue<any>;
|
|
594
|
+
enableBackground?: string | number | import('motion-dom').MotionValue<any>;
|
|
595
|
+
exponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
596
|
+
externalResourcesRequired?: string | number | import('motion-dom').MotionValue<any>;
|
|
597
|
+
filterRes?: string | number | import('motion-dom').MotionValue<any>;
|
|
598
|
+
filterUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
599
|
+
focusable?: string | number | import('motion-dom').MotionValue<any>;
|
|
600
|
+
format?: string | number | import('motion-dom').MotionValue<any>;
|
|
601
|
+
fr?: string | number | import('motion-dom').MotionValue<any>;
|
|
602
|
+
fx?: string | number | import('motion-dom').MotionValue<any>;
|
|
603
|
+
fy?: string | number | import('motion-dom').MotionValue<any>;
|
|
604
|
+
g1?: string | number | import('motion-dom').MotionValue<any>;
|
|
605
|
+
g2?: string | number | import('motion-dom').MotionValue<any>;
|
|
606
|
+
glyphName?: string | number | import('motion-dom').MotionValue<any>;
|
|
607
|
+
glyphOrientationHorizontal?: string | number | import('motion-dom').MotionValue<any>;
|
|
608
|
+
glyphOrientationVertical?: string | number | import('motion-dom').MotionValue<any>;
|
|
609
|
+
glyphRef?: string | number | import('motion-dom').MotionValue<any>;
|
|
610
|
+
gradientTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
611
|
+
gradientUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
612
|
+
hanging?: string | number | import('motion-dom').MotionValue<any>;
|
|
613
|
+
horizAdvX?: string | number | import('motion-dom').MotionValue<any>;
|
|
614
|
+
horizOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
615
|
+
href?: string | number | import('motion-dom').MotionValue<any>;
|
|
616
|
+
ideographic?: string | number | import('motion-dom').MotionValue<any>;
|
|
617
|
+
in2?: string | number | import('motion-dom').MotionValue<any>;
|
|
618
|
+
in?: string | number | import('motion-dom').MotionValue<any>;
|
|
619
|
+
intercept?: string | number | import('motion-dom').MotionValue<any>;
|
|
620
|
+
k1?: string | number | import('motion-dom').MotionValue<any>;
|
|
621
|
+
k2?: string | number | import('motion-dom').MotionValue<any>;
|
|
622
|
+
k3?: string | number | import('motion-dom').MotionValue<any>;
|
|
623
|
+
k4?: string | number | import('motion-dom').MotionValue<any>;
|
|
624
|
+
k?: string | number | import('motion-dom').MotionValue<any>;
|
|
625
|
+
kernelMatrix?: string | number | import('motion-dom').MotionValue<any>;
|
|
626
|
+
kernelUnitLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
627
|
+
kerning?: string | number | import('motion-dom').MotionValue<any>;
|
|
628
|
+
keyPoints?: string | number | import('motion-dom').MotionValue<any>;
|
|
629
|
+
keySplines?: string | number | import('motion-dom').MotionValue<any>;
|
|
630
|
+
keyTimes?: string | number | import('motion-dom').MotionValue<any>;
|
|
631
|
+
lengthAdjust?: string | number | import('motion-dom').MotionValue<any>;
|
|
632
|
+
limitingConeAngle?: string | number | import('motion-dom').MotionValue<any>;
|
|
633
|
+
local?: string | number | import('motion-dom').MotionValue<any>;
|
|
634
|
+
markerHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
635
|
+
markerUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
636
|
+
markerWidth?: string | number | import('motion-dom').MotionValue<any>;
|
|
637
|
+
maskContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
638
|
+
maskUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
639
|
+
mathematical?: string | number | import('motion-dom').MotionValue<any>;
|
|
640
|
+
mode?: string | number | import('motion-dom').MotionValue<any>;
|
|
641
|
+
numOctaves?: string | number | import('motion-dom').MotionValue<any>;
|
|
642
|
+
operator?: string | number | import('motion-dom').MotionValue<any>;
|
|
643
|
+
orient?: string | number | import('motion-dom').MotionValue<any>;
|
|
644
|
+
orientation?: string | number | import('motion-dom').MotionValue<any>;
|
|
645
|
+
origin?: string | number | import('motion-dom').MotionValue<any>;
|
|
646
|
+
overlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
647
|
+
overlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
648
|
+
panose1?: string | number | import('motion-dom').MotionValue<any>;
|
|
649
|
+
pathLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
650
|
+
patternContentUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
651
|
+
patternTransform?: string | number | import('motion-dom').MotionValue<any>;
|
|
652
|
+
patternUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
653
|
+
points?: string | number | import('motion-dom').MotionValue<any>;
|
|
654
|
+
pointsAtX?: string | number | import('motion-dom').MotionValue<any>;
|
|
655
|
+
pointsAtY?: string | number | import('motion-dom').MotionValue<any>;
|
|
656
|
+
pointsAtZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
657
|
+
preserveAlpha?: string | number | import('motion-dom').MotionValue<any>;
|
|
658
|
+
preserveAspectRatio?: string | number | import('motion-dom').MotionValue<any>;
|
|
659
|
+
primitiveUnits?: string | number | import('motion-dom').MotionValue<any>;
|
|
660
|
+
radius?: string | number | import('motion-dom').MotionValue<any>;
|
|
661
|
+
refX?: string | number | import('motion-dom').MotionValue<any>;
|
|
662
|
+
refY?: string | number | import('motion-dom').MotionValue<any>;
|
|
663
|
+
renderingIntent?: string | number | import('motion-dom').MotionValue<any>;
|
|
664
|
+
repeatCount?: string | number | import('motion-dom').MotionValue<any>;
|
|
665
|
+
repeatDur?: string | number | import('motion-dom').MotionValue<any>;
|
|
666
|
+
requiredExtensions?: string | number | import('motion-dom').MotionValue<any>;
|
|
667
|
+
requiredFeatures?: string | number | import('motion-dom').MotionValue<any>;
|
|
668
|
+
restart?: string | number | import('motion-dom').MotionValue<any>;
|
|
669
|
+
result?: string | number | import('motion-dom').MotionValue<any>;
|
|
670
|
+
seed?: string | number | import('motion-dom').MotionValue<any>;
|
|
671
|
+
slope?: string | number | import('motion-dom').MotionValue<any>;
|
|
672
|
+
spacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
673
|
+
specularConstant?: string | number | import('motion-dom').MotionValue<any>;
|
|
674
|
+
specularExponent?: string | number | import('motion-dom').MotionValue<any>;
|
|
675
|
+
speed?: string | number | import('motion-dom').MotionValue<any>;
|
|
676
|
+
spreadMethod?: string | number | import('motion-dom').MotionValue<any>;
|
|
677
|
+
startOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
678
|
+
stdDeviation?: string | number | import('motion-dom').MotionValue<any>;
|
|
679
|
+
stemh?: string | number | import('motion-dom').MotionValue<any>;
|
|
680
|
+
stemv?: string | number | import('motion-dom').MotionValue<any>;
|
|
681
|
+
stitchTiles?: string | number | import('motion-dom').MotionValue<any>;
|
|
682
|
+
strikethroughPosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
683
|
+
strikethroughThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
684
|
+
surfaceScale?: string | number | import('motion-dom').MotionValue<any>;
|
|
685
|
+
systemLanguage?: string | number | import('motion-dom').MotionValue<any>;
|
|
686
|
+
tableValues?: string | number | import('motion-dom').MotionValue<any>;
|
|
687
|
+
targetX?: string | number | import('motion-dom').MotionValue<any>;
|
|
688
|
+
targetY?: string | number | import('motion-dom').MotionValue<any>;
|
|
689
|
+
textLength?: string | number | import('motion-dom').MotionValue<any>;
|
|
690
|
+
to?: string | number | import('motion-dom').MotionValue<any>;
|
|
691
|
+
u1?: string | number | import('motion-dom').MotionValue<any>;
|
|
692
|
+
u2?: string | number | import('motion-dom').MotionValue<any>;
|
|
693
|
+
underlinePosition?: string | number | import('motion-dom').MotionValue<any>;
|
|
694
|
+
underlineThickness?: string | number | import('motion-dom').MotionValue<any>;
|
|
695
|
+
unicode?: string | number | import('motion-dom').MotionValue<any>;
|
|
696
|
+
unicodeRange?: string | number | import('motion-dom').MotionValue<any>;
|
|
697
|
+
unitsPerEm?: string | number | import('motion-dom').MotionValue<any>;
|
|
698
|
+
vAlphabetic?: string | number | import('motion-dom').MotionValue<any>;
|
|
699
|
+
version?: string | number | import('motion-dom').MotionValue<any>;
|
|
700
|
+
vertAdvY?: string | number | import('motion-dom').MotionValue<any>;
|
|
701
|
+
vertOriginX?: string | number | import('motion-dom').MotionValue<any>;
|
|
702
|
+
vertOriginY?: string | number | import('motion-dom').MotionValue<any>;
|
|
703
|
+
vHanging?: string | number | import('motion-dom').MotionValue<any>;
|
|
704
|
+
vIdeographic?: string | number | import('motion-dom').MotionValue<any>;
|
|
705
|
+
viewBox?: string | number | import('motion-dom').MotionValue<any>;
|
|
706
|
+
viewTarget?: string | number | import('motion-dom').MotionValue<any>;
|
|
707
|
+
vMathematical?: string | number | import('motion-dom').MotionValue<any>;
|
|
708
|
+
widths?: string | number | import('motion-dom').MotionValue<any>;
|
|
709
|
+
x1?: string | number | import('motion-dom').MotionValue<any>;
|
|
710
|
+
x2?: string | number | import('motion-dom').MotionValue<any>;
|
|
711
|
+
xChannelSelector?: string | number | import('motion-dom').MotionValue<any>;
|
|
712
|
+
xHeight?: string | number | import('motion-dom').MotionValue<any>;
|
|
713
|
+
xlinkActuate?: string | number | import('motion-dom').MotionValue<any>;
|
|
714
|
+
xlinkArcrole?: string | number | import('motion-dom').MotionValue<any>;
|
|
715
|
+
xlinkHref?: string | number | import('motion-dom').MotionValue<any>;
|
|
716
|
+
xlinkRole?: string | number | import('motion-dom').MotionValue<any>;
|
|
717
|
+
xlinkShow?: string | number | import('motion-dom').MotionValue<any>;
|
|
718
|
+
xlinkTitle?: string | number | import('motion-dom').MotionValue<any>;
|
|
719
|
+
xlinkType?: string | number | import('motion-dom').MotionValue<any>;
|
|
720
|
+
xmlBase?: string | number | import('motion-dom').MotionValue<any>;
|
|
721
|
+
xmlLang?: string | number | import('motion-dom').MotionValue<any>;
|
|
722
|
+
xmlns?: string | number | import('motion-dom').MotionValue<any>;
|
|
723
|
+
xmlnsXlink?: string | number | import('motion-dom').MotionValue<any>;
|
|
724
|
+
xmlSpace?: string | number | import('motion-dom').MotionValue<any>;
|
|
725
|
+
y1?: string | number | import('motion-dom').MotionValue<any>;
|
|
726
|
+
y2?: string | number | import('motion-dom').MotionValue<any>;
|
|
727
|
+
yChannelSelector?: string | number | import('motion-dom').MotionValue<any>;
|
|
728
|
+
zoomAndPan?: string | number | import('motion-dom').MotionValue<any>;
|
|
729
|
+
pathOffset?: string | number | import('motion-dom').MotionValue<any>;
|
|
730
|
+
pathSpacing?: string | number | import('motion-dom').MotionValue<any>;
|
|
731
|
+
translateX?: string | number | import('motion-dom').MotionValue<any>;
|
|
732
|
+
translateY?: string | number | import('motion-dom').MotionValue<any>;
|
|
733
|
+
translateZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
734
|
+
skew?: string | number | import('motion-dom').MotionValue<any>;
|
|
735
|
+
originX?: string | number | import('motion-dom').MotionValue<any>;
|
|
736
|
+
originY?: string | number | import('motion-dom').MotionValue<any>;
|
|
737
|
+
originZ?: string | number | import('motion-dom').MotionValue<any>;
|
|
738
|
+
transformPerspective?: string | number | import('motion-dom').MotionValue<any>;
|
|
739
|
+
}>;
|
|
740
|
+
transformTemplate?: (transform: import('motion-dom').TransformProperties, generatedTransform: string) => string;
|
|
741
|
+
onAnimationComplete?: (definition: import('../..').Options["animate"]) => void;
|
|
742
|
+
onUpdate?: (latest: import('framer-motion').ResolvedValues) => void;
|
|
743
|
+
onAnimationStart?: (definition: import('../..').Options["animate"]) => void;
|
|
744
|
+
layout?: boolean | "position" | "size" | "preserve-aspect";
|
|
745
|
+
layoutScroll?: boolean;
|
|
746
|
+
layoutRoot?: boolean;
|
|
747
|
+
'data-framer-portal-id'?: string;
|
|
748
|
+
crossfade?: boolean;
|
|
749
|
+
layoutDependency?: any;
|
|
750
|
+
onBeforeLayoutMeasure?: (box: import('framer-motion').Box) => void;
|
|
751
|
+
onLayoutMeasure?: (box: import('framer-motion').Box, prevBox: import('framer-motion').Box) => void;
|
|
752
|
+
onLayoutAnimationStart?: () => void;
|
|
753
|
+
onLayoutAnimationComplete?: () => void;
|
|
754
|
+
globalPressTarget?: boolean;
|
|
755
|
+
onPressStart?: import('../../features/gestures/press/types').PressEvent;
|
|
756
|
+
onPress?: import('../../features/gestures/press/types').PressEvent;
|
|
757
|
+
onPressCancel?: import('../../features/gestures/press/types').PressEvent;
|
|
758
|
+
onHoverStart?: import('../../features/gestures/hover/types').HoverEvent;
|
|
759
|
+
onHoverEnd?: import('../../features/gestures/hover/types').HoverEvent;
|
|
760
|
+
onViewportEnter?: (entry: IntersectionObserverEntry | null) => void;
|
|
761
|
+
onViewportLeave?: (entry: IntersectionObserverEntry | null) => void;
|
|
762
|
+
drag?: boolean | "x" | "y";
|
|
763
|
+
dragSnapToOrigin?: boolean;
|
|
764
|
+
dragDirectionLock?: boolean;
|
|
765
|
+
dragPropagation?: boolean;
|
|
766
|
+
dragConstraints?: false | Partial<import('framer-motion').BoundingBox> | HTMLElement;
|
|
767
|
+
dragElastic?: import('framer-motion').DragElastic;
|
|
768
|
+
dragMomentum?: boolean;
|
|
769
|
+
dragTransition?: import('motion-dom').InertiaOptions;
|
|
770
|
+
dragListener?: boolean;
|
|
771
|
+
dragControls?: import('../../features/gestures/drag/use-drag-controls').DragControls;
|
|
772
|
+
onDragStart?: (event: PointerEvent, info: import('framer-motion').PanInfo) => void;
|
|
773
|
+
onDragEnd?: (event: PointerEvent, info: import('framer-motion').PanInfo) => void;
|
|
774
|
+
onDrag?: (event: PointerEvent, info: import('framer-motion').PanInfo) => void;
|
|
775
|
+
onDirectionLock?: (axis: "x" | "y") => void;
|
|
776
|
+
onDragTransitionEnd?: () => void;
|
|
777
|
+
onMeasureDragConstraints?: (constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void;
|
|
778
|
+
onPanSessionStart?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
779
|
+
onPanStart?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
780
|
+
onPan?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
781
|
+
onPanEnd?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
782
|
+
onFocus?: (e: FocusEvent) => void;
|
|
783
|
+
onBlur?: (e: FocusEvent) => void;
|
|
784
|
+
};
|
|
785
|
+
getAttrs: () => {
|
|
786
|
+
[x: string]: unknown;
|
|
787
|
+
};
|
|
788
|
+
layoutGroup: import('../context').LayoutGroupState;
|
|
789
|
+
state: MotionState;
|
|
790
|
+
};
|