motion-v 0.12.0-beta.1 → 0.12.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,49 +1,5 @@
|
|
|
1
1
|
export declare const ReorderGroup: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
-
layout: {
|
|
4
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
5
|
-
};
|
|
6
|
-
layoutId: {
|
|
7
|
-
type: import('vue').PropType<string>;
|
|
8
|
-
};
|
|
9
|
-
layoutScroll: {
|
|
10
|
-
type: import('vue').PropType<boolean>;
|
|
11
|
-
};
|
|
12
|
-
layoutRoot: {
|
|
13
|
-
type: import('vue').PropType<boolean>;
|
|
14
|
-
};
|
|
15
|
-
'data-framer-portal-id': {
|
|
16
|
-
type: import('vue').PropType<string>;
|
|
17
|
-
};
|
|
18
|
-
crossfade: {
|
|
19
|
-
type: import('vue').PropType<boolean>;
|
|
20
|
-
};
|
|
21
|
-
inViewOptions: {
|
|
22
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
23
|
-
once?: boolean;
|
|
24
|
-
}>;
|
|
25
|
-
};
|
|
26
|
-
values: {
|
|
27
|
-
type: import('vue').PropType<unknown[]>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
dragSnapToOrigin: {
|
|
31
|
-
type: import('vue').PropType<boolean>;
|
|
32
|
-
};
|
|
33
|
-
transition: {
|
|
34
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
35
|
-
layout?: import('../..').$Transition;
|
|
36
|
-
}>;
|
|
37
|
-
};
|
|
38
|
-
onDragTransitionEnd: {
|
|
39
|
-
type: import('vue').PropType<() => void>;
|
|
40
|
-
};
|
|
41
|
-
onDragEnd: {
|
|
42
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
43
|
-
};
|
|
44
|
-
dragPropagation: {
|
|
45
|
-
type: import('vue').PropType<boolean>;
|
|
46
|
-
};
|
|
47
3
|
initial: {
|
|
48
4
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
49
5
|
};
|
|
@@ -68,56 +24,32 @@ export declare const ReorderGroup: {
|
|
|
68
24
|
exit: {
|
|
69
25
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
70
26
|
};
|
|
71
|
-
|
|
72
|
-
type: import('vue').PropType<
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
76
|
-
};
|
|
77
|
-
dragElastic: {
|
|
78
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
27
|
+
transition: {
|
|
28
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
29
|
+
layout?: import('../..').$Transition;
|
|
30
|
+
}>;
|
|
79
31
|
};
|
|
80
|
-
|
|
81
|
-
type: import('vue').PropType<
|
|
32
|
+
values: {
|
|
33
|
+
type: import('vue').PropType<unknown[]>;
|
|
34
|
+
required: true;
|
|
82
35
|
};
|
|
83
36
|
style: {
|
|
84
37
|
type: import('vue').PropType<Partial<{
|
|
85
38
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
86
39
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
87
40
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
88
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
89
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
90
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
91
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
92
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
93
41
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
94
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
95
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
96
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
97
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
98
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
99
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
100
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
101
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
102
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
103
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
104
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
105
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
106
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
107
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
108
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
109
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
110
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
111
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
112
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
113
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
114
42
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
43
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
44
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
45
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
115
46
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
116
47
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
117
48
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
118
49
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
119
50
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
120
51
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
52
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
121
53
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
122
54
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
123
55
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -208,6 +140,7 @@ export declare const ReorderGroup: {
|
|
|
208
140
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
209
141
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
210
142
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
143
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
211
144
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
212
145
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
213
146
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -215,6 +148,7 @@ export declare const ReorderGroup: {
|
|
|
215
148
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
216
149
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
217
150
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
151
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
218
152
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
219
153
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
220
154
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -255,8 +189,10 @@ export declare const ReorderGroup: {
|
|
|
255
189
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
256
190
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
257
191
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
192
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
258
193
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
259
194
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
195
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
260
196
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
261
197
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
262
198
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -327,6 +263,8 @@ export declare const ReorderGroup: {
|
|
|
327
263
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
328
264
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
329
265
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
266
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
267
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
330
268
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
331
269
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
332
270
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -373,6 +311,7 @@ export declare const ReorderGroup: {
|
|
|
373
311
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
374
312
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
375
313
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
314
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
376
315
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
377
316
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
378
317
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -408,23 +347,30 @@ export declare const ReorderGroup: {
|
|
|
408
347
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
409
348
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
410
349
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
350
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
411
351
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
412
352
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
413
353
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
414
354
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
415
355
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
356
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
416
357
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
417
358
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
418
359
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
419
360
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
420
361
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
362
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
421
363
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
422
364
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
423
365
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
366
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
367
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
368
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
424
369
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
425
370
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
426
371
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
427
372
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
373
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
428
374
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
429
375
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
430
376
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -495,7 +441,9 @@ export declare const ReorderGroup: {
|
|
|
495
441
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
496
442
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
497
443
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
444
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
498
445
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
446
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
499
447
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
500
448
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
501
449
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -504,6 +452,7 @@ export declare const ReorderGroup: {
|
|
|
504
452
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
505
453
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
506
454
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
455
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
507
456
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
508
457
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
509
458
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -583,6 +532,7 @@ export declare const ReorderGroup: {
|
|
|
583
532
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
584
533
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
585
534
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
535
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
586
536
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
587
537
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
588
538
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -637,6 +587,7 @@ export declare const ReorderGroup: {
|
|
|
637
587
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
638
588
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
639
589
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
590
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
640
591
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
641
592
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
642
593
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -644,6 +595,7 @@ export declare const ReorderGroup: {
|
|
|
644
595
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
645
596
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
646
597
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
598
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
647
599
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
648
600
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
649
601
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -742,6 +694,7 @@ export declare const ReorderGroup: {
|
|
|
742
694
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
743
695
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
744
696
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
697
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
745
698
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
746
699
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
747
700
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -784,6 +737,67 @@ export declare const ReorderGroup: {
|
|
|
784
737
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
785
738
|
}>>;
|
|
786
739
|
};
|
|
740
|
+
inView: {
|
|
741
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
742
|
+
};
|
|
743
|
+
hover: {
|
|
744
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
745
|
+
};
|
|
746
|
+
press: {
|
|
747
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
748
|
+
};
|
|
749
|
+
variants: {
|
|
750
|
+
type: import('vue').PropType<{
|
|
751
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
752
|
+
}>;
|
|
753
|
+
};
|
|
754
|
+
layout: {
|
|
755
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
756
|
+
};
|
|
757
|
+
layoutId: {
|
|
758
|
+
type: import('vue').PropType<string>;
|
|
759
|
+
};
|
|
760
|
+
layoutScroll: {
|
|
761
|
+
type: import('vue').PropType<boolean>;
|
|
762
|
+
};
|
|
763
|
+
layoutRoot: {
|
|
764
|
+
type: import('vue').PropType<boolean>;
|
|
765
|
+
};
|
|
766
|
+
'data-framer-portal-id': {
|
|
767
|
+
type: import('vue').PropType<string>;
|
|
768
|
+
};
|
|
769
|
+
crossfade: {
|
|
770
|
+
type: import('vue').PropType<boolean>;
|
|
771
|
+
};
|
|
772
|
+
inViewOptions: {
|
|
773
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
774
|
+
once?: boolean;
|
|
775
|
+
}>;
|
|
776
|
+
};
|
|
777
|
+
dragSnapToOrigin: {
|
|
778
|
+
type: import('vue').PropType<boolean>;
|
|
779
|
+
};
|
|
780
|
+
onDragTransitionEnd: {
|
|
781
|
+
type: import('vue').PropType<() => void>;
|
|
782
|
+
};
|
|
783
|
+
onDragEnd: {
|
|
784
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
785
|
+
};
|
|
786
|
+
dragPropagation: {
|
|
787
|
+
type: import('vue').PropType<boolean>;
|
|
788
|
+
};
|
|
789
|
+
drag: {
|
|
790
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
791
|
+
};
|
|
792
|
+
dragConstraints: {
|
|
793
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
794
|
+
};
|
|
795
|
+
dragElastic: {
|
|
796
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
797
|
+
};
|
|
798
|
+
onMeasureDragConstraints: {
|
|
799
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
800
|
+
};
|
|
787
801
|
focus: {
|
|
788
802
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
789
803
|
};
|
|
@@ -821,11 +835,6 @@ export declare const ReorderGroup: {
|
|
|
821
835
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
822
836
|
default: string;
|
|
823
837
|
};
|
|
824
|
-
variants: {
|
|
825
|
-
type: import('vue').PropType<{
|
|
826
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
827
|
-
}>;
|
|
828
|
-
};
|
|
829
838
|
layoutGroup: {
|
|
830
839
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
831
840
|
};
|
|
@@ -853,9 +862,6 @@ export declare const ReorderGroup: {
|
|
|
853
862
|
globalPressTarget: {
|
|
854
863
|
type: import('vue').PropType<boolean>;
|
|
855
864
|
};
|
|
856
|
-
press: {
|
|
857
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
858
|
-
};
|
|
859
865
|
onPressStart: {
|
|
860
866
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
861
867
|
};
|
|
@@ -865,18 +871,12 @@ export declare const ReorderGroup: {
|
|
|
865
871
|
onPressCancel: {
|
|
866
872
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
867
873
|
};
|
|
868
|
-
hover: {
|
|
869
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
870
|
-
};
|
|
871
874
|
onHoverStart: {
|
|
872
875
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
873
876
|
};
|
|
874
877
|
onHoverEnd: {
|
|
875
878
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
876
879
|
};
|
|
877
|
-
inView: {
|
|
878
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
879
|
-
};
|
|
880
880
|
onViewportEnter: {
|
|
881
881
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
882
882
|
};
|
|
@@ -912,50 +912,6 @@ export declare const ReorderGroup: {
|
|
|
912
912
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
913
913
|
};
|
|
914
914
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
915
|
-
layout: {
|
|
916
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
917
|
-
};
|
|
918
|
-
layoutId: {
|
|
919
|
-
type: import('vue').PropType<string>;
|
|
920
|
-
};
|
|
921
|
-
layoutScroll: {
|
|
922
|
-
type: import('vue').PropType<boolean>;
|
|
923
|
-
};
|
|
924
|
-
layoutRoot: {
|
|
925
|
-
type: import('vue').PropType<boolean>;
|
|
926
|
-
};
|
|
927
|
-
'data-framer-portal-id': {
|
|
928
|
-
type: import('vue').PropType<string>;
|
|
929
|
-
};
|
|
930
|
-
crossfade: {
|
|
931
|
-
type: import('vue').PropType<boolean>;
|
|
932
|
-
};
|
|
933
|
-
inViewOptions: {
|
|
934
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
935
|
-
once?: boolean;
|
|
936
|
-
}>;
|
|
937
|
-
};
|
|
938
|
-
values: {
|
|
939
|
-
type: import('vue').PropType<unknown[]>;
|
|
940
|
-
required: true;
|
|
941
|
-
};
|
|
942
|
-
dragSnapToOrigin: {
|
|
943
|
-
type: import('vue').PropType<boolean>;
|
|
944
|
-
};
|
|
945
|
-
transition: {
|
|
946
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
947
|
-
layout?: import('../..').$Transition;
|
|
948
|
-
}>;
|
|
949
|
-
};
|
|
950
|
-
onDragTransitionEnd: {
|
|
951
|
-
type: import('vue').PropType<() => void>;
|
|
952
|
-
};
|
|
953
|
-
onDragEnd: {
|
|
954
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
955
|
-
};
|
|
956
|
-
dragPropagation: {
|
|
957
|
-
type: import('vue').PropType<boolean>;
|
|
958
|
-
};
|
|
959
915
|
initial: {
|
|
960
916
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
961
917
|
};
|
|
@@ -980,56 +936,32 @@ export declare const ReorderGroup: {
|
|
|
980
936
|
exit: {
|
|
981
937
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
982
938
|
};
|
|
983
|
-
|
|
984
|
-
type: import('vue').PropType<
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
988
|
-
};
|
|
989
|
-
dragElastic: {
|
|
990
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
939
|
+
transition: {
|
|
940
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
941
|
+
layout?: import('../..').$Transition;
|
|
942
|
+
}>;
|
|
991
943
|
};
|
|
992
|
-
|
|
993
|
-
type: import('vue').PropType<
|
|
944
|
+
values: {
|
|
945
|
+
type: import('vue').PropType<unknown[]>;
|
|
946
|
+
required: true;
|
|
994
947
|
};
|
|
995
948
|
style: {
|
|
996
949
|
type: import('vue').PropType<Partial<{
|
|
997
950
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
998
951
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
999
952
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1000
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1001
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1002
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1003
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1004
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1005
953
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1006
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1007
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1008
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1009
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1010
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1011
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1012
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1013
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1014
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1015
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1016
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1017
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1018
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1019
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1020
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1021
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1022
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1023
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1024
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1025
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1026
954
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
955
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
956
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
957
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1027
958
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1028
959
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1029
960
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1030
961
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1031
962
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1032
963
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
964
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1033
965
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1034
966
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1035
967
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1120,6 +1052,7 @@ export declare const ReorderGroup: {
|
|
|
1120
1052
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1121
1053
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1122
1054
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1055
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1123
1056
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1124
1057
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1125
1058
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1127,6 +1060,7 @@ export declare const ReorderGroup: {
|
|
|
1127
1060
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1128
1061
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1129
1062
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1063
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1130
1064
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1131
1065
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1132
1066
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1167,8 +1101,10 @@ export declare const ReorderGroup: {
|
|
|
1167
1101
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1168
1102
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1169
1103
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1104
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1170
1105
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1171
1106
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1107
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1172
1108
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1173
1109
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1174
1110
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1239,6 +1175,8 @@ export declare const ReorderGroup: {
|
|
|
1239
1175
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1240
1176
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1241
1177
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1178
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1179
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1242
1180
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1243
1181
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1244
1182
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1285,6 +1223,7 @@ export declare const ReorderGroup: {
|
|
|
1285
1223
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1286
1224
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1287
1225
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1226
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1288
1227
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1289
1228
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1290
1229
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1320,23 +1259,30 @@ export declare const ReorderGroup: {
|
|
|
1320
1259
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1321
1260
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1322
1261
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1262
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1323
1263
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1324
1264
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1325
1265
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1326
1266
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1327
1267
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1268
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1328
1269
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1329
1270
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1330
1271
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1331
1272
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1332
1273
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1274
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1333
1275
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1334
1276
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1335
1277
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1278
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1279
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1280
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1336
1281
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1337
1282
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1338
1283
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1339
1284
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1285
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1340
1286
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1341
1287
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1342
1288
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1407,7 +1353,9 @@ export declare const ReorderGroup: {
|
|
|
1407
1353
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1408
1354
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1409
1355
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1356
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1410
1357
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1358
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1411
1359
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1412
1360
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1413
1361
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1416,6 +1364,7 @@ export declare const ReorderGroup: {
|
|
|
1416
1364
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1417
1365
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1418
1366
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1367
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1419
1368
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1420
1369
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1421
1370
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1495,6 +1444,7 @@ export declare const ReorderGroup: {
|
|
|
1495
1444
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1496
1445
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1497
1446
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1447
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1498
1448
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1499
1449
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1500
1450
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1549,6 +1499,7 @@ export declare const ReorderGroup: {
|
|
|
1549
1499
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1550
1500
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1551
1501
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1502
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1552
1503
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1553
1504
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1554
1505
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1556,6 +1507,7 @@ export declare const ReorderGroup: {
|
|
|
1556
1507
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1557
1508
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1558
1509
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1510
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1559
1511
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1560
1512
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1561
1513
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1654,6 +1606,7 @@ export declare const ReorderGroup: {
|
|
|
1654
1606
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1655
1607
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1656
1608
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1609
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1657
1610
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1658
1611
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1659
1612
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -1696,6 +1649,67 @@ export declare const ReorderGroup: {
|
|
|
1696
1649
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1697
1650
|
}>>;
|
|
1698
1651
|
};
|
|
1652
|
+
inView: {
|
|
1653
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1654
|
+
};
|
|
1655
|
+
hover: {
|
|
1656
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1657
|
+
};
|
|
1658
|
+
press: {
|
|
1659
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1660
|
+
};
|
|
1661
|
+
variants: {
|
|
1662
|
+
type: import('vue').PropType<{
|
|
1663
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
1664
|
+
}>;
|
|
1665
|
+
};
|
|
1666
|
+
layout: {
|
|
1667
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
1668
|
+
};
|
|
1669
|
+
layoutId: {
|
|
1670
|
+
type: import('vue').PropType<string>;
|
|
1671
|
+
};
|
|
1672
|
+
layoutScroll: {
|
|
1673
|
+
type: import('vue').PropType<boolean>;
|
|
1674
|
+
};
|
|
1675
|
+
layoutRoot: {
|
|
1676
|
+
type: import('vue').PropType<boolean>;
|
|
1677
|
+
};
|
|
1678
|
+
'data-framer-portal-id': {
|
|
1679
|
+
type: import('vue').PropType<string>;
|
|
1680
|
+
};
|
|
1681
|
+
crossfade: {
|
|
1682
|
+
type: import('vue').PropType<boolean>;
|
|
1683
|
+
};
|
|
1684
|
+
inViewOptions: {
|
|
1685
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
1686
|
+
once?: boolean;
|
|
1687
|
+
}>;
|
|
1688
|
+
};
|
|
1689
|
+
dragSnapToOrigin: {
|
|
1690
|
+
type: import('vue').PropType<boolean>;
|
|
1691
|
+
};
|
|
1692
|
+
onDragTransitionEnd: {
|
|
1693
|
+
type: import('vue').PropType<() => void>;
|
|
1694
|
+
};
|
|
1695
|
+
onDragEnd: {
|
|
1696
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
1697
|
+
};
|
|
1698
|
+
dragPropagation: {
|
|
1699
|
+
type: import('vue').PropType<boolean>;
|
|
1700
|
+
};
|
|
1701
|
+
drag: {
|
|
1702
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
1703
|
+
};
|
|
1704
|
+
dragConstraints: {
|
|
1705
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
1706
|
+
};
|
|
1707
|
+
dragElastic: {
|
|
1708
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
1709
|
+
};
|
|
1710
|
+
onMeasureDragConstraints: {
|
|
1711
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
1712
|
+
};
|
|
1699
1713
|
focus: {
|
|
1700
1714
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1701
1715
|
};
|
|
@@ -1733,11 +1747,6 @@ export declare const ReorderGroup: {
|
|
|
1733
1747
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
1734
1748
|
default: string;
|
|
1735
1749
|
};
|
|
1736
|
-
variants: {
|
|
1737
|
-
type: import('vue').PropType<{
|
|
1738
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
1739
|
-
}>;
|
|
1740
|
-
};
|
|
1741
1750
|
layoutGroup: {
|
|
1742
1751
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
1743
1752
|
};
|
|
@@ -1765,9 +1774,6 @@ export declare const ReorderGroup: {
|
|
|
1765
1774
|
globalPressTarget: {
|
|
1766
1775
|
type: import('vue').PropType<boolean>;
|
|
1767
1776
|
};
|
|
1768
|
-
press: {
|
|
1769
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1770
|
-
};
|
|
1771
1777
|
onPressStart: {
|
|
1772
1778
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
1773
1779
|
};
|
|
@@ -1777,18 +1783,12 @@ export declare const ReorderGroup: {
|
|
|
1777
1783
|
onPressCancel: {
|
|
1778
1784
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
1779
1785
|
};
|
|
1780
|
-
hover: {
|
|
1781
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1782
|
-
};
|
|
1783
1786
|
onHoverStart: {
|
|
1784
1787
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
1785
1788
|
};
|
|
1786
1789
|
onHoverEnd: {
|
|
1787
1790
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
1788
1791
|
};
|
|
1789
|
-
inView: {
|
|
1790
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1791
|
-
};
|
|
1792
1792
|
onViewportEnter: {
|
|
1793
1793
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
1794
1794
|
};
|
|
@@ -1834,50 +1834,6 @@ export declare const ReorderGroup: {
|
|
|
1834
1834
|
M: {};
|
|
1835
1835
|
Defaults: {};
|
|
1836
1836
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1837
|
-
layout: {
|
|
1838
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
1839
|
-
};
|
|
1840
|
-
layoutId: {
|
|
1841
|
-
type: import('vue').PropType<string>;
|
|
1842
|
-
};
|
|
1843
|
-
layoutScroll: {
|
|
1844
|
-
type: import('vue').PropType<boolean>;
|
|
1845
|
-
};
|
|
1846
|
-
layoutRoot: {
|
|
1847
|
-
type: import('vue').PropType<boolean>;
|
|
1848
|
-
};
|
|
1849
|
-
'data-framer-portal-id': {
|
|
1850
|
-
type: import('vue').PropType<string>;
|
|
1851
|
-
};
|
|
1852
|
-
crossfade: {
|
|
1853
|
-
type: import('vue').PropType<boolean>;
|
|
1854
|
-
};
|
|
1855
|
-
inViewOptions: {
|
|
1856
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
1857
|
-
once?: boolean;
|
|
1858
|
-
}>;
|
|
1859
|
-
};
|
|
1860
|
-
values: {
|
|
1861
|
-
type: import('vue').PropType<unknown[]>;
|
|
1862
|
-
required: true;
|
|
1863
|
-
};
|
|
1864
|
-
dragSnapToOrigin: {
|
|
1865
|
-
type: import('vue').PropType<boolean>;
|
|
1866
|
-
};
|
|
1867
|
-
transition: {
|
|
1868
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
1869
|
-
layout?: import('../..').$Transition;
|
|
1870
|
-
}>;
|
|
1871
|
-
};
|
|
1872
|
-
onDragTransitionEnd: {
|
|
1873
|
-
type: import('vue').PropType<() => void>;
|
|
1874
|
-
};
|
|
1875
|
-
onDragEnd: {
|
|
1876
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
1877
|
-
};
|
|
1878
|
-
dragPropagation: {
|
|
1879
|
-
type: import('vue').PropType<boolean>;
|
|
1880
|
-
};
|
|
1881
1837
|
initial: {
|
|
1882
1838
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
1883
1839
|
};
|
|
@@ -1902,56 +1858,32 @@ export declare const ReorderGroup: {
|
|
|
1902
1858
|
exit: {
|
|
1903
1859
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
1904
1860
|
};
|
|
1905
|
-
|
|
1906
|
-
type: import('vue').PropType<
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
1910
|
-
};
|
|
1911
|
-
dragElastic: {
|
|
1912
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
1861
|
+
transition: {
|
|
1862
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
1863
|
+
layout?: import('../..').$Transition;
|
|
1864
|
+
}>;
|
|
1913
1865
|
};
|
|
1914
|
-
|
|
1915
|
-
type: import('vue').PropType<
|
|
1866
|
+
values: {
|
|
1867
|
+
type: import('vue').PropType<unknown[]>;
|
|
1868
|
+
required: true;
|
|
1916
1869
|
};
|
|
1917
1870
|
style: {
|
|
1918
1871
|
type: import('vue').PropType<Partial<{
|
|
1919
1872
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1920
1873
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1921
1874
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1922
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1923
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1924
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1925
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1926
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1927
1875
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1928
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1929
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1930
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1931
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1932
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1933
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1934
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1935
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1936
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1937
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1938
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1939
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1940
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1941
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1942
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1943
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1944
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1945
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1946
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1947
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1948
1876
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1877
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1878
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1879
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1949
1880
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1950
1881
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1951
1882
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1952
1883
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1953
1884
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1954
1885
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1886
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1955
1887
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1956
1888
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1957
1889
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2042,6 +1974,7 @@ export declare const ReorderGroup: {
|
|
|
2042
1974
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2043
1975
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2044
1976
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1977
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2045
1978
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2046
1979
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2047
1980
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2049,6 +1982,7 @@ export declare const ReorderGroup: {
|
|
|
2049
1982
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2050
1983
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2051
1984
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
1985
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2052
1986
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2053
1987
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2054
1988
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2089,8 +2023,10 @@ export declare const ReorderGroup: {
|
|
|
2089
2023
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2090
2024
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2091
2025
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2026
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2092
2027
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2093
2028
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2029
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2094
2030
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2095
2031
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2096
2032
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2161,6 +2097,8 @@ export declare const ReorderGroup: {
|
|
|
2161
2097
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2162
2098
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2163
2099
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2100
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2101
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2164
2102
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2165
2103
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2166
2104
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2207,6 +2145,7 @@ export declare const ReorderGroup: {
|
|
|
2207
2145
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2208
2146
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2209
2147
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2148
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2210
2149
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2211
2150
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2212
2151
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2242,23 +2181,30 @@ export declare const ReorderGroup: {
|
|
|
2242
2181
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2243
2182
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2244
2183
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2184
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2245
2185
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2246
2186
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2247
2187
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2248
2188
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2249
2189
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2190
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2250
2191
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2251
2192
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2252
2193
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2253
2194
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2254
2195
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2196
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2255
2197
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2256
2198
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2257
2199
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2200
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2201
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2202
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2258
2203
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2259
2204
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2260
2205
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2261
2206
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2207
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2262
2208
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2263
2209
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2264
2210
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2329,7 +2275,9 @@ export declare const ReorderGroup: {
|
|
|
2329
2275
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2330
2276
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2331
2277
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2278
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2332
2279
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2280
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2333
2281
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2334
2282
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2335
2283
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2338,6 +2286,7 @@ export declare const ReorderGroup: {
|
|
|
2338
2286
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2339
2287
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2340
2288
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2289
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2341
2290
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2342
2291
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2343
2292
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2417,6 +2366,7 @@ export declare const ReorderGroup: {
|
|
|
2417
2366
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2418
2367
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2419
2368
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2369
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2420
2370
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2421
2371
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2422
2372
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2471,6 +2421,7 @@ export declare const ReorderGroup: {
|
|
|
2471
2421
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2472
2422
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2473
2423
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2424
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2474
2425
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2475
2426
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2476
2427
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2478,6 +2429,7 @@ export declare const ReorderGroup: {
|
|
|
2478
2429
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2479
2430
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2480
2431
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2432
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2481
2433
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2482
2434
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2483
2435
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2576,6 +2528,7 @@ export declare const ReorderGroup: {
|
|
|
2576
2528
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2577
2529
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2578
2530
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2531
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2579
2532
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2580
2533
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2581
2534
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2618,6 +2571,67 @@ export declare const ReorderGroup: {
|
|
|
2618
2571
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2619
2572
|
}>>;
|
|
2620
2573
|
};
|
|
2574
|
+
inView: {
|
|
2575
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2576
|
+
};
|
|
2577
|
+
hover: {
|
|
2578
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2579
|
+
};
|
|
2580
|
+
press: {
|
|
2581
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2582
|
+
};
|
|
2583
|
+
variants: {
|
|
2584
|
+
type: import('vue').PropType<{
|
|
2585
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
2586
|
+
}>;
|
|
2587
|
+
};
|
|
2588
|
+
layout: {
|
|
2589
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
2590
|
+
};
|
|
2591
|
+
layoutId: {
|
|
2592
|
+
type: import('vue').PropType<string>;
|
|
2593
|
+
};
|
|
2594
|
+
layoutScroll: {
|
|
2595
|
+
type: import('vue').PropType<boolean>;
|
|
2596
|
+
};
|
|
2597
|
+
layoutRoot: {
|
|
2598
|
+
type: import('vue').PropType<boolean>;
|
|
2599
|
+
};
|
|
2600
|
+
'data-framer-portal-id': {
|
|
2601
|
+
type: import('vue').PropType<string>;
|
|
2602
|
+
};
|
|
2603
|
+
crossfade: {
|
|
2604
|
+
type: import('vue').PropType<boolean>;
|
|
2605
|
+
};
|
|
2606
|
+
inViewOptions: {
|
|
2607
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
2608
|
+
once?: boolean;
|
|
2609
|
+
}>;
|
|
2610
|
+
};
|
|
2611
|
+
dragSnapToOrigin: {
|
|
2612
|
+
type: import('vue').PropType<boolean>;
|
|
2613
|
+
};
|
|
2614
|
+
onDragTransitionEnd: {
|
|
2615
|
+
type: import('vue').PropType<() => void>;
|
|
2616
|
+
};
|
|
2617
|
+
onDragEnd: {
|
|
2618
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
2619
|
+
};
|
|
2620
|
+
dragPropagation: {
|
|
2621
|
+
type: import('vue').PropType<boolean>;
|
|
2622
|
+
};
|
|
2623
|
+
drag: {
|
|
2624
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
2625
|
+
};
|
|
2626
|
+
dragConstraints: {
|
|
2627
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
2628
|
+
};
|
|
2629
|
+
dragElastic: {
|
|
2630
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
2631
|
+
};
|
|
2632
|
+
onMeasureDragConstraints: {
|
|
2633
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
2634
|
+
};
|
|
2621
2635
|
focus: {
|
|
2622
2636
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2623
2637
|
};
|
|
@@ -2655,11 +2669,6 @@ export declare const ReorderGroup: {
|
|
|
2655
2669
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
2656
2670
|
default: string;
|
|
2657
2671
|
};
|
|
2658
|
-
variants: {
|
|
2659
|
-
type: import('vue').PropType<{
|
|
2660
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
2661
|
-
}>;
|
|
2662
|
-
};
|
|
2663
2672
|
layoutGroup: {
|
|
2664
2673
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
2665
2674
|
};
|
|
@@ -2687,9 +2696,6 @@ export declare const ReorderGroup: {
|
|
|
2687
2696
|
globalPressTarget: {
|
|
2688
2697
|
type: import('vue').PropType<boolean>;
|
|
2689
2698
|
};
|
|
2690
|
-
press: {
|
|
2691
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2692
|
-
};
|
|
2693
2699
|
onPressStart: {
|
|
2694
2700
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
2695
2701
|
};
|
|
@@ -2699,18 +2705,12 @@ export declare const ReorderGroup: {
|
|
|
2699
2705
|
onPressCancel: {
|
|
2700
2706
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
2701
2707
|
};
|
|
2702
|
-
hover: {
|
|
2703
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2704
|
-
};
|
|
2705
2708
|
onHoverStart: {
|
|
2706
2709
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
2707
2710
|
};
|
|
2708
2711
|
onHoverEnd: {
|
|
2709
2712
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
2710
2713
|
};
|
|
2711
|
-
inView: {
|
|
2712
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2713
|
-
};
|
|
2714
2714
|
onViewportEnter: {
|
|
2715
2715
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
2716
2716
|
};
|
|
@@ -2751,52 +2751,8 @@ export declare const ReorderGroup: {
|
|
|
2751
2751
|
}>;
|
|
2752
2752
|
__isFragment?: never;
|
|
2753
2753
|
__isTeleport?: never;
|
|
2754
|
-
__isSuspense?: never;
|
|
2755
|
-
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
2756
|
-
layout: {
|
|
2757
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
2758
|
-
};
|
|
2759
|
-
layoutId: {
|
|
2760
|
-
type: import('vue').PropType<string>;
|
|
2761
|
-
};
|
|
2762
|
-
layoutScroll: {
|
|
2763
|
-
type: import('vue').PropType<boolean>;
|
|
2764
|
-
};
|
|
2765
|
-
layoutRoot: {
|
|
2766
|
-
type: import('vue').PropType<boolean>;
|
|
2767
|
-
};
|
|
2768
|
-
'data-framer-portal-id': {
|
|
2769
|
-
type: import('vue').PropType<string>;
|
|
2770
|
-
};
|
|
2771
|
-
crossfade: {
|
|
2772
|
-
type: import('vue').PropType<boolean>;
|
|
2773
|
-
};
|
|
2774
|
-
inViewOptions: {
|
|
2775
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
2776
|
-
once?: boolean;
|
|
2777
|
-
}>;
|
|
2778
|
-
};
|
|
2779
|
-
values: {
|
|
2780
|
-
type: import('vue').PropType<unknown[]>;
|
|
2781
|
-
required: true;
|
|
2782
|
-
};
|
|
2783
|
-
dragSnapToOrigin: {
|
|
2784
|
-
type: import('vue').PropType<boolean>;
|
|
2785
|
-
};
|
|
2786
|
-
transition: {
|
|
2787
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
2788
|
-
layout?: import('../..').$Transition;
|
|
2789
|
-
}>;
|
|
2790
|
-
};
|
|
2791
|
-
onDragTransitionEnd: {
|
|
2792
|
-
type: import('vue').PropType<() => void>;
|
|
2793
|
-
};
|
|
2794
|
-
onDragEnd: {
|
|
2795
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
2796
|
-
};
|
|
2797
|
-
dragPropagation: {
|
|
2798
|
-
type: import('vue').PropType<boolean>;
|
|
2799
|
-
};
|
|
2754
|
+
__isSuspense?: never;
|
|
2755
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
2800
2756
|
initial: {
|
|
2801
2757
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
2802
2758
|
};
|
|
@@ -2821,56 +2777,32 @@ export declare const ReorderGroup: {
|
|
|
2821
2777
|
exit: {
|
|
2822
2778
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
2823
2779
|
};
|
|
2824
|
-
|
|
2825
|
-
type: import('vue').PropType<
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
2829
|
-
};
|
|
2830
|
-
dragElastic: {
|
|
2831
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
2780
|
+
transition: {
|
|
2781
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
2782
|
+
layout?: import('../..').$Transition;
|
|
2783
|
+
}>;
|
|
2832
2784
|
};
|
|
2833
|
-
|
|
2834
|
-
type: import('vue').PropType<
|
|
2785
|
+
values: {
|
|
2786
|
+
type: import('vue').PropType<unknown[]>;
|
|
2787
|
+
required: true;
|
|
2835
2788
|
};
|
|
2836
2789
|
style: {
|
|
2837
2790
|
type: import('vue').PropType<Partial<{
|
|
2838
2791
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2839
2792
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2840
2793
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2841
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2842
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2843
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2844
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2845
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2846
2794
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2847
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2848
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2849
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2850
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2851
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2852
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2853
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2854
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2855
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2856
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2857
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2858
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2859
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2860
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2861
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2862
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2863
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2864
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2865
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2866
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2867
2795
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2796
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2797
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2798
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2868
2799
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2869
2800
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2870
2801
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2871
2802
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2872
2803
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2873
2804
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2805
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2874
2806
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2875
2807
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2876
2808
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2961,6 +2893,7 @@ export declare const ReorderGroup: {
|
|
|
2961
2893
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2962
2894
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2963
2895
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2896
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2964
2897
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2965
2898
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2966
2899
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -2968,6 +2901,7 @@ export declare const ReorderGroup: {
|
|
|
2968
2901
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2969
2902
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2970
2903
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2904
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2971
2905
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2972
2906
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2973
2907
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3008,8 +2942,10 @@ export declare const ReorderGroup: {
|
|
|
3008
2942
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3009
2943
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3010
2944
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2945
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3011
2946
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3012
2947
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
2948
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3013
2949
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3014
2950
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3015
2951
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3080,6 +3016,8 @@ export declare const ReorderGroup: {
|
|
|
3080
3016
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3081
3017
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3082
3018
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3019
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3020
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3083
3021
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3084
3022
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3085
3023
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3126,6 +3064,7 @@ export declare const ReorderGroup: {
|
|
|
3126
3064
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3127
3065
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3128
3066
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3067
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3129
3068
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3130
3069
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3131
3070
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3161,23 +3100,30 @@ export declare const ReorderGroup: {
|
|
|
3161
3100
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3162
3101
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3163
3102
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3103
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3164
3104
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3165
3105
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3166
3106
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3167
3107
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3168
3108
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3109
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3169
3110
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3170
3111
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3171
3112
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3172
3113
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3173
3114
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3115
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3174
3116
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3175
3117
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3176
3118
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3119
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3120
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3121
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3177
3122
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3178
3123
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3179
3124
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3180
3125
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3126
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3181
3127
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3182
3128
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3183
3129
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3248,7 +3194,9 @@ export declare const ReorderGroup: {
|
|
|
3248
3194
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3249
3195
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3250
3196
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3197
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3251
3198
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3199
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3252
3200
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3253
3201
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3254
3202
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3257,6 +3205,7 @@ export declare const ReorderGroup: {
|
|
|
3257
3205
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3258
3206
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3259
3207
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3208
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3260
3209
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3261
3210
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3262
3211
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3336,6 +3285,7 @@ export declare const ReorderGroup: {
|
|
|
3336
3285
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3337
3286
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3338
3287
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3288
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3339
3289
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3340
3290
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3341
3291
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3390,6 +3340,7 @@ export declare const ReorderGroup: {
|
|
|
3390
3340
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3391
3341
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3392
3342
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3343
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3393
3344
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3394
3345
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3395
3346
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3397,6 +3348,7 @@ export declare const ReorderGroup: {
|
|
|
3397
3348
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3398
3349
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3399
3350
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3351
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3400
3352
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3401
3353
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3402
3354
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3495,6 +3447,7 @@ export declare const ReorderGroup: {
|
|
|
3495
3447
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3496
3448
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3497
3449
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3450
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3498
3451
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3499
3452
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3500
3453
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3537,6 +3490,67 @@ export declare const ReorderGroup: {
|
|
|
3537
3490
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3538
3491
|
}>>;
|
|
3539
3492
|
};
|
|
3493
|
+
inView: {
|
|
3494
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3495
|
+
};
|
|
3496
|
+
hover: {
|
|
3497
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3498
|
+
};
|
|
3499
|
+
press: {
|
|
3500
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3501
|
+
};
|
|
3502
|
+
variants: {
|
|
3503
|
+
type: import('vue').PropType<{
|
|
3504
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
3505
|
+
}>;
|
|
3506
|
+
};
|
|
3507
|
+
layout: {
|
|
3508
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
3509
|
+
};
|
|
3510
|
+
layoutId: {
|
|
3511
|
+
type: import('vue').PropType<string>;
|
|
3512
|
+
};
|
|
3513
|
+
layoutScroll: {
|
|
3514
|
+
type: import('vue').PropType<boolean>;
|
|
3515
|
+
};
|
|
3516
|
+
layoutRoot: {
|
|
3517
|
+
type: import('vue').PropType<boolean>;
|
|
3518
|
+
};
|
|
3519
|
+
'data-framer-portal-id': {
|
|
3520
|
+
type: import('vue').PropType<string>;
|
|
3521
|
+
};
|
|
3522
|
+
crossfade: {
|
|
3523
|
+
type: import('vue').PropType<boolean>;
|
|
3524
|
+
};
|
|
3525
|
+
inViewOptions: {
|
|
3526
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
3527
|
+
once?: boolean;
|
|
3528
|
+
}>;
|
|
3529
|
+
};
|
|
3530
|
+
dragSnapToOrigin: {
|
|
3531
|
+
type: import('vue').PropType<boolean>;
|
|
3532
|
+
};
|
|
3533
|
+
onDragTransitionEnd: {
|
|
3534
|
+
type: import('vue').PropType<() => void>;
|
|
3535
|
+
};
|
|
3536
|
+
onDragEnd: {
|
|
3537
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
3538
|
+
};
|
|
3539
|
+
dragPropagation: {
|
|
3540
|
+
type: import('vue').PropType<boolean>;
|
|
3541
|
+
};
|
|
3542
|
+
drag: {
|
|
3543
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
3544
|
+
};
|
|
3545
|
+
dragConstraints: {
|
|
3546
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
3547
|
+
};
|
|
3548
|
+
dragElastic: {
|
|
3549
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
3550
|
+
};
|
|
3551
|
+
onMeasureDragConstraints: {
|
|
3552
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
3553
|
+
};
|
|
3540
3554
|
focus: {
|
|
3541
3555
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3542
3556
|
};
|
|
@@ -3574,11 +3588,6 @@ export declare const ReorderGroup: {
|
|
|
3574
3588
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
3575
3589
|
default: string;
|
|
3576
3590
|
};
|
|
3577
|
-
variants: {
|
|
3578
|
-
type: import('vue').PropType<{
|
|
3579
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
3580
|
-
}>;
|
|
3581
|
-
};
|
|
3582
3591
|
layoutGroup: {
|
|
3583
3592
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
3584
3593
|
};
|
|
@@ -3606,9 +3615,6 @@ export declare const ReorderGroup: {
|
|
|
3606
3615
|
globalPressTarget: {
|
|
3607
3616
|
type: import('vue').PropType<boolean>;
|
|
3608
3617
|
};
|
|
3609
|
-
press: {
|
|
3610
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3611
|
-
};
|
|
3612
3618
|
onPressStart: {
|
|
3613
3619
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
3614
3620
|
};
|
|
@@ -3618,18 +3624,12 @@ export declare const ReorderGroup: {
|
|
|
3618
3624
|
onPressCancel: {
|
|
3619
3625
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
3620
3626
|
};
|
|
3621
|
-
hover: {
|
|
3622
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3623
|
-
};
|
|
3624
3627
|
onHoverStart: {
|
|
3625
3628
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
3626
3629
|
};
|
|
3627
3630
|
onHoverEnd: {
|
|
3628
3631
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
3629
3632
|
};
|
|
3630
|
-
inView: {
|
|
3631
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
3632
|
-
};
|
|
3633
3633
|
onViewportEnter: {
|
|
3634
3634
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
3635
3635
|
};
|
|
@@ -3706,39 +3706,18 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3706
3706
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3707
3707
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3708
3708
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3709
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3710
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3711
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3712
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3713
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3714
3709
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3715
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3716
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3717
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3718
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3719
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3720
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3721
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3722
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3723
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3724
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3725
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3726
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3727
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3728
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3729
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3730
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3731
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3732
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3733
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3734
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3735
3710
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3711
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3712
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3713
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3736
3714
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3737
3715
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3738
3716
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3739
3717
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3740
3718
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3741
3719
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3720
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3742
3721
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3743
3722
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3744
3723
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3829,6 +3808,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3829
3808
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3830
3809
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3831
3810
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3811
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3832
3812
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3833
3813
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3834
3814
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3836,6 +3816,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3836
3816
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3837
3817
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3838
3818
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3819
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3839
3820
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3840
3821
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3841
3822
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3876,8 +3857,10 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3876
3857
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3877
3858
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3878
3859
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3860
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3879
3861
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3880
3862
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3863
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3881
3864
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3882
3865
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3883
3866
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3948,6 +3931,8 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3948
3931
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3949
3932
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3950
3933
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3934
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3935
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3951
3936
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3952
3937
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3953
3938
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -3994,6 +3979,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
3994
3979
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3995
3980
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3996
3981
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3982
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3997
3983
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3998
3984
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
3999
3985
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4029,23 +4015,30 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4029
4015
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4030
4016
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4031
4017
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4018
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4032
4019
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4033
4020
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4034
4021
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4035
4022
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4036
4023
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4024
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4037
4025
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4038
4026
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4039
4027
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4040
4028
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4041
4029
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4030
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4042
4031
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4043
4032
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4044
4033
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4034
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4035
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4036
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4045
4037
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4046
4038
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4047
4039
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4048
4040
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4041
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4049
4042
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4050
4043
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4051
4044
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4116,7 +4109,9 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4116
4109
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4117
4110
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4118
4111
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4112
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4119
4113
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4114
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4120
4115
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4121
4116
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4122
4117
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4125,6 +4120,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4125
4120
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4126
4121
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4127
4122
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4123
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4128
4124
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4129
4125
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4130
4126
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4204,6 +4200,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4204
4200
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4205
4201
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4206
4202
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4203
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4207
4204
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4208
4205
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4209
4206
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4258,6 +4255,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4258
4255
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4259
4256
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4260
4257
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4258
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4261
4259
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4262
4260
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4263
4261
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4265,6 +4263,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4265
4263
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4266
4264
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4267
4265
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4266
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4268
4267
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4269
4268
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4270
4269
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4363,6 +4362,7 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4363
4362
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4364
4363
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4365
4364
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4365
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4366
4366
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4367
4367
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4368
4368
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4453,68 +4453,24 @@ export declare const ReorderItem: <T extends import('../..').ElementType = "li",
|
|
|
4453
4453
|
onPan?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
4454
4454
|
onPanEnd?: (event: PointerEvent, info: import('../..').PanInfo) => void;
|
|
4455
4455
|
onFocus?: (e: FocusEvent) => void;
|
|
4456
|
-
onBlur?: (e: FocusEvent) => void;
|
|
4457
|
-
} & import('vue').PublicProps;
|
|
4458
|
-
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
4459
|
-
attrs: any;
|
|
4460
|
-
slots: {
|
|
4461
|
-
default?(_: {
|
|
4462
|
-
isDragging: boolean;
|
|
4463
|
-
}): any;
|
|
4464
|
-
};
|
|
4465
|
-
emit: {};
|
|
4466
|
-
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
4467
|
-
[key: string]: any;
|
|
4468
|
-
}> & {
|
|
4469
|
-
__ctx?: Awaited<typeof __VLS_setup>;
|
|
4470
|
-
};
|
|
4471
|
-
export declare const Reorder: {
|
|
4472
|
-
Group: {
|
|
4473
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
4474
|
-
layout: {
|
|
4475
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
4476
|
-
};
|
|
4477
|
-
layoutId: {
|
|
4478
|
-
type: import('vue').PropType<string>;
|
|
4479
|
-
};
|
|
4480
|
-
layoutScroll: {
|
|
4481
|
-
type: import('vue').PropType<boolean>;
|
|
4482
|
-
};
|
|
4483
|
-
layoutRoot: {
|
|
4484
|
-
type: import('vue').PropType<boolean>;
|
|
4485
|
-
};
|
|
4486
|
-
'data-framer-portal-id': {
|
|
4487
|
-
type: import('vue').PropType<string>;
|
|
4488
|
-
};
|
|
4489
|
-
crossfade: {
|
|
4490
|
-
type: import('vue').PropType<boolean>;
|
|
4491
|
-
};
|
|
4492
|
-
inViewOptions: {
|
|
4493
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
4494
|
-
once?: boolean;
|
|
4495
|
-
}>;
|
|
4496
|
-
};
|
|
4497
|
-
values: {
|
|
4498
|
-
type: import('vue').PropType<unknown[]>;
|
|
4499
|
-
required: true;
|
|
4500
|
-
};
|
|
4501
|
-
dragSnapToOrigin: {
|
|
4502
|
-
type: import('vue').PropType<boolean>;
|
|
4503
|
-
};
|
|
4504
|
-
transition: {
|
|
4505
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
4506
|
-
layout?: import('../..').$Transition;
|
|
4507
|
-
}>;
|
|
4508
|
-
};
|
|
4509
|
-
onDragTransitionEnd: {
|
|
4510
|
-
type: import('vue').PropType<() => void>;
|
|
4511
|
-
};
|
|
4512
|
-
onDragEnd: {
|
|
4513
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
4514
|
-
};
|
|
4515
|
-
dragPropagation: {
|
|
4516
|
-
type: import('vue').PropType<boolean>;
|
|
4517
|
-
};
|
|
4456
|
+
onBlur?: (e: FocusEvent) => void;
|
|
4457
|
+
} & import('vue').PublicProps;
|
|
4458
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
4459
|
+
attrs: any;
|
|
4460
|
+
slots: {
|
|
4461
|
+
default?(_: {
|
|
4462
|
+
isDragging: boolean;
|
|
4463
|
+
}): any;
|
|
4464
|
+
};
|
|
4465
|
+
emit: {};
|
|
4466
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
4467
|
+
[key: string]: any;
|
|
4468
|
+
}> & {
|
|
4469
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
4470
|
+
};
|
|
4471
|
+
export declare const Reorder: {
|
|
4472
|
+
Group: {
|
|
4473
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
4518
4474
|
initial: {
|
|
4519
4475
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
4520
4476
|
};
|
|
@@ -4539,56 +4495,32 @@ export declare const Reorder: {
|
|
|
4539
4495
|
exit: {
|
|
4540
4496
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
4541
4497
|
};
|
|
4542
|
-
|
|
4543
|
-
type: import('vue').PropType<
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
4547
|
-
};
|
|
4548
|
-
dragElastic: {
|
|
4549
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
4498
|
+
transition: {
|
|
4499
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
4500
|
+
layout?: import('../..').$Transition;
|
|
4501
|
+
}>;
|
|
4550
4502
|
};
|
|
4551
|
-
|
|
4552
|
-
type: import('vue').PropType<
|
|
4503
|
+
values: {
|
|
4504
|
+
type: import('vue').PropType<unknown[]>;
|
|
4505
|
+
required: true;
|
|
4553
4506
|
};
|
|
4554
4507
|
style: {
|
|
4555
4508
|
type: import('vue').PropType<Partial<{
|
|
4556
4509
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4557
4510
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4558
4511
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4559
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4560
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4561
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4562
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4563
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4564
4512
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4565
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4566
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4567
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4568
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4569
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4570
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4571
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4572
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4573
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4574
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4575
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4576
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4577
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4578
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4579
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4580
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4581
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4582
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4583
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4584
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4585
4513
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4514
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4515
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4516
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4586
4517
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4587
4518
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4588
4519
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4589
4520
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4590
4521
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4591
4522
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4523
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4592
4524
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4593
4525
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4594
4526
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4679,6 +4611,7 @@ export declare const Reorder: {
|
|
|
4679
4611
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4680
4612
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4681
4613
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4614
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4682
4615
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4683
4616
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4684
4617
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4686,6 +4619,7 @@ export declare const Reorder: {
|
|
|
4686
4619
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4687
4620
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4688
4621
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4622
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4689
4623
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4690
4624
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4691
4625
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4726,8 +4660,10 @@ export declare const Reorder: {
|
|
|
4726
4660
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4727
4661
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4728
4662
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4663
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4729
4664
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4730
4665
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4666
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4731
4667
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4732
4668
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4733
4669
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4798,6 +4734,8 @@ export declare const Reorder: {
|
|
|
4798
4734
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4799
4735
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4800
4736
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4737
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4738
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4801
4739
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4802
4740
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4803
4741
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4844,6 +4782,7 @@ export declare const Reorder: {
|
|
|
4844
4782
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4845
4783
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4846
4784
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4785
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4847
4786
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4848
4787
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4849
4788
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4879,23 +4818,30 @@ export declare const Reorder: {
|
|
|
4879
4818
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4880
4819
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4881
4820
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4821
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4882
4822
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4883
4823
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4884
4824
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4885
4825
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4886
4826
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4827
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4887
4828
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4888
4829
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4889
4830
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4890
4831
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4891
4832
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4833
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4892
4834
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4893
4835
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4894
4836
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4837
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4838
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4839
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4895
4840
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4896
4841
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4897
4842
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4898
4843
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4844
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4899
4845
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4900
4846
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4901
4847
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4966,7 +4912,9 @@ export declare const Reorder: {
|
|
|
4966
4912
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4967
4913
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4968
4914
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4915
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4969
4916
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4917
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4970
4918
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4971
4919
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4972
4920
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -4975,6 +4923,7 @@ export declare const Reorder: {
|
|
|
4975
4923
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4976
4924
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4977
4925
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4926
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4978
4927
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4979
4928
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
4980
4929
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5054,6 +5003,7 @@ export declare const Reorder: {
|
|
|
5054
5003
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5055
5004
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5056
5005
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5006
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5057
5007
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5058
5008
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5059
5009
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5108,6 +5058,7 @@ export declare const Reorder: {
|
|
|
5108
5058
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5109
5059
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5110
5060
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5061
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5111
5062
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5112
5063
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5113
5064
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5115,6 +5066,7 @@ export declare const Reorder: {
|
|
|
5115
5066
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5116
5067
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5117
5068
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5069
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5118
5070
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5119
5071
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5120
5072
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5213,6 +5165,7 @@ export declare const Reorder: {
|
|
|
5213
5165
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5214
5166
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5215
5167
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5168
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5216
5169
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5217
5170
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5218
5171
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5255,6 +5208,67 @@ export declare const Reorder: {
|
|
|
5255
5208
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5256
5209
|
}>>;
|
|
5257
5210
|
};
|
|
5211
|
+
inView: {
|
|
5212
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5213
|
+
};
|
|
5214
|
+
hover: {
|
|
5215
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5216
|
+
};
|
|
5217
|
+
press: {
|
|
5218
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5219
|
+
};
|
|
5220
|
+
variants: {
|
|
5221
|
+
type: import('vue').PropType<{
|
|
5222
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
5223
|
+
}>;
|
|
5224
|
+
};
|
|
5225
|
+
layout: {
|
|
5226
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
5227
|
+
};
|
|
5228
|
+
layoutId: {
|
|
5229
|
+
type: import('vue').PropType<string>;
|
|
5230
|
+
};
|
|
5231
|
+
layoutScroll: {
|
|
5232
|
+
type: import('vue').PropType<boolean>;
|
|
5233
|
+
};
|
|
5234
|
+
layoutRoot: {
|
|
5235
|
+
type: import('vue').PropType<boolean>;
|
|
5236
|
+
};
|
|
5237
|
+
'data-framer-portal-id': {
|
|
5238
|
+
type: import('vue').PropType<string>;
|
|
5239
|
+
};
|
|
5240
|
+
crossfade: {
|
|
5241
|
+
type: import('vue').PropType<boolean>;
|
|
5242
|
+
};
|
|
5243
|
+
inViewOptions: {
|
|
5244
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
5245
|
+
once?: boolean;
|
|
5246
|
+
}>;
|
|
5247
|
+
};
|
|
5248
|
+
dragSnapToOrigin: {
|
|
5249
|
+
type: import('vue').PropType<boolean>;
|
|
5250
|
+
};
|
|
5251
|
+
onDragTransitionEnd: {
|
|
5252
|
+
type: import('vue').PropType<() => void>;
|
|
5253
|
+
};
|
|
5254
|
+
onDragEnd: {
|
|
5255
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
5256
|
+
};
|
|
5257
|
+
dragPropagation: {
|
|
5258
|
+
type: import('vue').PropType<boolean>;
|
|
5259
|
+
};
|
|
5260
|
+
drag: {
|
|
5261
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
5262
|
+
};
|
|
5263
|
+
dragConstraints: {
|
|
5264
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
5265
|
+
};
|
|
5266
|
+
dragElastic: {
|
|
5267
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
5268
|
+
};
|
|
5269
|
+
onMeasureDragConstraints: {
|
|
5270
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
5271
|
+
};
|
|
5258
5272
|
focus: {
|
|
5259
5273
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5260
5274
|
};
|
|
@@ -5292,11 +5306,6 @@ export declare const Reorder: {
|
|
|
5292
5306
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
5293
5307
|
default: string;
|
|
5294
5308
|
};
|
|
5295
|
-
variants: {
|
|
5296
|
-
type: import('vue').PropType<{
|
|
5297
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
5298
|
-
}>;
|
|
5299
|
-
};
|
|
5300
5309
|
layoutGroup: {
|
|
5301
5310
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
5302
5311
|
};
|
|
@@ -5324,9 +5333,6 @@ export declare const Reorder: {
|
|
|
5324
5333
|
globalPressTarget: {
|
|
5325
5334
|
type: import('vue').PropType<boolean>;
|
|
5326
5335
|
};
|
|
5327
|
-
press: {
|
|
5328
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5329
|
-
};
|
|
5330
5336
|
onPressStart: {
|
|
5331
5337
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
5332
5338
|
};
|
|
@@ -5336,18 +5342,12 @@ export declare const Reorder: {
|
|
|
5336
5342
|
onPressCancel: {
|
|
5337
5343
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
5338
5344
|
};
|
|
5339
|
-
hover: {
|
|
5340
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5341
|
-
};
|
|
5342
5345
|
onHoverStart: {
|
|
5343
5346
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
5344
5347
|
};
|
|
5345
5348
|
onHoverEnd: {
|
|
5346
5349
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
5347
5350
|
};
|
|
5348
|
-
inView: {
|
|
5349
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5350
|
-
};
|
|
5351
5351
|
onViewportEnter: {
|
|
5352
5352
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
5353
5353
|
};
|
|
@@ -5383,50 +5383,6 @@ export declare const Reorder: {
|
|
|
5383
5383
|
type: import('vue').PropType<(newOrder: unknown[]) => void>;
|
|
5384
5384
|
};
|
|
5385
5385
|
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
5386
|
-
layout: {
|
|
5387
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
5388
|
-
};
|
|
5389
|
-
layoutId: {
|
|
5390
|
-
type: import('vue').PropType<string>;
|
|
5391
|
-
};
|
|
5392
|
-
layoutScroll: {
|
|
5393
|
-
type: import('vue').PropType<boolean>;
|
|
5394
|
-
};
|
|
5395
|
-
layoutRoot: {
|
|
5396
|
-
type: import('vue').PropType<boolean>;
|
|
5397
|
-
};
|
|
5398
|
-
'data-framer-portal-id': {
|
|
5399
|
-
type: import('vue').PropType<string>;
|
|
5400
|
-
};
|
|
5401
|
-
crossfade: {
|
|
5402
|
-
type: import('vue').PropType<boolean>;
|
|
5403
|
-
};
|
|
5404
|
-
inViewOptions: {
|
|
5405
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
5406
|
-
once?: boolean;
|
|
5407
|
-
}>;
|
|
5408
|
-
};
|
|
5409
|
-
values: {
|
|
5410
|
-
type: import('vue').PropType<unknown[]>;
|
|
5411
|
-
required: true;
|
|
5412
|
-
};
|
|
5413
|
-
dragSnapToOrigin: {
|
|
5414
|
-
type: import('vue').PropType<boolean>;
|
|
5415
|
-
};
|
|
5416
|
-
transition: {
|
|
5417
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
5418
|
-
layout?: import('../..').$Transition;
|
|
5419
|
-
}>;
|
|
5420
|
-
};
|
|
5421
|
-
onDragTransitionEnd: {
|
|
5422
|
-
type: import('vue').PropType<() => void>;
|
|
5423
|
-
};
|
|
5424
|
-
onDragEnd: {
|
|
5425
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
5426
|
-
};
|
|
5427
|
-
dragPropagation: {
|
|
5428
|
-
type: import('vue').PropType<boolean>;
|
|
5429
|
-
};
|
|
5430
5386
|
initial: {
|
|
5431
5387
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
5432
5388
|
};
|
|
@@ -5451,56 +5407,32 @@ export declare const Reorder: {
|
|
|
5451
5407
|
exit: {
|
|
5452
5408
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
5453
5409
|
};
|
|
5454
|
-
|
|
5455
|
-
type: import('vue').PropType<
|
|
5456
|
-
|
|
5457
|
-
|
|
5458
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
5459
|
-
};
|
|
5460
|
-
dragElastic: {
|
|
5461
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
5410
|
+
transition: {
|
|
5411
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
5412
|
+
layout?: import('../..').$Transition;
|
|
5413
|
+
}>;
|
|
5462
5414
|
};
|
|
5463
|
-
|
|
5464
|
-
type: import('vue').PropType<
|
|
5415
|
+
values: {
|
|
5416
|
+
type: import('vue').PropType<unknown[]>;
|
|
5417
|
+
required: true;
|
|
5465
5418
|
};
|
|
5466
5419
|
style: {
|
|
5467
5420
|
type: import('vue').PropType<Partial<{
|
|
5468
5421
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5469
5422
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5470
5423
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5471
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5472
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5473
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5474
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5475
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5476
5424
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5477
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5478
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5479
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5480
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5481
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5482
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5483
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5484
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5485
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5486
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5487
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5488
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5489
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5490
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5491
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5492
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5493
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5494
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5495
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5496
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5497
5425
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5426
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5427
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5428
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5498
5429
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5499
5430
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5500
5431
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5501
5432
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5502
5433
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5503
5434
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5435
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5504
5436
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5505
5437
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5506
5438
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5591,6 +5523,7 @@ export declare const Reorder: {
|
|
|
5591
5523
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5592
5524
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5593
5525
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5526
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5594
5527
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5595
5528
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5596
5529
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5598,6 +5531,7 @@ export declare const Reorder: {
|
|
|
5598
5531
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5599
5532
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5600
5533
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5534
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5601
5535
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5602
5536
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5603
5537
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5638,8 +5572,10 @@ export declare const Reorder: {
|
|
|
5638
5572
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5639
5573
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5640
5574
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5575
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5641
5576
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5642
5577
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5578
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5643
5579
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5644
5580
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5645
5581
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5710,6 +5646,8 @@ export declare const Reorder: {
|
|
|
5710
5646
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5711
5647
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5712
5648
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5649
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5650
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5713
5651
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5714
5652
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5715
5653
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5756,6 +5694,7 @@ export declare const Reorder: {
|
|
|
5756
5694
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5757
5695
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5758
5696
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5697
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5759
5698
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5760
5699
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5761
5700
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5791,23 +5730,30 @@ export declare const Reorder: {
|
|
|
5791
5730
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5792
5731
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5793
5732
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5733
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5794
5734
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5795
5735
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5796
5736
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5797
5737
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5798
5738
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5739
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5799
5740
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5800
5741
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5801
5742
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5802
5743
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5803
5744
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5745
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5804
5746
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5805
5747
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5806
5748
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5749
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5750
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5751
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5807
5752
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5808
5753
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5809
5754
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5810
5755
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5756
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5811
5757
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5812
5758
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5813
5759
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5878,7 +5824,9 @@ export declare const Reorder: {
|
|
|
5878
5824
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5879
5825
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5880
5826
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5827
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5881
5828
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5829
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5882
5830
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5883
5831
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5884
5832
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5887,6 +5835,7 @@ export declare const Reorder: {
|
|
|
5887
5835
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5888
5836
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5889
5837
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5838
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5890
5839
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5891
5840
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5892
5841
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -5966,6 +5915,7 @@ export declare const Reorder: {
|
|
|
5966
5915
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5967
5916
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5968
5917
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5918
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5969
5919
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5970
5920
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5971
5921
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6020,6 +5970,7 @@ export declare const Reorder: {
|
|
|
6020
5970
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6021
5971
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6022
5972
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5973
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6023
5974
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6024
5975
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6025
5976
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6027,6 +5978,7 @@ export declare const Reorder: {
|
|
|
6027
5978
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6028
5979
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6029
5980
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
5981
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6030
5982
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6031
5983
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6032
5984
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6125,6 +6077,7 @@ export declare const Reorder: {
|
|
|
6125
6077
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6126
6078
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6127
6079
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6080
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6128
6081
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6129
6082
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6130
6083
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6167,6 +6120,67 @@ export declare const Reorder: {
|
|
|
6167
6120
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6168
6121
|
}>>;
|
|
6169
6122
|
};
|
|
6123
|
+
inView: {
|
|
6124
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6125
|
+
};
|
|
6126
|
+
hover: {
|
|
6127
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6128
|
+
};
|
|
6129
|
+
press: {
|
|
6130
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6131
|
+
};
|
|
6132
|
+
variants: {
|
|
6133
|
+
type: import('vue').PropType<{
|
|
6134
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
6135
|
+
}>;
|
|
6136
|
+
};
|
|
6137
|
+
layout: {
|
|
6138
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
6139
|
+
};
|
|
6140
|
+
layoutId: {
|
|
6141
|
+
type: import('vue').PropType<string>;
|
|
6142
|
+
};
|
|
6143
|
+
layoutScroll: {
|
|
6144
|
+
type: import('vue').PropType<boolean>;
|
|
6145
|
+
};
|
|
6146
|
+
layoutRoot: {
|
|
6147
|
+
type: import('vue').PropType<boolean>;
|
|
6148
|
+
};
|
|
6149
|
+
'data-framer-portal-id': {
|
|
6150
|
+
type: import('vue').PropType<string>;
|
|
6151
|
+
};
|
|
6152
|
+
crossfade: {
|
|
6153
|
+
type: import('vue').PropType<boolean>;
|
|
6154
|
+
};
|
|
6155
|
+
inViewOptions: {
|
|
6156
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
6157
|
+
once?: boolean;
|
|
6158
|
+
}>;
|
|
6159
|
+
};
|
|
6160
|
+
dragSnapToOrigin: {
|
|
6161
|
+
type: import('vue').PropType<boolean>;
|
|
6162
|
+
};
|
|
6163
|
+
onDragTransitionEnd: {
|
|
6164
|
+
type: import('vue').PropType<() => void>;
|
|
6165
|
+
};
|
|
6166
|
+
onDragEnd: {
|
|
6167
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
6168
|
+
};
|
|
6169
|
+
dragPropagation: {
|
|
6170
|
+
type: import('vue').PropType<boolean>;
|
|
6171
|
+
};
|
|
6172
|
+
drag: {
|
|
6173
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
6174
|
+
};
|
|
6175
|
+
dragConstraints: {
|
|
6176
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
6177
|
+
};
|
|
6178
|
+
dragElastic: {
|
|
6179
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
6180
|
+
};
|
|
6181
|
+
onMeasureDragConstraints: {
|
|
6182
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
6183
|
+
};
|
|
6170
6184
|
focus: {
|
|
6171
6185
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6172
6186
|
};
|
|
@@ -6204,11 +6218,6 @@ export declare const Reorder: {
|
|
|
6204
6218
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
6205
6219
|
default: string;
|
|
6206
6220
|
};
|
|
6207
|
-
variants: {
|
|
6208
|
-
type: import('vue').PropType<{
|
|
6209
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
6210
|
-
}>;
|
|
6211
|
-
};
|
|
6212
6221
|
layoutGroup: {
|
|
6213
6222
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
6214
6223
|
};
|
|
@@ -6236,9 +6245,6 @@ export declare const Reorder: {
|
|
|
6236
6245
|
globalPressTarget: {
|
|
6237
6246
|
type: import('vue').PropType<boolean>;
|
|
6238
6247
|
};
|
|
6239
|
-
press: {
|
|
6240
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6241
|
-
};
|
|
6242
6248
|
onPressStart: {
|
|
6243
6249
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
6244
6250
|
};
|
|
@@ -6248,18 +6254,12 @@ export declare const Reorder: {
|
|
|
6248
6254
|
onPressCancel: {
|
|
6249
6255
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
6250
6256
|
};
|
|
6251
|
-
hover: {
|
|
6252
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6253
|
-
};
|
|
6254
6257
|
onHoverStart: {
|
|
6255
6258
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
6256
6259
|
};
|
|
6257
6260
|
onHoverEnd: {
|
|
6258
6261
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
6259
6262
|
};
|
|
6260
|
-
inView: {
|
|
6261
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6262
|
-
};
|
|
6263
6263
|
onViewportEnter: {
|
|
6264
6264
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
6265
6265
|
};
|
|
@@ -6305,50 +6305,6 @@ export declare const Reorder: {
|
|
|
6305
6305
|
M: {};
|
|
6306
6306
|
Defaults: {};
|
|
6307
6307
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
6308
|
-
layout: {
|
|
6309
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
6310
|
-
};
|
|
6311
|
-
layoutId: {
|
|
6312
|
-
type: import('vue').PropType<string>;
|
|
6313
|
-
};
|
|
6314
|
-
layoutScroll: {
|
|
6315
|
-
type: import('vue').PropType<boolean>;
|
|
6316
|
-
};
|
|
6317
|
-
layoutRoot: {
|
|
6318
|
-
type: import('vue').PropType<boolean>;
|
|
6319
|
-
};
|
|
6320
|
-
'data-framer-portal-id': {
|
|
6321
|
-
type: import('vue').PropType<string>;
|
|
6322
|
-
};
|
|
6323
|
-
crossfade: {
|
|
6324
|
-
type: import('vue').PropType<boolean>;
|
|
6325
|
-
};
|
|
6326
|
-
inViewOptions: {
|
|
6327
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
6328
|
-
once?: boolean;
|
|
6329
|
-
}>;
|
|
6330
|
-
};
|
|
6331
|
-
values: {
|
|
6332
|
-
type: import('vue').PropType<unknown[]>;
|
|
6333
|
-
required: true;
|
|
6334
|
-
};
|
|
6335
|
-
dragSnapToOrigin: {
|
|
6336
|
-
type: import('vue').PropType<boolean>;
|
|
6337
|
-
};
|
|
6338
|
-
transition: {
|
|
6339
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
6340
|
-
layout?: import('../..').$Transition;
|
|
6341
|
-
}>;
|
|
6342
|
-
};
|
|
6343
|
-
onDragTransitionEnd: {
|
|
6344
|
-
type: import('vue').PropType<() => void>;
|
|
6345
|
-
};
|
|
6346
|
-
onDragEnd: {
|
|
6347
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
6348
|
-
};
|
|
6349
|
-
dragPropagation: {
|
|
6350
|
-
type: import('vue').PropType<boolean>;
|
|
6351
|
-
};
|
|
6352
6308
|
initial: {
|
|
6353
6309
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
6354
6310
|
};
|
|
@@ -6373,56 +6329,32 @@ export declare const Reorder: {
|
|
|
6373
6329
|
exit: {
|
|
6374
6330
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
6375
6331
|
};
|
|
6376
|
-
|
|
6377
|
-
type: import('vue').PropType<
|
|
6378
|
-
|
|
6379
|
-
|
|
6380
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
6381
|
-
};
|
|
6382
|
-
dragElastic: {
|
|
6383
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
6332
|
+
transition: {
|
|
6333
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
6334
|
+
layout?: import('../..').$Transition;
|
|
6335
|
+
}>;
|
|
6384
6336
|
};
|
|
6385
|
-
|
|
6386
|
-
type: import('vue').PropType<
|
|
6337
|
+
values: {
|
|
6338
|
+
type: import('vue').PropType<unknown[]>;
|
|
6339
|
+
required: true;
|
|
6387
6340
|
};
|
|
6388
6341
|
style: {
|
|
6389
6342
|
type: import('vue').PropType<Partial<{
|
|
6390
6343
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6391
6344
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6392
6345
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6393
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6394
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6395
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6396
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6397
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6398
6346
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6399
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6400
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6401
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6402
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6403
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6404
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6405
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6406
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6407
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6408
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6409
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6410
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6411
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6412
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6413
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6414
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6415
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6416
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6417
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6418
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6419
6347
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6348
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6349
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6350
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6420
6351
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6421
6352
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6422
6353
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6423
6354
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6424
6355
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6425
6356
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6357
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6426
6358
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6427
6359
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6428
6360
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6513,6 +6445,7 @@ export declare const Reorder: {
|
|
|
6513
6445
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6514
6446
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6515
6447
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6448
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6516
6449
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6517
6450
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6518
6451
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6520,6 +6453,7 @@ export declare const Reorder: {
|
|
|
6520
6453
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6521
6454
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6522
6455
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6456
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6523
6457
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6524
6458
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6525
6459
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6560,8 +6494,10 @@ export declare const Reorder: {
|
|
|
6560
6494
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6561
6495
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6562
6496
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6497
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6563
6498
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6564
6499
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6500
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6565
6501
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6566
6502
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6567
6503
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6632,6 +6568,8 @@ export declare const Reorder: {
|
|
|
6632
6568
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6633
6569
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6634
6570
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6571
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6572
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6635
6573
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6636
6574
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6637
6575
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6678,6 +6616,7 @@ export declare const Reorder: {
|
|
|
6678
6616
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6679
6617
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6680
6618
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6619
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6681
6620
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6682
6621
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6683
6622
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6713,23 +6652,30 @@ export declare const Reorder: {
|
|
|
6713
6652
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6714
6653
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6715
6654
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6655
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6716
6656
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6717
6657
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6718
6658
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6719
6659
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6720
6660
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6661
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6721
6662
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6722
6663
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6723
6664
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6724
6665
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6725
6666
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6667
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6726
6668
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6727
6669
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6728
6670
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6671
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6672
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6673
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6729
6674
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6730
6675
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6731
6676
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6732
6677
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6678
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6733
6679
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6734
6680
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6735
6681
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6800,7 +6746,9 @@ export declare const Reorder: {
|
|
|
6800
6746
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6801
6747
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6802
6748
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6749
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6803
6750
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6751
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6804
6752
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6805
6753
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6806
6754
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6809,6 +6757,7 @@ export declare const Reorder: {
|
|
|
6809
6757
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6810
6758
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6811
6759
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6760
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6812
6761
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6813
6762
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6814
6763
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6888,6 +6837,7 @@ export declare const Reorder: {
|
|
|
6888
6837
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6889
6838
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6890
6839
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6840
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6891
6841
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6892
6842
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6893
6843
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6942,6 +6892,7 @@ export declare const Reorder: {
|
|
|
6942
6892
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6943
6893
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6944
6894
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6895
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6945
6896
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6946
6897
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6947
6898
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -6949,6 +6900,7 @@ export declare const Reorder: {
|
|
|
6949
6900
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6950
6901
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6951
6902
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6903
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6952
6904
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6953
6905
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
6954
6906
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7047,6 +6999,7 @@ export declare const Reorder: {
|
|
|
7047
6999
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7048
7000
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7049
7001
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7002
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7050
7003
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7051
7004
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7052
7005
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7089,6 +7042,67 @@ export declare const Reorder: {
|
|
|
7089
7042
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7090
7043
|
}>>;
|
|
7091
7044
|
};
|
|
7045
|
+
inView: {
|
|
7046
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7047
|
+
};
|
|
7048
|
+
hover: {
|
|
7049
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7050
|
+
};
|
|
7051
|
+
press: {
|
|
7052
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7053
|
+
};
|
|
7054
|
+
variants: {
|
|
7055
|
+
type: import('vue').PropType<{
|
|
7056
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
7057
|
+
}>;
|
|
7058
|
+
};
|
|
7059
|
+
layout: {
|
|
7060
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
7061
|
+
};
|
|
7062
|
+
layoutId: {
|
|
7063
|
+
type: import('vue').PropType<string>;
|
|
7064
|
+
};
|
|
7065
|
+
layoutScroll: {
|
|
7066
|
+
type: import('vue').PropType<boolean>;
|
|
7067
|
+
};
|
|
7068
|
+
layoutRoot: {
|
|
7069
|
+
type: import('vue').PropType<boolean>;
|
|
7070
|
+
};
|
|
7071
|
+
'data-framer-portal-id': {
|
|
7072
|
+
type: import('vue').PropType<string>;
|
|
7073
|
+
};
|
|
7074
|
+
crossfade: {
|
|
7075
|
+
type: import('vue').PropType<boolean>;
|
|
7076
|
+
};
|
|
7077
|
+
inViewOptions: {
|
|
7078
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
7079
|
+
once?: boolean;
|
|
7080
|
+
}>;
|
|
7081
|
+
};
|
|
7082
|
+
dragSnapToOrigin: {
|
|
7083
|
+
type: import('vue').PropType<boolean>;
|
|
7084
|
+
};
|
|
7085
|
+
onDragTransitionEnd: {
|
|
7086
|
+
type: import('vue').PropType<() => void>;
|
|
7087
|
+
};
|
|
7088
|
+
onDragEnd: {
|
|
7089
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
7090
|
+
};
|
|
7091
|
+
dragPropagation: {
|
|
7092
|
+
type: import('vue').PropType<boolean>;
|
|
7093
|
+
};
|
|
7094
|
+
drag: {
|
|
7095
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
7096
|
+
};
|
|
7097
|
+
dragConstraints: {
|
|
7098
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
7099
|
+
};
|
|
7100
|
+
dragElastic: {
|
|
7101
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
7102
|
+
};
|
|
7103
|
+
onMeasureDragConstraints: {
|
|
7104
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
7105
|
+
};
|
|
7092
7106
|
focus: {
|
|
7093
7107
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7094
7108
|
};
|
|
@@ -7126,11 +7140,6 @@ export declare const Reorder: {
|
|
|
7126
7140
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
7127
7141
|
default: string;
|
|
7128
7142
|
};
|
|
7129
|
-
variants: {
|
|
7130
|
-
type: import('vue').PropType<{
|
|
7131
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
7132
|
-
}>;
|
|
7133
|
-
};
|
|
7134
7143
|
layoutGroup: {
|
|
7135
7144
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
7136
7145
|
};
|
|
@@ -7158,9 +7167,6 @@ export declare const Reorder: {
|
|
|
7158
7167
|
globalPressTarget: {
|
|
7159
7168
|
type: import('vue').PropType<boolean>;
|
|
7160
7169
|
};
|
|
7161
|
-
press: {
|
|
7162
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7163
|
-
};
|
|
7164
7170
|
onPressStart: {
|
|
7165
7171
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
7166
7172
|
};
|
|
@@ -7170,18 +7176,12 @@ export declare const Reorder: {
|
|
|
7170
7176
|
onPressCancel: {
|
|
7171
7177
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
7172
7178
|
};
|
|
7173
|
-
hover: {
|
|
7174
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7175
|
-
};
|
|
7176
7179
|
onHoverStart: {
|
|
7177
7180
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
7178
7181
|
};
|
|
7179
7182
|
onHoverEnd: {
|
|
7180
7183
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
7181
7184
|
};
|
|
7182
|
-
inView: {
|
|
7183
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7184
|
-
};
|
|
7185
7185
|
onViewportEnter: {
|
|
7186
7186
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
7187
7187
|
};
|
|
@@ -7224,50 +7224,6 @@ export declare const Reorder: {
|
|
|
7224
7224
|
__isTeleport?: never;
|
|
7225
7225
|
__isSuspense?: never;
|
|
7226
7226
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
7227
|
-
layout: {
|
|
7228
|
-
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
7229
|
-
};
|
|
7230
|
-
layoutId: {
|
|
7231
|
-
type: import('vue').PropType<string>;
|
|
7232
|
-
};
|
|
7233
|
-
layoutScroll: {
|
|
7234
|
-
type: import('vue').PropType<boolean>;
|
|
7235
|
-
};
|
|
7236
|
-
layoutRoot: {
|
|
7237
|
-
type: import('vue').PropType<boolean>;
|
|
7238
|
-
};
|
|
7239
|
-
'data-framer-portal-id': {
|
|
7240
|
-
type: import('vue').PropType<string>;
|
|
7241
|
-
};
|
|
7242
|
-
crossfade: {
|
|
7243
|
-
type: import('vue').PropType<boolean>;
|
|
7244
|
-
};
|
|
7245
|
-
inViewOptions: {
|
|
7246
|
-
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
7247
|
-
once?: boolean;
|
|
7248
|
-
}>;
|
|
7249
|
-
};
|
|
7250
|
-
values: {
|
|
7251
|
-
type: import('vue').PropType<unknown[]>;
|
|
7252
|
-
required: true;
|
|
7253
|
-
};
|
|
7254
|
-
dragSnapToOrigin: {
|
|
7255
|
-
type: import('vue').PropType<boolean>;
|
|
7256
|
-
};
|
|
7257
|
-
transition: {
|
|
7258
|
-
type: import('vue').PropType<import('../..').$Transition & {
|
|
7259
|
-
layout?: import('../..').$Transition;
|
|
7260
|
-
}>;
|
|
7261
|
-
};
|
|
7262
|
-
onDragTransitionEnd: {
|
|
7263
|
-
type: import('vue').PropType<() => void>;
|
|
7264
|
-
};
|
|
7265
|
-
onDragEnd: {
|
|
7266
|
-
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
7267
|
-
};
|
|
7268
|
-
dragPropagation: {
|
|
7269
|
-
type: import('vue').PropType<boolean>;
|
|
7270
|
-
};
|
|
7271
7227
|
initial: {
|
|
7272
7228
|
type: import('vue').PropType<boolean | import('../..').VariantLabels | import('../..').Variant>;
|
|
7273
7229
|
};
|
|
@@ -7292,56 +7248,32 @@ export declare const Reorder: {
|
|
|
7292
7248
|
exit: {
|
|
7293
7249
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7294
7250
|
};
|
|
7295
|
-
|
|
7296
|
-
type: import('vue').PropType<
|
|
7297
|
-
|
|
7298
|
-
|
|
7299
|
-
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
7300
|
-
};
|
|
7301
|
-
dragElastic: {
|
|
7302
|
-
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
7251
|
+
transition: {
|
|
7252
|
+
type: import('vue').PropType<import('../..').$Transition & {
|
|
7253
|
+
layout?: import('../..').$Transition;
|
|
7254
|
+
}>;
|
|
7303
7255
|
};
|
|
7304
|
-
|
|
7305
|
-
type: import('vue').PropType<
|
|
7256
|
+
values: {
|
|
7257
|
+
type: import('vue').PropType<unknown[]>;
|
|
7258
|
+
required: true;
|
|
7306
7259
|
};
|
|
7307
7260
|
style: {
|
|
7308
7261
|
type: import('vue').PropType<Partial<{
|
|
7309
7262
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7310
7263
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7311
7264
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7312
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7313
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7314
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7315
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7316
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7317
7265
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7318
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7319
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7320
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7321
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7322
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7323
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7324
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7325
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7326
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7327
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7328
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7329
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7330
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7331
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7332
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7333
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7334
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7335
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7336
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7337
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7338
7266
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7267
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7268
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7269
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7339
7270
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7340
7271
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7341
7272
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7342
7273
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7343
7274
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7344
7275
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7276
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7345
7277
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7346
7278
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7347
7279
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7432,6 +7364,7 @@ export declare const Reorder: {
|
|
|
7432
7364
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7433
7365
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7434
7366
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7367
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7435
7368
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7436
7369
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7437
7370
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7439,6 +7372,7 @@ export declare const Reorder: {
|
|
|
7439
7372
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7440
7373
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7441
7374
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7375
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7442
7376
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7443
7377
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7444
7378
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7479,8 +7413,10 @@ export declare const Reorder: {
|
|
|
7479
7413
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7480
7414
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7481
7415
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7416
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7482
7417
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7483
7418
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7419
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7484
7420
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7485
7421
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7486
7422
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7551,6 +7487,8 @@ export declare const Reorder: {
|
|
|
7551
7487
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7552
7488
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7553
7489
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7490
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7491
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7554
7492
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7555
7493
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7556
7494
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7597,6 +7535,7 @@ export declare const Reorder: {
|
|
|
7597
7535
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7598
7536
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7599
7537
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7538
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7600
7539
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7601
7540
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7602
7541
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7632,23 +7571,30 @@ export declare const Reorder: {
|
|
|
7632
7571
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7633
7572
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7634
7573
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7574
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7635
7575
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7636
7576
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7637
7577
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7638
7578
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7639
7579
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7580
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7640
7581
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7641
7582
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7642
7583
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7643
7584
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7644
7585
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7586
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7645
7587
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7646
7588
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7647
7589
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7590
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7591
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7592
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7648
7593
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7649
7594
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7650
7595
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7651
7596
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7597
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7652
7598
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7653
7599
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7654
7600
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7719,7 +7665,9 @@ export declare const Reorder: {
|
|
|
7719
7665
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7720
7666
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7721
7667
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7668
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7722
7669
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7670
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7723
7671
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7724
7672
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7725
7673
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7728,6 +7676,7 @@ export declare const Reorder: {
|
|
|
7728
7676
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7729
7677
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7730
7678
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7679
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7731
7680
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7732
7681
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7733
7682
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7807,6 +7756,7 @@ export declare const Reorder: {
|
|
|
7807
7756
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7808
7757
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7809
7758
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7759
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7810
7760
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7811
7761
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7812
7762
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7861,6 +7811,7 @@ export declare const Reorder: {
|
|
|
7861
7811
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7862
7812
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7863
7813
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7814
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7864
7815
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7865
7816
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7866
7817
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7868,6 +7819,7 @@ export declare const Reorder: {
|
|
|
7868
7819
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7869
7820
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7870
7821
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7822
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7871
7823
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7872
7824
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7873
7825
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -7966,6 +7918,7 @@ export declare const Reorder: {
|
|
|
7966
7918
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7967
7919
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7968
7920
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7921
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7969
7922
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7970
7923
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
7971
7924
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8008,6 +7961,67 @@ export declare const Reorder: {
|
|
|
8008
7961
|
transformPerspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8009
7962
|
}>>;
|
|
8010
7963
|
};
|
|
7964
|
+
inView: {
|
|
7965
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7966
|
+
};
|
|
7967
|
+
hover: {
|
|
7968
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7969
|
+
};
|
|
7970
|
+
press: {
|
|
7971
|
+
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
7972
|
+
};
|
|
7973
|
+
variants: {
|
|
7974
|
+
type: import('vue').PropType<{
|
|
7975
|
+
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
7976
|
+
}>;
|
|
7977
|
+
};
|
|
7978
|
+
layout: {
|
|
7979
|
+
type: import('vue').PropType<boolean | "position" | "size" | "preserve-aspect">;
|
|
7980
|
+
};
|
|
7981
|
+
layoutId: {
|
|
7982
|
+
type: import('vue').PropType<string>;
|
|
7983
|
+
};
|
|
7984
|
+
layoutScroll: {
|
|
7985
|
+
type: import('vue').PropType<boolean>;
|
|
7986
|
+
};
|
|
7987
|
+
layoutRoot: {
|
|
7988
|
+
type: import('vue').PropType<boolean>;
|
|
7989
|
+
};
|
|
7990
|
+
'data-framer-portal-id': {
|
|
7991
|
+
type: import('vue').PropType<string>;
|
|
7992
|
+
};
|
|
7993
|
+
crossfade: {
|
|
7994
|
+
type: import('vue').PropType<boolean>;
|
|
7995
|
+
};
|
|
7996
|
+
inViewOptions: {
|
|
7997
|
+
type: import('vue').PropType<import('../../features/gestures/in-view/types').InViewOptions & {
|
|
7998
|
+
once?: boolean;
|
|
7999
|
+
}>;
|
|
8000
|
+
};
|
|
8001
|
+
dragSnapToOrigin: {
|
|
8002
|
+
type: import('vue').PropType<boolean>;
|
|
8003
|
+
};
|
|
8004
|
+
onDragTransitionEnd: {
|
|
8005
|
+
type: import('vue').PropType<() => void>;
|
|
8006
|
+
};
|
|
8007
|
+
onDragEnd: {
|
|
8008
|
+
type: import('vue').PropType<(event: PointerEvent, info: import('framer-motion').PanInfo) => void>;
|
|
8009
|
+
};
|
|
8010
|
+
dragPropagation: {
|
|
8011
|
+
type: import('vue').PropType<boolean>;
|
|
8012
|
+
};
|
|
8013
|
+
drag: {
|
|
8014
|
+
type: import('vue').PropType<boolean | "x" | "y">;
|
|
8015
|
+
};
|
|
8016
|
+
dragConstraints: {
|
|
8017
|
+
type: import('vue').PropType<false | HTMLElement | Partial<import('framer-motion').BoundingBox>>;
|
|
8018
|
+
};
|
|
8019
|
+
dragElastic: {
|
|
8020
|
+
type: import('vue').PropType<import('framer-motion').DragElastic>;
|
|
8021
|
+
};
|
|
8022
|
+
onMeasureDragConstraints: {
|
|
8023
|
+
type: import('vue').PropType<(constraints: import('framer-motion').BoundingBox) => import('framer-motion').BoundingBox | void>;
|
|
8024
|
+
};
|
|
8011
8025
|
focus: {
|
|
8012
8026
|
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
8013
8027
|
};
|
|
@@ -8045,11 +8059,6 @@ export declare const Reorder: {
|
|
|
8045
8059
|
type: import('vue').PropType<keyof import('vue').IntrinsicElementAttributes>;
|
|
8046
8060
|
default: string;
|
|
8047
8061
|
};
|
|
8048
|
-
variants: {
|
|
8049
|
-
type: import('vue').PropType<{
|
|
8050
|
-
[k: string]: import('../..').Variant | ((custom: unknown) => import('../..').Variant);
|
|
8051
|
-
}>;
|
|
8052
|
-
};
|
|
8053
8062
|
layoutGroup: {
|
|
8054
8063
|
type: import('vue').PropType<import('../context').LayoutGroupState>;
|
|
8055
8064
|
};
|
|
@@ -8077,9 +8086,6 @@ export declare const Reorder: {
|
|
|
8077
8086
|
globalPressTarget: {
|
|
8078
8087
|
type: import('vue').PropType<boolean>;
|
|
8079
8088
|
};
|
|
8080
|
-
press: {
|
|
8081
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
8082
|
-
};
|
|
8083
8089
|
onPressStart: {
|
|
8084
8090
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
8085
8091
|
};
|
|
@@ -8089,18 +8095,12 @@ export declare const Reorder: {
|
|
|
8089
8095
|
onPressCancel: {
|
|
8090
8096
|
type: import('vue').PropType<import('../../features/gestures/press/types').PressEvent>;
|
|
8091
8097
|
};
|
|
8092
|
-
hover: {
|
|
8093
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
8094
|
-
};
|
|
8095
8098
|
onHoverStart: {
|
|
8096
8099
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
8097
8100
|
};
|
|
8098
8101
|
onHoverEnd: {
|
|
8099
8102
|
type: import('vue').PropType<import('../../features/gestures/hover/types').HoverEvent>;
|
|
8100
8103
|
};
|
|
8101
|
-
inView: {
|
|
8102
|
-
type: import('vue').PropType<import('../..').VariantLabels | import('../..').Variant>;
|
|
8103
|
-
};
|
|
8104
8104
|
onViewportEnter: {
|
|
8105
8105
|
type: import('vue').PropType<(entry: IntersectionObserverEntry | null) => void>;
|
|
8106
8106
|
};
|
|
@@ -8177,39 +8177,18 @@ export declare const Reorder: {
|
|
|
8177
8177
|
[x: number]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8178
8178
|
[x: `--${string}`]: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8179
8179
|
string?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8180
|
-
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8181
|
-
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8182
|
-
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8183
|
-
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8184
|
-
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8185
8180
|
[Symbol.iterator]?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8186
|
-
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8187
|
-
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8188
|
-
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8189
|
-
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8190
|
-
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8191
|
-
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8192
|
-
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8193
|
-
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8194
|
-
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8195
|
-
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8196
|
-
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8197
|
-
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8198
|
-
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8199
|
-
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8200
|
-
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8201
|
-
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8202
|
-
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8203
|
-
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8204
|
-
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8205
|
-
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8206
8181
|
direction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8182
|
+
transition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8183
|
+
x?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8184
|
+
y?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8207
8185
|
z?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8208
8186
|
accentColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8209
8187
|
alignContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8210
8188
|
alignItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8211
8189
|
alignSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8212
8190
|
alignmentBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8191
|
+
all?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8213
8192
|
animation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8214
8193
|
animationComposition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8215
8194
|
animationDelay?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8300,6 +8279,7 @@ export declare const Reorder: {
|
|
|
8300
8279
|
borderTopStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8301
8280
|
borderTopWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8302
8281
|
borderWidth?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8282
|
+
bottom?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8303
8283
|
boxShadow?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8304
8284
|
boxSizing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8305
8285
|
breakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8307,6 +8287,7 @@ export declare const Reorder: {
|
|
|
8307
8287
|
breakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8308
8288
|
captionSide?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8309
8289
|
caretColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8290
|
+
clear?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8310
8291
|
clip?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8311
8292
|
clipPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8312
8293
|
clipRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8347,8 +8328,10 @@ export declare const Reorder: {
|
|
|
8347
8328
|
display?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8348
8329
|
dominantBaseline?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8349
8330
|
emptyCells?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8331
|
+
fill?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8350
8332
|
fillOpacity?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8351
8333
|
fillRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8334
|
+
filter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8352
8335
|
flex?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8353
8336
|
flexBasis?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8354
8337
|
flexDirection?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8419,6 +8402,8 @@ export declare const Reorder: {
|
|
|
8419
8402
|
justifyContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8420
8403
|
justifyItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8421
8404
|
justifySelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8405
|
+
left?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8406
|
+
readonly length?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8422
8407
|
letterSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8423
8408
|
lightingColor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8424
8409
|
lineBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8465,6 +8450,7 @@ export declare const Reorder: {
|
|
|
8465
8450
|
mixBlendMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8466
8451
|
objectFit?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8467
8452
|
objectPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8453
|
+
offset?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8468
8454
|
offsetAnchor?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8469
8455
|
offsetDistance?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8470
8456
|
offsetPath?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8500,23 +8486,30 @@ export declare const Reorder: {
|
|
|
8500
8486
|
paddingLeft?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8501
8487
|
paddingRight?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8502
8488
|
paddingTop?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8489
|
+
page?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8503
8490
|
pageBreakAfter?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8504
8491
|
pageBreakBefore?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8505
8492
|
pageBreakInside?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8506
8493
|
paintOrder?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8507
8494
|
readonly parentRule?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8495
|
+
perspective?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8508
8496
|
perspectiveOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8509
8497
|
placeContent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8510
8498
|
placeItems?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8511
8499
|
placeSelf?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8512
8500
|
pointerEvents?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8501
|
+
position?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8513
8502
|
printColorAdjust?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8514
8503
|
quotes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8515
8504
|
r?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8505
|
+
resize?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8506
|
+
right?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8507
|
+
rotate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8516
8508
|
rowGap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8517
8509
|
rubyPosition?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8518
8510
|
rx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8519
8511
|
ry?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8512
|
+
scale?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8520
8513
|
scrollBehavior?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8521
8514
|
scrollMargin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8522
8515
|
scrollMarginBlock?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8587,7 +8580,9 @@ export declare const Reorder: {
|
|
|
8587
8580
|
textWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8588
8581
|
textWrapMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8589
8582
|
textWrapStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8583
|
+
top?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8590
8584
|
touchAction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8585
|
+
transform?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8591
8586
|
transformBox?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8592
8587
|
transformOrigin?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8593
8588
|
transformStyle?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8596,6 +8591,7 @@ export declare const Reorder: {
|
|
|
8596
8591
|
transitionDuration?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8597
8592
|
transitionProperty?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8598
8593
|
transitionTimingFunction?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8594
|
+
translate?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8599
8595
|
unicodeBidi?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8600
8596
|
userSelect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8601
8597
|
vectorEffect?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8675,6 +8671,7 @@ export declare const Reorder: {
|
|
|
8675
8671
|
whiteSpaceCollapse?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8676
8672
|
widows?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8677
8673
|
width?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8674
|
+
willChange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8678
8675
|
wordBreak?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8679
8676
|
wordSpacing?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8680
8677
|
wordWrap?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8729,6 +8726,7 @@ export declare const Reorder: {
|
|
|
8729
8726
|
edgeMode?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8730
8727
|
elevation?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8731
8728
|
enableBackground?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8729
|
+
end?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8732
8730
|
exponent?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8733
8731
|
externalResourcesRequired?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8734
8732
|
filterRes?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8736,6 +8734,7 @@ export declare const Reorder: {
|
|
|
8736
8734
|
focusable?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8737
8735
|
format?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8738
8736
|
fr?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8737
|
+
from?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8739
8738
|
fx?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8740
8739
|
fy?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8741
8740
|
g1?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
@@ -8834,6 +8833,7 @@ export declare const Reorder: {
|
|
|
8834
8833
|
unicodeRange?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8835
8834
|
unitsPerEm?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8836
8835
|
vAlphabetic?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8836
|
+
values?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8837
8837
|
version?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8838
8838
|
vertAdvY?: string | number | import('framer-motion/dom').MotionValue<any>;
|
|
8839
8839
|
vertOriginX?: string | number | import('framer-motion/dom').MotionValue<any>;
|