motion-plus-vue 1.5.0-beta.1 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/components/Carousel/Carousel.d.ts +5 -2
- package/dist/components/Carousel/CarouselView.d.ts +2 -2
- package/dist/components/Cursor/Cursor.d.ts +2 -2
- package/dist/components/Ticker/context.d.ts +174 -174
- package/dist/components/Typewriter/Typewriter.d.ts +1 -1
- package/dist/es/components/Ticker/Ticker.vue.mjs +1 -1
- package/dist/es/utils/flatten-slots.mjs +1 -1
- package/dist/size.animate-number.js +1 -0
- package/dist/size.carousel.js +1 -0
- package/dist/size.cursor.js +1 -0
- package/dist/size.ticker.js +1 -0
- package/dist/size.typewriter.js +1 -0
- package/package.json +29 -6
- package/dist/components/Ticker/DefaultTickerItem.d.ts +0 -14
- package/dist/components/Ticker/Ticker.d.ts +0 -106
- package/dist/components/Ticker/use-item-offset.d.ts +0 -1
|
@@ -15,11 +15,29 @@ export declare const useTickerItem: <T extends {
|
|
|
15
15
|
"style": Partial<{
|
|
16
16
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
17
17
|
string?: string | number | MotionValue<any> | undefined;
|
|
18
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
19
18
|
transition?: string | number | MotionValue<any> | undefined;
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
20
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
21
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
22
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
23
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
24
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
25
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
26
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
27
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
28
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
29
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
30
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
31
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
32
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
33
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
34
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
35
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
36
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
37
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
38
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
39
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
40
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
23
41
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
24
42
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
25
43
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -204,6 +222,7 @@ export declare const useTickerItem: <T extends {
|
|
|
204
222
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
205
223
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
206
224
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
225
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
207
226
|
grid?: string | number | MotionValue<any> | undefined;
|
|
208
227
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
209
228
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -287,6 +306,7 @@ export declare const useTickerItem: <T extends {
|
|
|
287
306
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
288
307
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
289
308
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
309
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
290
310
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
291
311
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
292
312
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -300,6 +320,7 @@ export declare const useTickerItem: <T extends {
|
|
|
300
320
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
301
321
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
302
322
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
323
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
303
324
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
304
325
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
305
326
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -321,11 +342,11 @@ export declare const useTickerItem: <T extends {
|
|
|
321
342
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
322
343
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
323
344
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
345
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
324
346
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
325
347
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
326
348
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
327
349
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
328
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
329
350
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
330
351
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
331
352
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -337,13 +358,11 @@ export declare const useTickerItem: <T extends {
|
|
|
337
358
|
r?: string | number | MotionValue<any> | undefined;
|
|
338
359
|
resize?: string | number | MotionValue<any> | undefined;
|
|
339
360
|
right?: string | number | MotionValue<any> | undefined;
|
|
340
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
341
361
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
342
362
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
343
363
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
344
364
|
rx?: string | number | MotionValue<any> | undefined;
|
|
345
365
|
ry?: string | number | MotionValue<any> | undefined;
|
|
346
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
347
366
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
348
367
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
349
368
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -511,29 +530,8 @@ export declare const useTickerItem: <T extends {
|
|
|
511
530
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
512
531
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
513
532
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
514
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
515
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
516
533
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
517
534
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
518
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
519
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
520
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
521
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
522
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
523
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
524
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
525
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
526
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
527
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
528
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
529
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
530
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
531
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
532
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
533
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
534
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
535
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
536
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
537
535
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
538
536
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
539
537
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -625,6 +623,7 @@ export declare const useTickerItem: <T extends {
|
|
|
625
623
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
626
624
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
627
625
|
path?: string | number | MotionValue<any> | undefined;
|
|
626
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
628
627
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
629
628
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
630
629
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -705,7 +704,8 @@ export declare const useTickerItem: <T extends {
|
|
|
705
704
|
y2?: string | number | MotionValue<any> | undefined;
|
|
706
705
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
707
706
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
708
|
-
|
|
707
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
708
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
709
709
|
}>;
|
|
710
710
|
"aria-hidden"?: boolean | undefined;
|
|
711
711
|
"aria-posinset"?: number | undefined;
|
|
@@ -725,11 +725,29 @@ export declare const useTickerItem: <T extends {
|
|
|
725
725
|
"style": Partial<{
|
|
726
726
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
727
727
|
string?: string | number | MotionValue<any> | undefined;
|
|
728
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
729
728
|
transition?: string | number | MotionValue<any> | undefined;
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
729
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
730
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
731
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
732
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
733
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
734
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
735
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
736
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
737
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
738
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
739
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
740
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
741
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
742
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
743
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
744
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
745
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
746
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
747
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
748
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
749
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
750
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
733
751
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
734
752
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
735
753
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -914,6 +932,7 @@ export declare const useTickerItem: <T extends {
|
|
|
914
932
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
915
933
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
916
934
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
935
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
917
936
|
grid?: string | number | MotionValue<any> | undefined;
|
|
918
937
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
919
938
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -997,6 +1016,7 @@ export declare const useTickerItem: <T extends {
|
|
|
997
1016
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
998
1017
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
999
1018
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
1019
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
1000
1020
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
1001
1021
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
1002
1022
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -1010,6 +1030,7 @@ export declare const useTickerItem: <T extends {
|
|
|
1010
1030
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
1011
1031
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
1012
1032
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
1033
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
1013
1034
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
1014
1035
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
1015
1036
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -1031,11 +1052,11 @@ export declare const useTickerItem: <T extends {
|
|
|
1031
1052
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
1032
1053
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
1033
1054
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
1055
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
1034
1056
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
1035
1057
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
1036
1058
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
1037
1059
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
1038
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
1039
1060
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
1040
1061
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
1041
1062
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -1047,13 +1068,11 @@ export declare const useTickerItem: <T extends {
|
|
|
1047
1068
|
r?: string | number | MotionValue<any> | undefined;
|
|
1048
1069
|
resize?: string | number | MotionValue<any> | undefined;
|
|
1049
1070
|
right?: string | number | MotionValue<any> | undefined;
|
|
1050
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
1051
1071
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
1052
1072
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
1053
1073
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
1054
1074
|
rx?: string | number | MotionValue<any> | undefined;
|
|
1055
1075
|
ry?: string | number | MotionValue<any> | undefined;
|
|
1056
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
1057
1076
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
1058
1077
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
1059
1078
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -1221,29 +1240,8 @@ export declare const useTickerItem: <T extends {
|
|
|
1221
1240
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
1222
1241
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
1223
1242
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
1224
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
1225
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
1226
1243
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
1227
1244
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
1228
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
1229
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
1230
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
1231
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
1232
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
1233
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
1234
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
1235
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
1236
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
1237
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
1238
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
1239
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
1240
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
1241
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
1242
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
1243
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
1244
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
1245
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
1246
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
1247
1245
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
1248
1246
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
1249
1247
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -1335,6 +1333,7 @@ export declare const useTickerItem: <T extends {
|
|
|
1335
1333
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
1336
1334
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
1337
1335
|
path?: string | number | MotionValue<any> | undefined;
|
|
1336
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
1338
1337
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
1339
1338
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
1340
1339
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -1415,7 +1414,8 @@ export declare const useTickerItem: <T extends {
|
|
|
1415
1414
|
y2?: string | number | MotionValue<any> | undefined;
|
|
1416
1415
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
1417
1416
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
1418
|
-
|
|
1417
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
1418
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
1419
1419
|
}>;
|
|
1420
1420
|
"aria-hidden"?: boolean | undefined;
|
|
1421
1421
|
"aria-posinset"?: number | undefined;
|
|
@@ -1435,11 +1435,29 @@ export declare const useTickerItem: <T extends {
|
|
|
1435
1435
|
"style": Partial<{
|
|
1436
1436
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
1437
1437
|
string?: string | number | MotionValue<any> | undefined;
|
|
1438
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
1439
1438
|
transition?: string | number | MotionValue<any> | undefined;
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1439
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
1440
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
1441
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
1442
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
1443
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
1444
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
1445
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
1446
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
1447
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
1448
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
1449
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
1450
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
1451
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
1452
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
1453
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
1454
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
1455
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
1456
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
1457
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
1458
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
1459
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
1460
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
1443
1461
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
1444
1462
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
1445
1463
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -1624,6 +1642,7 @@ export declare const useTickerItem: <T extends {
|
|
|
1624
1642
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
1625
1643
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
1626
1644
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
1645
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
1627
1646
|
grid?: string | number | MotionValue<any> | undefined;
|
|
1628
1647
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
1629
1648
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -1707,6 +1726,7 @@ export declare const useTickerItem: <T extends {
|
|
|
1707
1726
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
1708
1727
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
1709
1728
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
1729
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
1710
1730
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
1711
1731
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
1712
1732
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -1720,6 +1740,7 @@ export declare const useTickerItem: <T extends {
|
|
|
1720
1740
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
1721
1741
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
1722
1742
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
1743
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
1723
1744
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
1724
1745
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
1725
1746
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -1741,11 +1762,11 @@ export declare const useTickerItem: <T extends {
|
|
|
1741
1762
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
1742
1763
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
1743
1764
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
1765
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
1744
1766
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
1745
1767
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
1746
1768
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
1747
1769
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
1748
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
1749
1770
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
1750
1771
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
1751
1772
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -1757,13 +1778,11 @@ export declare const useTickerItem: <T extends {
|
|
|
1757
1778
|
r?: string | number | MotionValue<any> | undefined;
|
|
1758
1779
|
resize?: string | number | MotionValue<any> | undefined;
|
|
1759
1780
|
right?: string | number | MotionValue<any> | undefined;
|
|
1760
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
1761
1781
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
1762
1782
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
1763
1783
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
1764
1784
|
rx?: string | number | MotionValue<any> | undefined;
|
|
1765
1785
|
ry?: string | number | MotionValue<any> | undefined;
|
|
1766
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
1767
1786
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
1768
1787
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
1769
1788
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -1931,29 +1950,8 @@ export declare const useTickerItem: <T extends {
|
|
|
1931
1950
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
1932
1951
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
1933
1952
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
1934
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
1935
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
1936
1953
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
1937
1954
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
1938
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
1939
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
1940
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
1941
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
1942
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
1943
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
1944
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
1945
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
1946
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
1947
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
1948
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
1949
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
1950
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
1951
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
1952
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
1953
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
1954
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
1955
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
1956
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
1957
1955
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
1958
1956
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
1959
1957
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -2045,6 +2043,7 @@ export declare const useTickerItem: <T extends {
|
|
|
2045
2043
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
2046
2044
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
2047
2045
|
path?: string | number | MotionValue<any> | undefined;
|
|
2046
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
2048
2047
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
2049
2048
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
2050
2049
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -2125,7 +2124,8 @@ export declare const useTickerItem: <T extends {
|
|
|
2125
2124
|
y2?: string | number | MotionValue<any> | undefined;
|
|
2126
2125
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
2127
2126
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
2128
|
-
|
|
2127
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
2128
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
2129
2129
|
}>;
|
|
2130
2130
|
"aria-hidden"?: boolean | undefined;
|
|
2131
2131
|
"aria-posinset"?: number | undefined;
|
|
@@ -2145,11 +2145,29 @@ export declare const useTickerItem: <T extends {
|
|
|
2145
2145
|
"style": Partial<{
|
|
2146
2146
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
2147
2147
|
string?: string | number | MotionValue<any> | undefined;
|
|
2148
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
2149
2148
|
transition?: string | number | MotionValue<any> | undefined;
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2149
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
2150
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
2151
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
2152
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
2153
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
2154
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
2155
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
2156
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
2157
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
2158
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
2159
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
2160
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
2161
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
2162
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
2163
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
2164
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
2165
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
2166
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
2167
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
2168
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
2169
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
2170
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
2153
2171
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
2154
2172
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
2155
2173
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -2334,6 +2352,7 @@ export declare const useTickerItem: <T extends {
|
|
|
2334
2352
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
2335
2353
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
2336
2354
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
2355
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
2337
2356
|
grid?: string | number | MotionValue<any> | undefined;
|
|
2338
2357
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
2339
2358
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -2417,6 +2436,7 @@ export declare const useTickerItem: <T extends {
|
|
|
2417
2436
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
2418
2437
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
2419
2438
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
2439
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
2420
2440
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
2421
2441
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
2422
2442
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -2430,6 +2450,7 @@ export declare const useTickerItem: <T extends {
|
|
|
2430
2450
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
2431
2451
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
2432
2452
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
2453
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
2433
2454
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
2434
2455
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
2435
2456
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -2451,11 +2472,11 @@ export declare const useTickerItem: <T extends {
|
|
|
2451
2472
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
2452
2473
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
2453
2474
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
2475
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
2454
2476
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
2455
2477
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
2456
2478
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
2457
2479
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
2458
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
2459
2480
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
2460
2481
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
2461
2482
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -2467,13 +2488,11 @@ export declare const useTickerItem: <T extends {
|
|
|
2467
2488
|
r?: string | number | MotionValue<any> | undefined;
|
|
2468
2489
|
resize?: string | number | MotionValue<any> | undefined;
|
|
2469
2490
|
right?: string | number | MotionValue<any> | undefined;
|
|
2470
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
2471
2491
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
2472
2492
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
2473
2493
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
2474
2494
|
rx?: string | number | MotionValue<any> | undefined;
|
|
2475
2495
|
ry?: string | number | MotionValue<any> | undefined;
|
|
2476
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
2477
2496
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
2478
2497
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
2479
2498
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -2641,29 +2660,8 @@ export declare const useTickerItem: <T extends {
|
|
|
2641
2660
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
2642
2661
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
2643
2662
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
2644
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
2645
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
2646
2663
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
2647
2664
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
2648
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
2649
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
2650
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
2651
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
2652
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
2653
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
2654
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
2655
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
2656
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
2657
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
2658
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
2659
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
2660
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
2661
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
2662
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
2663
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
2664
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
2665
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
2666
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
2667
2665
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
2668
2666
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
2669
2667
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -2755,6 +2753,7 @@ export declare const useTickerItem: <T extends {
|
|
|
2755
2753
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
2756
2754
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
2757
2755
|
path?: string | number | MotionValue<any> | undefined;
|
|
2756
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
2758
2757
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
2759
2758
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
2760
2759
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -2835,7 +2834,8 @@ export declare const useTickerItem: <T extends {
|
|
|
2835
2834
|
y2?: string | number | MotionValue<any> | undefined;
|
|
2836
2835
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
2837
2836
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
2838
|
-
|
|
2837
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
2838
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
2839
2839
|
}>;
|
|
2840
2840
|
"aria-hidden"?: boolean | undefined;
|
|
2841
2841
|
"aria-posinset"?: number | undefined;
|
|
@@ -2855,11 +2855,29 @@ export declare const useTickerItem: <T extends {
|
|
|
2855
2855
|
"style": Partial<{
|
|
2856
2856
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
2857
2857
|
string?: string | number | MotionValue<any> | undefined;
|
|
2858
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
2859
2858
|
transition?: string | number | MotionValue<any> | undefined;
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2859
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
2860
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
2861
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
2862
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
2863
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
2864
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
2865
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
2866
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
2867
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
2868
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
2869
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
2870
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
2871
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
2872
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
2873
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
2874
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
2875
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
2876
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
2877
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
2878
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
2879
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
2880
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
2863
2881
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
2864
2882
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
2865
2883
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -3044,6 +3062,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3044
3062
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
3045
3063
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
3046
3064
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
3065
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
3047
3066
|
grid?: string | number | MotionValue<any> | undefined;
|
|
3048
3067
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
3049
3068
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -3127,6 +3146,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3127
3146
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
3128
3147
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
3129
3148
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
3149
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
3130
3150
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
3131
3151
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
3132
3152
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -3140,6 +3160,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3140
3160
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
3141
3161
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
3142
3162
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
3163
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
3143
3164
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
3144
3165
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
3145
3166
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -3161,11 +3182,11 @@ export declare const useTickerItem: <T extends {
|
|
|
3161
3182
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
3162
3183
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
3163
3184
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
3185
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
3164
3186
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
3165
3187
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
3166
3188
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
3167
3189
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
3168
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
3169
3190
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
3170
3191
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
3171
3192
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -3177,13 +3198,11 @@ export declare const useTickerItem: <T extends {
|
|
|
3177
3198
|
r?: string | number | MotionValue<any> | undefined;
|
|
3178
3199
|
resize?: string | number | MotionValue<any> | undefined;
|
|
3179
3200
|
right?: string | number | MotionValue<any> | undefined;
|
|
3180
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
3181
3201
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
3182
3202
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
3183
3203
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
3184
3204
|
rx?: string | number | MotionValue<any> | undefined;
|
|
3185
3205
|
ry?: string | number | MotionValue<any> | undefined;
|
|
3186
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
3187
3206
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
3188
3207
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
3189
3208
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -3351,29 +3370,8 @@ export declare const useTickerItem: <T extends {
|
|
|
3351
3370
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
3352
3371
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
3353
3372
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
3354
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
3355
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
3356
3373
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
3357
3374
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
3358
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
3359
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
3360
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
3361
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
3362
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
3363
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
3364
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
3365
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
3366
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
3367
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
3368
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
3369
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
3370
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
3371
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
3372
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
3373
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
3374
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
3375
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
3376
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
3377
3375
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
3378
3376
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
3379
3377
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -3465,6 +3463,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3465
3463
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
3466
3464
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
3467
3465
|
path?: string | number | MotionValue<any> | undefined;
|
|
3466
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
3468
3467
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
3469
3468
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
3470
3469
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -3545,7 +3544,8 @@ export declare const useTickerItem: <T extends {
|
|
|
3545
3544
|
y2?: string | number | MotionValue<any> | undefined;
|
|
3546
3545
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
3547
3546
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
3548
|
-
|
|
3547
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
3548
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
3549
3549
|
}>;
|
|
3550
3550
|
"aria-hidden"?: boolean | undefined;
|
|
3551
3551
|
"aria-posinset"?: number | undefined;
|
|
@@ -3565,11 +3565,29 @@ export declare const useTickerItem: <T extends {
|
|
|
3565
3565
|
"style": Partial<{
|
|
3566
3566
|
[x: `--${string}`]: string | number | MotionValue<any> | undefined;
|
|
3567
3567
|
string?: string | number | MotionValue<any> | undefined;
|
|
3568
|
-
offset?: string | number | MotionValue<any> | undefined;
|
|
3569
3568
|
transition?: string | number | MotionValue<any> | undefined;
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3569
|
+
x?: string | number | MotionValue<any> | undefined;
|
|
3570
|
+
y?: string | number | MotionValue<any> | undefined;
|
|
3571
|
+
z?: string | number | MotionValue<any> | undefined;
|
|
3572
|
+
translateX?: string | number | MotionValue<any> | undefined;
|
|
3573
|
+
translateY?: string | number | MotionValue<any> | undefined;
|
|
3574
|
+
translateZ?: string | number | MotionValue<any> | undefined;
|
|
3575
|
+
rotate?: string | number | MotionValue<any> | undefined;
|
|
3576
|
+
rotateX?: string | number | MotionValue<any> | undefined;
|
|
3577
|
+
rotateY?: string | number | MotionValue<any> | undefined;
|
|
3578
|
+
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
3579
|
+
scale?: string | number | MotionValue<any> | undefined;
|
|
3580
|
+
scaleX?: string | number | MotionValue<any> | undefined;
|
|
3581
|
+
scaleY?: string | number | MotionValue<any> | undefined;
|
|
3582
|
+
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
3583
|
+
skew?: string | number | MotionValue<any> | undefined;
|
|
3584
|
+
skewX?: string | number | MotionValue<any> | undefined;
|
|
3585
|
+
skewY?: string | number | MotionValue<any> | undefined;
|
|
3586
|
+
originX?: string | number | MotionValue<any> | undefined;
|
|
3587
|
+
originY?: string | number | MotionValue<any> | undefined;
|
|
3588
|
+
originZ?: string | number | MotionValue<any> | undefined;
|
|
3589
|
+
perspective?: string | number | MotionValue<any> | undefined;
|
|
3590
|
+
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
3573
3591
|
accentColor?: string | number | MotionValue<any> | undefined;
|
|
3574
3592
|
alignContent?: string | number | MotionValue<any> | undefined;
|
|
3575
3593
|
alignItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -3754,6 +3772,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3754
3772
|
fontVariationSettings?: string | number | MotionValue<any> | undefined;
|
|
3755
3773
|
fontWeight?: string | number | MotionValue<any> | undefined;
|
|
3756
3774
|
forcedColorAdjust?: string | number | MotionValue<any> | undefined;
|
|
3775
|
+
gap?: string | number | MotionValue<any> | undefined;
|
|
3757
3776
|
grid?: string | number | MotionValue<any> | undefined;
|
|
3758
3777
|
gridArea?: string | number | MotionValue<any> | undefined;
|
|
3759
3778
|
gridAutoColumns?: string | number | MotionValue<any> | undefined;
|
|
@@ -3837,6 +3856,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3837
3856
|
mixBlendMode?: string | number | MotionValue<any> | undefined;
|
|
3838
3857
|
objectFit?: string | number | MotionValue<any> | undefined;
|
|
3839
3858
|
objectPosition?: string | number | MotionValue<any> | undefined;
|
|
3859
|
+
offset?: string | number | MotionValue<any> | undefined;
|
|
3840
3860
|
offsetAnchor?: string | number | MotionValue<any> | undefined;
|
|
3841
3861
|
offsetDistance?: string | number | MotionValue<any> | undefined;
|
|
3842
3862
|
offsetPath?: string | number | MotionValue<any> | undefined;
|
|
@@ -3850,6 +3870,7 @@ export declare const useTickerItem: <T extends {
|
|
|
3850
3870
|
outlineOffset?: string | number | MotionValue<any> | undefined;
|
|
3851
3871
|
outlineStyle?: string | number | MotionValue<any> | undefined;
|
|
3852
3872
|
outlineWidth?: string | number | MotionValue<any> | undefined;
|
|
3873
|
+
overflow?: string | number | MotionValue<any> | undefined;
|
|
3853
3874
|
overflowAnchor?: string | number | MotionValue<any> | undefined;
|
|
3854
3875
|
overflowClipMargin?: string | number | MotionValue<any> | undefined;
|
|
3855
3876
|
overflowWrap?: string | number | MotionValue<any> | undefined;
|
|
@@ -3871,11 +3892,11 @@ export declare const useTickerItem: <T extends {
|
|
|
3871
3892
|
paddingLeft?: string | number | MotionValue<any> | undefined;
|
|
3872
3893
|
paddingRight?: string | number | MotionValue<any> | undefined;
|
|
3873
3894
|
paddingTop?: string | number | MotionValue<any> | undefined;
|
|
3895
|
+
page?: string | number | MotionValue<any> | undefined;
|
|
3874
3896
|
pageBreakAfter?: string | number | MotionValue<any> | undefined;
|
|
3875
3897
|
pageBreakBefore?: string | number | MotionValue<any> | undefined;
|
|
3876
3898
|
pageBreakInside?: string | number | MotionValue<any> | undefined;
|
|
3877
3899
|
paintOrder?: string | number | MotionValue<any> | undefined;
|
|
3878
|
-
perspective?: string | number | MotionValue<any> | undefined;
|
|
3879
3900
|
perspectiveOrigin?: string | number | MotionValue<any> | undefined;
|
|
3880
3901
|
placeContent?: string | number | MotionValue<any> | undefined;
|
|
3881
3902
|
placeItems?: string | number | MotionValue<any> | undefined;
|
|
@@ -3887,13 +3908,11 @@ export declare const useTickerItem: <T extends {
|
|
|
3887
3908
|
r?: string | number | MotionValue<any> | undefined;
|
|
3888
3909
|
resize?: string | number | MotionValue<any> | undefined;
|
|
3889
3910
|
right?: string | number | MotionValue<any> | undefined;
|
|
3890
|
-
rotate?: string | number | MotionValue<any> | undefined;
|
|
3891
3911
|
rowGap?: string | number | MotionValue<any> | undefined;
|
|
3892
3912
|
rubyAlign?: string | number | MotionValue<any> | undefined;
|
|
3893
3913
|
rubyPosition?: string | number | MotionValue<any> | undefined;
|
|
3894
3914
|
rx?: string | number | MotionValue<any> | undefined;
|
|
3895
3915
|
ry?: string | number | MotionValue<any> | undefined;
|
|
3896
|
-
scale?: string | number | MotionValue<any> | undefined;
|
|
3897
3916
|
scrollBehavior?: string | number | MotionValue<any> | undefined;
|
|
3898
3917
|
scrollMargin?: string | number | MotionValue<any> | undefined;
|
|
3899
3918
|
scrollMarginBlock?: string | number | MotionValue<any> | undefined;
|
|
@@ -4061,29 +4080,8 @@ export declare const useTickerItem: <T extends {
|
|
|
4061
4080
|
wordSpacing?: string | number | MotionValue<any> | undefined;
|
|
4062
4081
|
wordWrap?: string | number | MotionValue<any> | undefined;
|
|
4063
4082
|
writingMode?: string | number | MotionValue<any> | undefined;
|
|
4064
|
-
x?: string | number | MotionValue<any> | undefined;
|
|
4065
|
-
y?: string | number | MotionValue<any> | undefined;
|
|
4066
4083
|
zIndex?: string | number | MotionValue<any> | undefined;
|
|
4067
4084
|
zoom?: string | number | MotionValue<any> | undefined;
|
|
4068
|
-
z?: string | number | MotionValue<any> | undefined;
|
|
4069
|
-
originX?: string | number | MotionValue<any> | undefined;
|
|
4070
|
-
originY?: string | number | MotionValue<any> | undefined;
|
|
4071
|
-
originZ?: string | number | MotionValue<any> | undefined;
|
|
4072
|
-
translateX?: string | number | MotionValue<any> | undefined;
|
|
4073
|
-
translateY?: string | number | MotionValue<any> | undefined;
|
|
4074
|
-
translateZ?: string | number | MotionValue<any> | undefined;
|
|
4075
|
-
rotateX?: string | number | MotionValue<any> | undefined;
|
|
4076
|
-
rotateY?: string | number | MotionValue<any> | undefined;
|
|
4077
|
-
rotateZ?: string | number | MotionValue<any> | undefined;
|
|
4078
|
-
scaleX?: string | number | MotionValue<any> | undefined;
|
|
4079
|
-
scaleY?: string | number | MotionValue<any> | undefined;
|
|
4080
|
-
scaleZ?: string | number | MotionValue<any> | undefined;
|
|
4081
|
-
skewX?: string | number | MotionValue<any> | undefined;
|
|
4082
|
-
skewY?: string | number | MotionValue<any> | undefined;
|
|
4083
|
-
transformPerspective?: string | number | MotionValue<any> | undefined;
|
|
4084
|
-
pathLength?: string | number | MotionValue<any> | undefined;
|
|
4085
|
-
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
4086
|
-
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
4087
4085
|
accentHeight?: string | number | MotionValue<any> | undefined;
|
|
4088
4086
|
accumulate?: string | number | MotionValue<any> | undefined;
|
|
4089
4087
|
additive?: string | number | MotionValue<any> | undefined;
|
|
@@ -4175,6 +4173,7 @@ export declare const useTickerItem: <T extends {
|
|
|
4175
4173
|
overlineThickness?: string | number | MotionValue<any> | undefined;
|
|
4176
4174
|
panose1?: string | number | MotionValue<any> | undefined;
|
|
4177
4175
|
path?: string | number | MotionValue<any> | undefined;
|
|
4176
|
+
pathLength?: string | number | MotionValue<any> | undefined;
|
|
4178
4177
|
patternContentUnits?: string | number | MotionValue<any> | undefined;
|
|
4179
4178
|
patternTransform?: string | number | MotionValue<any> | undefined;
|
|
4180
4179
|
patternUnits?: string | number | MotionValue<any> | undefined;
|
|
@@ -4255,7 +4254,8 @@ export declare const useTickerItem: <T extends {
|
|
|
4255
4254
|
y2?: string | number | MotionValue<any> | undefined;
|
|
4256
4255
|
yChannelSelector?: string | number | MotionValue<any> | undefined;
|
|
4257
4256
|
zoomAndPan?: string | number | MotionValue<any> | undefined;
|
|
4258
|
-
|
|
4257
|
+
pathOffset?: string | number | MotionValue<any> | undefined;
|
|
4258
|
+
pathSpacing?: string | number | MotionValue<any> | undefined;
|
|
4259
4259
|
}>;
|
|
4260
4260
|
"aria-hidden"?: boolean | undefined;
|
|
4261
4261
|
"aria-posinset"?: number | undefined;
|