react-native-screen-transitions 3.4.0-rc.0 → 3.4.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/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js +0 -1
- package/lib/commonjs/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
- package/lib/commonjs/shared/constants.js +2 -2
- package/lib/commonjs/shared/constants.js.map +1 -1
- package/lib/commonjs/shared/hooks/gestures/use-scroll-registry.js +22 -12
- package/lib/commonjs/shared/hooks/gestures/use-scroll-registry.js.map +1 -1
- package/lib/commonjs/shared/typecheck/public-api.typecheck.js +5 -0
- package/lib/commonjs/shared/typecheck/public-api.typecheck.js.map +1 -1
- package/lib/commonjs/shared/types/animation.types.js +1 -3
- package/lib/commonjs/shared/types/animation.types.js.map +1 -1
- package/lib/commonjs/shared/utils/bounds/zoom/build.js +10 -8
- package/lib/commonjs/shared/utils/bounds/zoom/build.js.map +1 -1
- package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js +0 -1
- package/lib/module/shared/components/screen-container/layers/maybe-masked-navigation-container.js.map +1 -1
- package/lib/module/shared/constants.js +2 -2
- package/lib/module/shared/constants.js.map +1 -1
- package/lib/module/shared/hooks/gestures/use-scroll-registry.js +22 -12
- package/lib/module/shared/hooks/gestures/use-scroll-registry.js.map +1 -1
- package/lib/module/shared/typecheck/public-api.typecheck.js +5 -0
- package/lib/module/shared/typecheck/public-api.typecheck.js.map +1 -1
- package/lib/module/shared/types/animation.types.js +44 -1
- package/lib/module/shared/types/animation.types.js.map +1 -1
- package/lib/module/shared/utils/bounds/zoom/build.js +10 -8
- package/lib/module/shared/utils/bounds/zoom/build.js.map +1 -1
- package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts +3 -206
- package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts.map +1 -1
- package/lib/typescript/shared/components/create-boundary-component/index.d.ts +2 -206
- package/lib/typescript/shared/components/create-boundary-component/index.d.ts.map +1 -1
- package/lib/typescript/shared/components/create-transition-aware-component.d.ts +5 -6
- package/lib/typescript/shared/components/create-transition-aware-component.d.ts.map +1 -1
- package/lib/typescript/shared/components/screen-container/layers/maybe-masked-navigation-container.d.ts.map +1 -1
- package/lib/typescript/shared/constants.d.ts +2 -2
- package/lib/typescript/shared/constants.d.ts.map +1 -1
- package/lib/typescript/shared/hooks/gestures/use-scroll-registry.d.ts.map +1 -1
- package/lib/typescript/shared/index.d.ts +647 -909
- package/lib/typescript/shared/index.d.ts.map +1 -1
- package/lib/typescript/shared/types/animation.types.d.ts +9 -0
- package/lib/typescript/shared/types/animation.types.d.ts.map +1 -1
- package/lib/typescript/shared/utils/bounds/zoom/build.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/shared/components/screen-container/layers/maybe-masked-navigation-container.tsx +0 -1
- package/src/shared/constants.ts +4 -2
- package/src/shared/hooks/gestures/use-scroll-registry.ts +23 -12
- package/src/shared/typecheck/public-api.typecheck.ts +6 -0
- package/src/shared/types/animation.types.ts +12 -0
- package/src/shared/utils/bounds/zoom/build.ts +11 -8
|
@@ -8,212 +8,8 @@ declare const _default: {
|
|
|
8
8
|
Boundary: {
|
|
9
9
|
View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
|
|
10
10
|
Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
|
|
11
|
-
Target: import("react").NamedExoticComponent<{
|
|
12
|
-
|
|
13
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
14
|
-
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
15
|
-
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
16
|
-
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
17
|
-
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
18
|
-
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
19
|
-
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
20
|
-
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
21
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
22
|
-
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
23
|
-
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
24
|
-
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
25
|
-
renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
26
|
-
focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
27
|
-
tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
|
|
28
|
-
shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
29
|
-
isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
30
|
-
hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
31
|
-
tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
32
|
-
tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
33
|
-
tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
34
|
-
tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
35
|
-
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
36
|
-
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
37
|
-
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
38
|
-
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
39
|
-
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
40
|
-
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
41
|
-
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
42
|
-
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
43
|
-
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
44
|
-
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
45
|
-
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
46
|
-
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
47
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
48
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
49
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
50
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
51
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
52
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
53
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
54
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
55
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
56
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
57
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
58
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
59
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
60
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
61
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
62
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
63
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
64
|
-
accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
65
|
-
accessibilityActions?: readonly Readonly<{
|
|
66
|
-
name: import("react-native").AccessibilityActionName | string;
|
|
67
|
-
label?: string | undefined;
|
|
68
|
-
}>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
|
|
69
|
-
name: import("react-native").AccessibilityActionName | string;
|
|
70
|
-
label?: string | undefined;
|
|
71
|
-
}>[] | undefined> | undefined;
|
|
72
|
-
accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
73
|
-
'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
74
|
-
accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
|
|
75
|
-
accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
|
|
76
|
-
'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
77
|
-
'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
78
|
-
'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
79
|
-
'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
80
|
-
'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
81
|
-
accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
82
|
-
accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
|
|
83
|
-
'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
84
|
-
'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
85
|
-
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
86
|
-
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
87
|
-
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
88
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
89
|
-
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
90
|
-
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
91
|
-
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
92
|
-
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
93
|
-
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
94
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
95
|
-
'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
96
|
-
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
97
|
-
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
98
|
-
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
99
|
-
onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
100
|
-
onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
101
|
-
onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
102
|
-
accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
103
|
-
accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
104
|
-
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
105
|
-
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
106
|
-
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
107
|
-
} & {
|
|
108
|
-
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
109
|
-
} & {
|
|
110
|
-
layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
|
|
111
|
-
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
112
|
-
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
113
|
-
} & {
|
|
114
|
-
animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
|
|
115
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
116
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
117
|
-
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
118
|
-
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
119
|
-
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
120
|
-
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
121
|
-
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
122
|
-
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
123
|
-
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
124
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
125
|
-
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
126
|
-
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
127
|
-
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
128
|
-
renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
129
|
-
focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
130
|
-
tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
|
|
131
|
-
shouldRasterizeIOS?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
132
|
-
isTVSelectable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
133
|
-
hasTVPreferredFocus?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
134
|
-
tvParallaxShiftDistanceX?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
135
|
-
tvParallaxShiftDistanceY?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
136
|
-
tvParallaxTiltAngle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
137
|
-
tvParallaxMagnification?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
138
|
-
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
139
|
-
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
140
|
-
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
141
|
-
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
142
|
-
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
143
|
-
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
144
|
-
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
145
|
-
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
146
|
-
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
147
|
-
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
148
|
-
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
149
|
-
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
150
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
151
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
152
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
153
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
154
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | undefined> | undefined;
|
|
155
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
156
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
157
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
158
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
159
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
160
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
161
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
162
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
163
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
164
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
165
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
166
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").PointerEvent) => void) | undefined> | undefined;
|
|
167
|
-
accessible?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
168
|
-
accessibilityActions?: readonly Readonly<{
|
|
169
|
-
name: import("react-native").AccessibilityActionName | string;
|
|
170
|
-
label?: string | undefined;
|
|
171
|
-
}>[] | import("react-native-reanimated").SharedValue<readonly Readonly<{
|
|
172
|
-
name: import("react-native").AccessibilityActionName | string;
|
|
173
|
-
label?: string | undefined;
|
|
174
|
-
}>[] | undefined> | undefined;
|
|
175
|
-
accessibilityLabel?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
176
|
-
'aria-label'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
177
|
-
accessibilityRole?: import("react-native").AccessibilityRole | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityRole | undefined> | undefined;
|
|
178
|
-
accessibilityState?: import("react-native").AccessibilityState | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityState | undefined> | undefined;
|
|
179
|
-
'aria-busy'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
180
|
-
'aria-checked'?: boolean | "mixed" | import("react-native-reanimated").SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
181
|
-
'aria-disabled'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
182
|
-
'aria-expanded'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
183
|
-
'aria-selected'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
184
|
-
accessibilityHint?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
185
|
-
accessibilityValue?: import("react-native").AccessibilityValue | import("react-native-reanimated").SharedValue<import("react-native").AccessibilityValue | undefined> | undefined;
|
|
186
|
-
'aria-valuemax'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
187
|
-
'aria-valuemin'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
188
|
-
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
189
|
-
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
190
|
-
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
191
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
192
|
-
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
193
|
-
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
194
|
-
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
195
|
-
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
196
|
-
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
197
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
198
|
-
'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
199
|
-
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
200
|
-
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
201
|
-
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
202
|
-
onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
203
|
-
onAccessibilityTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
204
|
-
onMagicTap?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
205
|
-
accessibilityIgnoresInvertColors?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
206
|
-
accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
207
|
-
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
208
|
-
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
209
|
-
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
210
|
-
} & {
|
|
211
|
-
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
212
|
-
} & {
|
|
213
|
-
layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
|
|
214
|
-
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
215
|
-
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
216
|
-
}> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
|
|
11
|
+
Target: import("react").NamedExoticComponent<Omit<import("react-native-reanimated").AnimatedProps<Readonly<import("react-native").ViewProps>>, "ref"> & {
|
|
12
|
+
ref?: (import("react-native-reanimated").AnimatedRef | import("react").Ref<View> | import("react-native-reanimated").AnimatedRef<typeof View>) | undefined;
|
|
217
13
|
}>;
|
|
218
14
|
};
|
|
219
15
|
View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
@@ -293,14 +89,14 @@ declare const _default: {
|
|
|
293
89
|
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
294
90
|
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
295
91
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
296
|
-
importantForAccessibility?: "auto" | "
|
|
92
|
+
importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
|
|
297
93
|
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
298
94
|
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
299
95
|
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
300
96
|
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
301
97
|
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
302
98
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
303
|
-
'aria-live'?: "
|
|
99
|
+
'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
|
|
304
100
|
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
305
101
|
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
306
102
|
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -319,109 +115,103 @@ declare const _default: {
|
|
|
319
115
|
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
320
116
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
321
117
|
} & {
|
|
322
|
-
animatedProps?: import("react-native-reanimated/lib/typescript/
|
|
323
|
-
id?: string |
|
|
324
|
-
pointerEvents?: "
|
|
325
|
-
children?: import("react").ReactNode
|
|
326
|
-
hitSlop?: number | import("react-native").Insets |
|
|
327
|
-
needsOffscreenAlphaCompositing?: boolean |
|
|
328
|
-
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) |
|
|
329
|
-
removeClippedSubviews?: boolean |
|
|
330
|
-
testID?: string |
|
|
331
|
-
nativeID?: string |
|
|
332
|
-
collapsable?: boolean |
|
|
333
|
-
collapsableChildren?: boolean |
|
|
334
|
-
onBlur?: ((e: import("react-native").BlurEvent) => void) |
|
|
335
|
-
onFocus?: ((e: import("react-native").FocusEvent) => void) |
|
|
336
|
-
renderToHardwareTextureAndroid?: boolean |
|
|
337
|
-
focusable?: boolean |
|
|
338
|
-
tabIndex?: 0 | -1 |
|
|
339
|
-
shouldRasterizeIOS?: boolean |
|
|
340
|
-
isTVSelectable?: boolean |
|
|
341
|
-
hasTVPreferredFocus?: boolean |
|
|
342
|
-
tvParallaxShiftDistanceX?: number |
|
|
343
|
-
tvParallaxShiftDistanceY?: number |
|
|
344
|
-
tvParallaxTiltAngle?: number |
|
|
345
|
-
tvParallaxMagnification?: number |
|
|
346
|
-
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
347
|
-
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
348
|
-
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
349
|
-
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
350
|
-
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
351
|
-
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
352
|
-
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
353
|
-
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
354
|
-
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
355
|
-
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
356
|
-
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
357
|
-
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
358
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
359
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
360
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
361
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
362
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
363
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) |
|
|
364
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
365
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) |
|
|
366
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
367
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) |
|
|
368
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
369
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) |
|
|
370
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
371
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) |
|
|
372
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
373
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) |
|
|
374
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
375
|
-
accessible?: boolean |
|
|
118
|
+
animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
|
|
119
|
+
id?: string | undefined | undefined;
|
|
120
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
121
|
+
children?: import("react").ReactNode;
|
|
122
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
123
|
+
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
124
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
|
|
125
|
+
removeClippedSubviews?: boolean | undefined | undefined;
|
|
126
|
+
testID?: string | undefined | undefined;
|
|
127
|
+
nativeID?: string | undefined | undefined;
|
|
128
|
+
collapsable?: boolean | undefined | undefined;
|
|
129
|
+
collapsableChildren?: boolean | undefined | undefined;
|
|
130
|
+
onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
|
|
131
|
+
onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
|
|
132
|
+
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
133
|
+
focusable?: boolean | undefined | undefined;
|
|
134
|
+
tabIndex?: 0 | -1 | undefined | undefined;
|
|
135
|
+
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
136
|
+
isTVSelectable?: boolean | undefined | undefined;
|
|
137
|
+
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
138
|
+
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
139
|
+
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
140
|
+
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
141
|
+
tvParallaxMagnification?: number | undefined | undefined;
|
|
142
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
143
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
144
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
145
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
146
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
147
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
148
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
149
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
150
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
151
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
152
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
153
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
154
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
155
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
156
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
157
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
158
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
159
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
160
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
161
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
162
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
163
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
164
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
165
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
166
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
167
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
168
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
169
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
170
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
171
|
+
accessible?: boolean | undefined | undefined;
|
|
376
172
|
accessibilityActions?: readonly Readonly<{
|
|
377
173
|
name: import("react-native").AccessibilityActionName | string;
|
|
378
174
|
label?: string | undefined;
|
|
379
|
-
}>[] |
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
'aria-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
'aria-
|
|
388
|
-
'aria-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
'aria-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
'aria-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
'aria-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
'aria-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
420
|
-
} & {
|
|
421
|
-
layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
|
|
422
|
-
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
423
|
-
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
424
|
-
}> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
|
|
175
|
+
}>[] | undefined;
|
|
176
|
+
accessibilityLabel?: string | undefined | undefined;
|
|
177
|
+
'aria-label'?: string | undefined | undefined;
|
|
178
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
179
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
180
|
+
'aria-busy'?: boolean | undefined | undefined;
|
|
181
|
+
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
182
|
+
'aria-disabled'?: boolean | undefined | undefined;
|
|
183
|
+
'aria-expanded'?: boolean | undefined | undefined;
|
|
184
|
+
'aria-selected'?: boolean | undefined | undefined;
|
|
185
|
+
accessibilityHint?: string | undefined | undefined;
|
|
186
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
187
|
+
'aria-valuemax'?: number | undefined;
|
|
188
|
+
'aria-valuemin'?: number | undefined;
|
|
189
|
+
'aria-valuenow'?: number | undefined;
|
|
190
|
+
'aria-valuetext'?: string | undefined;
|
|
191
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
|
|
192
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
193
|
+
'aria-hidden'?: boolean | undefined | undefined;
|
|
194
|
+
'aria-modal'?: boolean | undefined | undefined;
|
|
195
|
+
role?: import("react-native").Role | undefined;
|
|
196
|
+
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
197
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
198
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
199
|
+
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
200
|
+
screenReaderFocusable?: boolean | undefined | undefined;
|
|
201
|
+
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
202
|
+
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
203
|
+
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
204
|
+
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
205
|
+
onMagicTap?: (() => void) | undefined | undefined;
|
|
206
|
+
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
207
|
+
accessibilityLanguage?: string | undefined | undefined;
|
|
208
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
209
|
+
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
210
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
211
|
+
}>> | undefined;
|
|
212
|
+
} & {
|
|
213
|
+
sharedTransitionTag?: string;
|
|
214
|
+
sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
|
|
425
215
|
} & {
|
|
426
216
|
styleId?: string;
|
|
427
217
|
sharedBoundTag?: string;
|
|
@@ -506,14 +296,14 @@ declare const _default: {
|
|
|
506
296
|
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
507
297
|
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
508
298
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
509
|
-
importantForAccessibility?: "auto" | "
|
|
299
|
+
importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
|
|
510
300
|
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
511
301
|
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
512
302
|
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
513
303
|
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
514
304
|
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
515
305
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
516
|
-
'aria-live'?: "
|
|
306
|
+
'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
|
|
517
307
|
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
518
308
|
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
519
309
|
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -548,127 +338,121 @@ declare const _default: {
|
|
|
548
338
|
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
549
339
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
550
340
|
} & {
|
|
551
|
-
animatedProps?: import("react-native-reanimated/lib/typescript/
|
|
552
|
-
id?: string |
|
|
553
|
-
pointerEvents?: "
|
|
554
|
-
key?: import("react").Key |
|
|
555
|
-
children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode)
|
|
556
|
-
ref?: import("react").Ref<View> |
|
|
557
|
-
hitSlop?: number | import("react-native").Insets |
|
|
558
|
-
needsOffscreenAlphaCompositing?: boolean |
|
|
559
|
-
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) |
|
|
560
|
-
removeClippedSubviews?: boolean |
|
|
561
|
-
testID?: string |
|
|
562
|
-
nativeID?: string |
|
|
563
|
-
collapsable?: boolean |
|
|
564
|
-
collapsableChildren?: boolean |
|
|
565
|
-
onBlur?:
|
|
566
|
-
onFocus?:
|
|
567
|
-
renderToHardwareTextureAndroid?: boolean |
|
|
568
|
-
focusable?: boolean |
|
|
569
|
-
tabIndex?: 0 | -1 |
|
|
570
|
-
shouldRasterizeIOS?: boolean |
|
|
571
|
-
isTVSelectable?: boolean |
|
|
572
|
-
hasTVPreferredFocus?: boolean |
|
|
573
|
-
tvParallaxShiftDistanceX?: number |
|
|
574
|
-
tvParallaxShiftDistanceY?: number |
|
|
575
|
-
tvParallaxTiltAngle?: number |
|
|
576
|
-
tvParallaxMagnification?: number |
|
|
577
|
-
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
578
|
-
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
579
|
-
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
580
|
-
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
581
|
-
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
582
|
-
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
583
|
-
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
584
|
-
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
585
|
-
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
586
|
-
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
587
|
-
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
588
|
-
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
589
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
590
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
591
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
592
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
593
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
594
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) |
|
|
595
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
596
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) |
|
|
597
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
598
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) |
|
|
599
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
600
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) |
|
|
601
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
602
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) |
|
|
603
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
604
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) |
|
|
605
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
606
|
-
accessible?: boolean |
|
|
341
|
+
animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
|
|
342
|
+
id?: string | undefined | undefined;
|
|
343
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
344
|
+
key?: import("react").Key | null | undefined;
|
|
345
|
+
children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode);
|
|
346
|
+
ref?: import("react").Ref<View> | undefined;
|
|
347
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
348
|
+
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
349
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
|
|
350
|
+
removeClippedSubviews?: boolean | undefined | undefined;
|
|
351
|
+
testID?: string | undefined | undefined;
|
|
352
|
+
nativeID?: string | undefined | undefined;
|
|
353
|
+
collapsable?: boolean | undefined | undefined;
|
|
354
|
+
collapsableChildren?: boolean | undefined | undefined;
|
|
355
|
+
onBlur?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
|
|
356
|
+
onFocus?: null | ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | undefined | undefined;
|
|
357
|
+
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
358
|
+
focusable?: boolean | undefined | undefined;
|
|
359
|
+
tabIndex?: 0 | -1 | undefined | undefined;
|
|
360
|
+
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
361
|
+
isTVSelectable?: boolean | undefined | undefined;
|
|
362
|
+
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
363
|
+
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
364
|
+
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
365
|
+
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
366
|
+
tvParallaxMagnification?: number | undefined | undefined;
|
|
367
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
368
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
369
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
370
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
371
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
372
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
373
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
374
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
375
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
376
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
377
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
378
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
379
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
380
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
381
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
382
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
383
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
384
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
385
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
386
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
387
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
388
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
389
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
390
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
391
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
392
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
393
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
394
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
395
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
396
|
+
accessible?: boolean | undefined | undefined;
|
|
607
397
|
accessibilityActions?: readonly Readonly<{
|
|
608
398
|
name: import("react-native").AccessibilityActionName | string;
|
|
609
399
|
label?: string | undefined;
|
|
610
|
-
}>[] |
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
'aria-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
'aria-
|
|
619
|
-
'aria-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
'aria-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
'aria-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
'aria-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
'aria-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle> | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>)>>;
|
|
667
|
-
} & {
|
|
668
|
-
layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
|
|
669
|
-
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
670
|
-
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
671
|
-
}> | import("react-native-reanimated").CSSStyle<import("react-native").PressableProps & import("react").RefAttributes<View>>> | undefined;
|
|
400
|
+
}>[] | undefined;
|
|
401
|
+
accessibilityLabel?: string | undefined | undefined;
|
|
402
|
+
'aria-label'?: string | undefined | undefined;
|
|
403
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
404
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
405
|
+
'aria-busy'?: boolean | undefined | undefined;
|
|
406
|
+
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
407
|
+
'aria-disabled'?: boolean | undefined | undefined;
|
|
408
|
+
'aria-expanded'?: boolean | undefined | undefined;
|
|
409
|
+
'aria-selected'?: boolean | undefined | undefined;
|
|
410
|
+
accessibilityHint?: string | undefined | undefined;
|
|
411
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
412
|
+
'aria-valuemax'?: number | undefined;
|
|
413
|
+
'aria-valuemin'?: number | undefined;
|
|
414
|
+
'aria-valuenow'?: number | undefined;
|
|
415
|
+
'aria-valuetext'?: string | undefined;
|
|
416
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
|
|
417
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
418
|
+
'aria-hidden'?: boolean | undefined | undefined;
|
|
419
|
+
'aria-modal'?: boolean | undefined | undefined;
|
|
420
|
+
role?: import("react-native").Role | undefined;
|
|
421
|
+
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
422
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
423
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
424
|
+
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
425
|
+
screenReaderFocusable?: boolean | undefined | undefined;
|
|
426
|
+
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
427
|
+
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
428
|
+
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
429
|
+
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
430
|
+
onMagicTap?: (() => void) | undefined | undefined;
|
|
431
|
+
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
432
|
+
accessibilityLanguage?: string | undefined | undefined;
|
|
433
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
434
|
+
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
435
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
436
|
+
onPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
437
|
+
onHoverIn?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
|
|
438
|
+
onHoverOut?: null | ((event: import("react-native").MouseEvent) => void) | undefined | undefined;
|
|
439
|
+
onPressIn?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
440
|
+
onPressOut?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
441
|
+
onLongPress?: null | ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
442
|
+
cancelable?: null | boolean | undefined | undefined;
|
|
443
|
+
delayHoverIn?: number | null | undefined | undefined;
|
|
444
|
+
delayHoverOut?: number | null | undefined | undefined;
|
|
445
|
+
delayLongPress?: null | number | undefined | undefined;
|
|
446
|
+
disabled?: null | boolean | undefined | undefined;
|
|
447
|
+
pressRetentionOffset?: number | import("react-native").Insets | null | undefined;
|
|
448
|
+
android_disableSound?: null | boolean | undefined | undefined;
|
|
449
|
+
android_ripple?: import("react-native").PressableAndroidRippleConfig | null | undefined;
|
|
450
|
+
testOnly_pressed?: null | boolean | undefined | undefined;
|
|
451
|
+
unstable_pressDelay?: number | undefined | undefined;
|
|
452
|
+
}>> | undefined;
|
|
453
|
+
} & {
|
|
454
|
+
sharedTransitionTag?: string;
|
|
455
|
+
sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
|
|
672
456
|
} & {
|
|
673
457
|
styleId?: string;
|
|
674
458
|
sharedBoundTag?: string;
|
|
@@ -752,14 +536,14 @@ declare const _default: {
|
|
|
752
536
|
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
753
537
|
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
754
538
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
755
|
-
importantForAccessibility?: "auto" | "
|
|
539
|
+
importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
|
|
756
540
|
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
757
541
|
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
758
542
|
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
759
543
|
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
760
544
|
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
761
545
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
762
|
-
'aria-live'?: "
|
|
546
|
+
'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
|
|
763
547
|
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
764
548
|
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
765
549
|
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -771,18 +555,24 @@ declare const _default: {
|
|
|
771
555
|
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
772
556
|
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
773
557
|
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
558
|
+
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
559
|
+
fadingEdgeLength?: number | {
|
|
560
|
+
start: number;
|
|
561
|
+
end: number;
|
|
562
|
+
} | import("react-native-reanimated").SharedValue<number | {
|
|
563
|
+
start: number;
|
|
564
|
+
end: number;
|
|
565
|
+
} | undefined> | undefined;
|
|
779
566
|
innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
|
|
780
567
|
scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
|
|
781
568
|
decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
782
569
|
invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
783
570
|
keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
784
|
-
|
|
571
|
+
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
|
|
572
|
+
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
785
573
|
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
574
|
+
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
575
|
+
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
786
576
|
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
787
577
|
pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
788
578
|
scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -822,6 +612,7 @@ declare const _default: {
|
|
|
822
612
|
minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
823
613
|
onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
824
614
|
pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
615
|
+
scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
825
616
|
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
826
617
|
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
827
618
|
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -832,13 +623,6 @@ declare const _default: {
|
|
|
832
623
|
scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
833
624
|
overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
|
|
834
625
|
nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
835
|
-
fadingEdgeLength?: number | {
|
|
836
|
-
start: number;
|
|
837
|
-
end: number;
|
|
838
|
-
} | import("react-native-reanimated").SharedValue<number | {
|
|
839
|
-
start: number;
|
|
840
|
-
end: number;
|
|
841
|
-
} | undefined> | undefined;
|
|
842
626
|
persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
843
627
|
} & {
|
|
844
628
|
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
@@ -849,181 +633,167 @@ declare const _default: {
|
|
|
849
633
|
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
850
634
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
851
635
|
} & {
|
|
852
|
-
animatedProps?: import("react-native-reanimated/lib/typescript/
|
|
853
|
-
horizontal?: boolean |
|
|
854
|
-
id?: string |
|
|
855
|
-
pointerEvents?: "
|
|
856
|
-
children?: import("react").ReactNode
|
|
857
|
-
hitSlop?: number | import("react-native").Insets |
|
|
858
|
-
needsOffscreenAlphaCompositing?: boolean |
|
|
859
|
-
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) |
|
|
860
|
-
removeClippedSubviews?: boolean |
|
|
861
|
-
testID?: string |
|
|
862
|
-
nativeID?: string |
|
|
863
|
-
collapsable?: boolean |
|
|
864
|
-
collapsableChildren?: boolean |
|
|
865
|
-
onBlur?: ((e: import("react-native").BlurEvent) => void) |
|
|
866
|
-
onFocus?: ((e: import("react-native").FocusEvent) => void) |
|
|
867
|
-
renderToHardwareTextureAndroid?: boolean |
|
|
868
|
-
focusable?: boolean |
|
|
869
|
-
tabIndex?: 0 | -1 |
|
|
870
|
-
shouldRasterizeIOS?: boolean |
|
|
871
|
-
isTVSelectable?: boolean |
|
|
872
|
-
hasTVPreferredFocus?: boolean |
|
|
873
|
-
tvParallaxShiftDistanceX?: number |
|
|
874
|
-
tvParallaxShiftDistanceY?: number |
|
|
875
|
-
tvParallaxTiltAngle?: number |
|
|
876
|
-
tvParallaxMagnification?: number |
|
|
877
|
-
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
878
|
-
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
879
|
-
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
880
|
-
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
881
|
-
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
882
|
-
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
883
|
-
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
884
|
-
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
885
|
-
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
886
|
-
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
887
|
-
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
888
|
-
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) |
|
|
889
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
890
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
891
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
892
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
893
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) |
|
|
894
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) |
|
|
895
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
896
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) |
|
|
897
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
898
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) |
|
|
899
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
900
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) |
|
|
901
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
902
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) |
|
|
903
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
904
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) |
|
|
905
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) |
|
|
906
|
-
accessible?: boolean |
|
|
636
|
+
animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
|
|
637
|
+
horizontal?: boolean | null | undefined | undefined;
|
|
638
|
+
id?: string | undefined | undefined;
|
|
639
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
640
|
+
children?: import("react").ReactNode;
|
|
641
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
642
|
+
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
643
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
|
|
644
|
+
removeClippedSubviews?: boolean | undefined | undefined;
|
|
645
|
+
testID?: string | undefined | undefined;
|
|
646
|
+
nativeID?: string | undefined | undefined;
|
|
647
|
+
collapsable?: boolean | undefined | undefined;
|
|
648
|
+
collapsableChildren?: boolean | undefined | undefined;
|
|
649
|
+
onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
|
|
650
|
+
onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
|
|
651
|
+
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
652
|
+
focusable?: boolean | undefined | undefined;
|
|
653
|
+
tabIndex?: 0 | -1 | undefined | undefined;
|
|
654
|
+
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
655
|
+
isTVSelectable?: boolean | undefined | undefined;
|
|
656
|
+
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
657
|
+
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
658
|
+
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
659
|
+
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
660
|
+
tvParallaxMagnification?: number | undefined | undefined;
|
|
661
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
662
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
663
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
664
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
665
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
666
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
667
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
668
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
669
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
670
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
671
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
672
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
673
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
674
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
675
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
676
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
677
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
678
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
679
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
680
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
681
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
682
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
683
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
684
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
685
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
686
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
687
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
688
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
689
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
690
|
+
accessible?: boolean | undefined | undefined;
|
|
907
691
|
accessibilityActions?: readonly Readonly<{
|
|
908
692
|
name: import("react-native").AccessibilityActionName | string;
|
|
909
693
|
label?: string | undefined;
|
|
910
|
-
}>[] |
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
'aria-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
'aria-
|
|
919
|
-
'aria-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
'aria-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
'aria-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
'aria-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
'aria-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
948
|
-
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
949
|
-
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
950
|
-
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
951
|
-
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
952
|
-
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
|
|
953
|
-
scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
954
|
-
innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
|
|
955
|
-
scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
|
|
956
|
-
decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
957
|
-
invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
958
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
959
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
960
|
-
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
961
|
-
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
962
|
-
pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
963
|
-
scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
964
|
-
showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
965
|
-
showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
966
|
-
stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
967
|
-
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined> | undefined;
|
|
968
|
-
snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
969
|
-
snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
970
|
-
snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
971
|
-
snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
972
|
-
stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
973
|
-
disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
974
|
-
disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
975
|
-
StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
|
|
976
|
-
alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
977
|
-
alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
978
|
-
automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
979
|
-
automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
980
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
981
|
-
bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
982
|
-
bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
983
|
-
canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
984
|
-
centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
985
|
-
contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
986
|
-
contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
|
|
987
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
988
|
-
directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
989
|
-
maintainVisibleContentPosition?: {
|
|
990
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
991
|
-
minIndexForVisible: number;
|
|
992
|
-
} | import("react-native-reanimated").SharedValue<{
|
|
993
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
994
|
-
minIndexForVisible: number;
|
|
995
|
-
} | null | undefined> | null | undefined;
|
|
996
|
-
maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
997
|
-
minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
998
|
-
onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
999
|
-
pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1000
|
-
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1001
|
-
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1002
|
-
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1003
|
-
snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1004
|
-
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1005
|
-
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1006
|
-
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
1007
|
-
scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1008
|
-
overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
|
|
1009
|
-
nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
694
|
+
}>[] | undefined;
|
|
695
|
+
accessibilityLabel?: string | undefined | undefined;
|
|
696
|
+
'aria-label'?: string | undefined | undefined;
|
|
697
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
698
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
699
|
+
'aria-busy'?: boolean | undefined | undefined;
|
|
700
|
+
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
701
|
+
'aria-disabled'?: boolean | undefined | undefined;
|
|
702
|
+
'aria-expanded'?: boolean | undefined | undefined;
|
|
703
|
+
'aria-selected'?: boolean | undefined | undefined;
|
|
704
|
+
accessibilityHint?: string | undefined | undefined;
|
|
705
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
706
|
+
'aria-valuemax'?: number | undefined;
|
|
707
|
+
'aria-valuemin'?: number | undefined;
|
|
708
|
+
'aria-valuenow'?: number | undefined;
|
|
709
|
+
'aria-valuetext'?: string | undefined;
|
|
710
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
|
|
711
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
712
|
+
'aria-hidden'?: boolean | undefined | undefined;
|
|
713
|
+
'aria-modal'?: boolean | undefined | undefined;
|
|
714
|
+
role?: import("react-native").Role | undefined;
|
|
715
|
+
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
716
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
717
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
718
|
+
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
719
|
+
screenReaderFocusable?: boolean | undefined | undefined;
|
|
720
|
+
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
721
|
+
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
722
|
+
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
723
|
+
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
724
|
+
onMagicTap?: (() => void) | undefined | undefined;
|
|
725
|
+
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
726
|
+
accessibilityLanguage?: string | undefined | undefined;
|
|
727
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
728
|
+
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
729
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
730
|
+
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
|
|
1010
731
|
fadingEdgeLength?: number | {
|
|
1011
732
|
start: number;
|
|
1012
733
|
end: number;
|
|
1013
|
-
} |
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
734
|
+
} | undefined | undefined;
|
|
735
|
+
innerViewRef?: import("react").RefObject<View> | undefined;
|
|
736
|
+
scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
|
|
737
|
+
decelerationRate?: "fast" | "normal" | number | undefined | undefined;
|
|
738
|
+
invertStickyHeaders?: boolean | undefined | undefined;
|
|
739
|
+
keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
|
|
740
|
+
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
|
|
741
|
+
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
742
|
+
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
743
|
+
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
744
|
+
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
745
|
+
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
746
|
+
pagingEnabled?: boolean | undefined | undefined;
|
|
747
|
+
scrollEnabled?: boolean | undefined | undefined;
|
|
748
|
+
showsHorizontalScrollIndicator?: boolean | undefined | undefined;
|
|
749
|
+
showsVerticalScrollIndicator?: boolean | undefined | undefined;
|
|
750
|
+
stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
|
|
751
|
+
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
752
|
+
snapToInterval?: number | undefined | undefined;
|
|
753
|
+
snapToOffsets?: number[] | undefined | undefined;
|
|
754
|
+
snapToStart?: boolean | undefined | undefined;
|
|
755
|
+
snapToEnd?: boolean | undefined | undefined;
|
|
756
|
+
stickyHeaderIndices?: number[] | undefined | undefined;
|
|
757
|
+
disableIntervalMomentum?: boolean | undefined | undefined;
|
|
758
|
+
disableScrollViewPanResponder?: boolean | undefined | undefined;
|
|
759
|
+
StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
|
|
760
|
+
alwaysBounceHorizontal?: boolean | undefined | undefined;
|
|
761
|
+
alwaysBounceVertical?: boolean | undefined | undefined;
|
|
762
|
+
automaticallyAdjustContentInsets?: boolean | undefined | undefined;
|
|
763
|
+
automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
|
|
764
|
+
automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
|
|
765
|
+
bounces?: boolean | undefined | undefined;
|
|
766
|
+
bouncesZoom?: boolean | undefined | undefined;
|
|
767
|
+
canCancelContentTouches?: boolean | undefined | undefined;
|
|
768
|
+
centerContent?: boolean | undefined | undefined;
|
|
769
|
+
contentInset?: import("react-native").Insets | undefined;
|
|
770
|
+
contentOffset?: import("react-native").PointProp | undefined;
|
|
771
|
+
contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
|
|
772
|
+
directionalLockEnabled?: boolean | undefined | undefined;
|
|
773
|
+
maintainVisibleContentPosition?: null | {
|
|
774
|
+
autoscrollToTopThreshold?: number | null | undefined;
|
|
775
|
+
minIndexForVisible: number;
|
|
776
|
+
} | undefined | undefined;
|
|
777
|
+
maximumZoomScale?: number | undefined | undefined;
|
|
778
|
+
minimumZoomScale?: number | undefined | undefined;
|
|
779
|
+
onScrollAnimationEnd?: (() => void) | undefined | undefined;
|
|
780
|
+
pinchGestureEnabled?: boolean | undefined | undefined;
|
|
781
|
+
scrollEventThrottle?: number | undefined | undefined;
|
|
782
|
+
scrollIndicatorInsets?: import("react-native").Insets | undefined;
|
|
783
|
+
scrollToOverflowEnabled?: boolean | undefined | undefined;
|
|
784
|
+
scrollsToTop?: boolean | undefined | undefined;
|
|
785
|
+
snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
|
|
786
|
+
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
787
|
+
zoomScale?: number | undefined | undefined;
|
|
788
|
+
endFillColor?: import("react-native").ColorValue | undefined;
|
|
789
|
+
scrollPerfTag?: string | undefined | undefined;
|
|
790
|
+
overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
|
|
791
|
+
nestedScrollEnabled?: boolean | undefined | undefined;
|
|
792
|
+
persistentScrollbar?: boolean | undefined | undefined;
|
|
793
|
+
}>> | undefined;
|
|
794
|
+
} & {
|
|
795
|
+
sharedTransitionTag?: string;
|
|
796
|
+
sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
|
|
1027
797
|
} & {
|
|
1028
798
|
styleId?: string;
|
|
1029
799
|
sharedBoundTag?: string;
|
|
@@ -1034,6 +804,7 @@ declare const _default: {
|
|
|
1034
804
|
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1035
805
|
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
1036
806
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
807
|
+
data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
|
|
1037
808
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
1038
809
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1039
810
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
@@ -1107,14 +878,14 @@ declare const _default: {
|
|
|
1107
878
|
'aria-valuenow'?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1108
879
|
'aria-valuetext'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1109
880
|
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
1110
|
-
importantForAccessibility?: "auto" | "
|
|
881
|
+
importantForAccessibility?: "auto" | "no" | "yes" | "no-hide-descendants" | import("react-native-reanimated").SharedValue<"auto" | "no" | "yes" | "no-hide-descendants" | undefined> | undefined;
|
|
1111
882
|
'aria-hidden'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1112
883
|
'aria-modal'?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1113
884
|
role?: import("react-native").Role | import("react-native-reanimated").SharedValue<import("react-native").Role | undefined> | undefined;
|
|
1114
885
|
accessibilityLabelledBy?: string | string[] | import("react-native-reanimated").SharedValue<string | string[] | undefined> | undefined;
|
|
1115
886
|
'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1116
887
|
accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
1117
|
-
'aria-live'?: "
|
|
888
|
+
'aria-live'?: "off" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"off" | "polite" | "assertive" | undefined> | undefined;
|
|
1118
889
|
screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1119
890
|
accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1120
891
|
accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
@@ -1126,76 +897,7 @@ declare const _default: {
|
|
|
1126
897
|
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1127
898
|
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1128
899
|
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1129
|
-
data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
|
|
1130
|
-
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1131
|
-
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1132
|
-
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1133
|
-
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
|
|
1134
|
-
scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1135
|
-
innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
|
|
1136
|
-
scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
|
|
1137
|
-
decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
1138
|
-
invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1139
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
1140
900
|
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
1141
|
-
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1142
|
-
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1143
|
-
pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1144
|
-
scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1145
|
-
showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1146
|
-
showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1147
|
-
stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1148
|
-
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined> | undefined;
|
|
1149
|
-
snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1150
|
-
snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
1151
|
-
snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1152
|
-
snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1153
|
-
stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
1154
|
-
disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1155
|
-
disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1156
|
-
StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
|
|
1157
|
-
alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1158
|
-
alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1159
|
-
automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1160
|
-
automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1161
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1162
|
-
bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1163
|
-
bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1164
|
-
canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1165
|
-
centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1166
|
-
contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1167
|
-
contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
|
|
1168
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
1169
|
-
directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1170
|
-
maintainVisibleContentPosition?: {
|
|
1171
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1172
|
-
minIndexForVisible: number;
|
|
1173
|
-
} | import("react-native-reanimated").SharedValue<{
|
|
1174
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1175
|
-
minIndexForVisible: number;
|
|
1176
|
-
} | null | undefined> | null | undefined;
|
|
1177
|
-
maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1178
|
-
minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1179
|
-
onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
1180
|
-
pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1181
|
-
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1182
|
-
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1183
|
-
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1184
|
-
snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1185
|
-
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1186
|
-
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1187
|
-
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
1188
|
-
scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1189
|
-
overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
|
|
1190
|
-
nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1191
|
-
fadingEdgeLength?: number | {
|
|
1192
|
-
start: number;
|
|
1193
|
-
end: number;
|
|
1194
|
-
} | import("react-native-reanimated").SharedValue<number | {
|
|
1195
|
-
start: number;
|
|
1196
|
-
end: number;
|
|
1197
|
-
} | undefined> | undefined;
|
|
1198
|
-
persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1199
901
|
extraData?: any | undefined;
|
|
1200
902
|
getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1201
903
|
length: number;
|
|
@@ -1222,7 +924,14 @@ declare const _default: {
|
|
|
1222
924
|
refreshing?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
1223
925
|
renderItem: import("react-native").ListRenderItem<unknown> | import("react-native-reanimated").SharedValue<import("react-native").ListRenderItem<unknown> | null | undefined> | null | undefined;
|
|
1224
926
|
viewabilityConfig?: import("react-native").ViewabilityConfig | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfig | undefined> | undefined;
|
|
1225
|
-
|
|
927
|
+
fadingEdgeLength?: number | {
|
|
928
|
+
start: number;
|
|
929
|
+
end: number;
|
|
930
|
+
} | import("react-native-reanimated").SharedValue<number | {
|
|
931
|
+
start: number;
|
|
932
|
+
end: number;
|
|
933
|
+
} | undefined> | undefined;
|
|
934
|
+
ItemSeparatorComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined> | null | undefined;
|
|
1226
935
|
ListEmptyComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined> | null | undefined;
|
|
1227
936
|
ListFooterComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined> | null | undefined;
|
|
1228
937
|
ListHeaderComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined> | null | undefined;
|
|
@@ -1259,260 +968,289 @@ declare const _default: {
|
|
|
1259
968
|
viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | import("react-native-reanimated").SharedValue<import("react-native").ViewabilityConfigCallbackPairs | undefined> | undefined;
|
|
1260
969
|
windowSize?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1261
970
|
CellRendererComponent?: import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | import("react-native-reanimated").SharedValue<import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | null | undefined> | null | undefined;
|
|
971
|
+
innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
|
|
972
|
+
scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
|
|
973
|
+
decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
974
|
+
invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
975
|
+
keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
976
|
+
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
|
|
977
|
+
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
978
|
+
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
979
|
+
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
980
|
+
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
981
|
+
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
982
|
+
pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
983
|
+
scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
984
|
+
showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
985
|
+
showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
986
|
+
stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
987
|
+
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined> | undefined;
|
|
988
|
+
snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
989
|
+
snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
990
|
+
snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
991
|
+
snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
992
|
+
stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
993
|
+
disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
994
|
+
disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
995
|
+
StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
|
|
996
|
+
alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
997
|
+
alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
998
|
+
automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
999
|
+
automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1000
|
+
automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1001
|
+
bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1002
|
+
bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1003
|
+
canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1004
|
+
centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1005
|
+
contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1006
|
+
contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
|
|
1007
|
+
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
1008
|
+
directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1009
|
+
maintainVisibleContentPosition?: {
|
|
1010
|
+
autoscrollToTopThreshold?: number | null | undefined;
|
|
1011
|
+
minIndexForVisible: number;
|
|
1012
|
+
} | import("react-native-reanimated").SharedValue<{
|
|
1013
|
+
autoscrollToTopThreshold?: number | null | undefined;
|
|
1014
|
+
minIndexForVisible: number;
|
|
1015
|
+
} | null | undefined> | null | undefined;
|
|
1016
|
+
maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1017
|
+
minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1018
|
+
onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
1019
|
+
pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1020
|
+
scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1021
|
+
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1022
|
+
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1023
|
+
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1024
|
+
snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1025
|
+
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1026
|
+
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1027
|
+
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
1028
|
+
scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1029
|
+
overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
|
|
1030
|
+
nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1031
|
+
persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1262
1032
|
} & {
|
|
1263
1033
|
style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1264
|
-
contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1265
|
-
indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
|
|
1266
1034
|
columnWrapperStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1267
1035
|
ListFooterComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1268
1036
|
ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1037
|
+
contentContainerStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
|
|
1038
|
+
indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"black" | "default" | "white" | undefined>>;
|
|
1269
1039
|
} & {
|
|
1270
1040
|
layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
|
|
1271
1041
|
entering?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
1272
1042
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
1273
1043
|
} & {
|
|
1274
|
-
animatedProps?: import("react-native-reanimated/lib/typescript/
|
|
1275
|
-
horizontal?: boolean |
|
|
1276
|
-
id?: string |
|
|
1277
|
-
pointerEvents?: "
|
|
1278
|
-
children?: import("react").ReactNode
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1044
|
+
animatedProps?: import("react-native-reanimated/lib/typescript/createAnimatedComponent/commonTypes").NestedArray<import("react-native-reanimated").CSSStyle<{
|
|
1045
|
+
horizontal?: boolean | null | undefined | undefined;
|
|
1046
|
+
id?: string | undefined | undefined;
|
|
1047
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
1048
|
+
children?: import("react").ReactNode;
|
|
1049
|
+
data?: ArrayLike<unknown> | null | undefined;
|
|
1050
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1051
|
+
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
1052
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined | undefined;
|
|
1053
|
+
removeClippedSubviews?: boolean | undefined | undefined;
|
|
1054
|
+
testID?: string | undefined | undefined;
|
|
1055
|
+
nativeID?: string | undefined | undefined;
|
|
1056
|
+
collapsable?: boolean | undefined | undefined;
|
|
1057
|
+
collapsableChildren?: boolean | undefined | undefined;
|
|
1058
|
+
onBlur?: ((e: import("react-native").BlurEvent) => void) | null | undefined | undefined;
|
|
1059
|
+
onFocus?: ((e: import("react-native").FocusEvent) => void) | null | undefined | undefined;
|
|
1060
|
+
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
1061
|
+
focusable?: boolean | undefined | undefined;
|
|
1062
|
+
tabIndex?: 0 | -1 | undefined | undefined;
|
|
1063
|
+
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
1064
|
+
isTVSelectable?: boolean | undefined | undefined;
|
|
1065
|
+
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
1066
|
+
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
1067
|
+
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
1068
|
+
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
1069
|
+
tvParallaxMagnification?: number | undefined | undefined;
|
|
1070
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
1071
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
1072
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1073
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1074
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1075
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1076
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1077
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1078
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
1079
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1080
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
1081
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined | undefined;
|
|
1082
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1083
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1084
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1085
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1086
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined | undefined;
|
|
1087
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1088
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1089
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1090
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1091
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1092
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1093
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1094
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1095
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1096
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1097
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1098
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined | undefined;
|
|
1099
|
+
accessible?: boolean | undefined | undefined;
|
|
1329
1100
|
accessibilityActions?: readonly Readonly<{
|
|
1330
1101
|
name: import("react-native").AccessibilityActionName | string;
|
|
1331
1102
|
label?: string | undefined;
|
|
1332
|
-
}>[] |
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
'aria-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
'aria-
|
|
1341
|
-
'aria-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
'aria-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
'aria-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
'aria-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
'aria-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1370
|
-
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1371
|
-
data: ArrayLike<unknown> | import("react-native-reanimated").SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
|
|
1372
|
-
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1373
|
-
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1374
|
-
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1375
|
-
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
|
|
1376
|
-
scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1377
|
-
innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
|
|
1378
|
-
scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
|
|
1379
|
-
decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
1380
|
-
invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1381
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
1382
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
1383
|
-
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1384
|
-
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1385
|
-
pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1386
|
-
scrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1387
|
-
showsHorizontalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1388
|
-
showsVerticalScrollIndicator?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1389
|
-
stickyHeaderHiddenOnScroll?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1390
|
-
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | import("react-native-reanimated").SharedValue<import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined> | undefined;
|
|
1391
|
-
snapToInterval?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1392
|
-
snapToOffsets?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
1393
|
-
snapToStart?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1394
|
-
snapToEnd?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1395
|
-
stickyHeaderIndices?: number[] | import("react-native-reanimated").SharedValue<number[] | undefined> | undefined;
|
|
1396
|
-
disableIntervalMomentum?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1397
|
-
disableScrollViewPanResponder?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1398
|
-
StickyHeaderComponent?: import("react").ComponentType<any> | import("react-native-reanimated").SharedValue<import("react").ComponentType<any> | undefined> | undefined;
|
|
1399
|
-
alwaysBounceHorizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1400
|
-
alwaysBounceVertical?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1401
|
-
automaticallyAdjustContentInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1402
|
-
automaticallyAdjustKeyboardInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1403
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1404
|
-
bounces?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1405
|
-
bouncesZoom?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1406
|
-
canCancelContentTouches?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1407
|
-
centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1408
|
-
contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1409
|
-
contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
|
|
1410
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
1411
|
-
directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1412
|
-
maintainVisibleContentPosition?: {
|
|
1413
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1414
|
-
minIndexForVisible: number;
|
|
1415
|
-
} | import("react-native-reanimated").SharedValue<{
|
|
1416
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1417
|
-
minIndexForVisible: number;
|
|
1418
|
-
} | null | undefined> | null | undefined;
|
|
1419
|
-
maximumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1420
|
-
minimumZoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1421
|
-
onScrollAnimationEnd?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
|
|
1422
|
-
pinchGestureEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1423
|
-
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1424
|
-
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1425
|
-
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1426
|
-
snapToAlignment?: "center" | "end" | "start" | import("react-native-reanimated").SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1427
|
-
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1428
|
-
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1429
|
-
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
1430
|
-
scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1431
|
-
overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
|
|
1432
|
-
nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1433
|
-
fadingEdgeLength?: number | {
|
|
1434
|
-
start: number;
|
|
1435
|
-
end: number;
|
|
1436
|
-
} | import("react-native-reanimated").SharedValue<number | {
|
|
1437
|
-
start: number;
|
|
1438
|
-
end: number;
|
|
1439
|
-
} | undefined> | undefined;
|
|
1440
|
-
persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1103
|
+
}>[] | undefined;
|
|
1104
|
+
accessibilityLabel?: string | undefined | undefined;
|
|
1105
|
+
'aria-label'?: string | undefined | undefined;
|
|
1106
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
1107
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
1108
|
+
'aria-busy'?: boolean | undefined | undefined;
|
|
1109
|
+
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
1110
|
+
'aria-disabled'?: boolean | undefined | undefined;
|
|
1111
|
+
'aria-expanded'?: boolean | undefined | undefined;
|
|
1112
|
+
'aria-selected'?: boolean | undefined | undefined;
|
|
1113
|
+
accessibilityHint?: string | undefined | undefined;
|
|
1114
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
1115
|
+
'aria-valuemax'?: number | undefined;
|
|
1116
|
+
'aria-valuemin'?: number | undefined;
|
|
1117
|
+
'aria-valuenow'?: number | undefined;
|
|
1118
|
+
'aria-valuetext'?: string | undefined;
|
|
1119
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined | undefined;
|
|
1120
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
1121
|
+
'aria-hidden'?: boolean | undefined | undefined;
|
|
1122
|
+
'aria-modal'?: boolean | undefined | undefined;
|
|
1123
|
+
role?: import("react-native").Role | undefined;
|
|
1124
|
+
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
1125
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
1126
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
1127
|
+
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
1128
|
+
screenReaderFocusable?: boolean | undefined | undefined;
|
|
1129
|
+
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
1130
|
+
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
1131
|
+
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
1132
|
+
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
1133
|
+
onMagicTap?: (() => void) | undefined | undefined;
|
|
1134
|
+
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
1135
|
+
accessibilityLanguage?: string | undefined | undefined;
|
|
1136
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
1137
|
+
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
1138
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
1139
|
+
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | undefined | undefined;
|
|
1441
1140
|
extraData?: any | undefined;
|
|
1442
1141
|
getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1443
1142
|
length: number;
|
|
1444
1143
|
offset: number;
|
|
1445
1144
|
index: number;
|
|
1446
|
-
}) |
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
keyExtractor?: ((item: unknown, index: number) => string) | import("react-native-reanimated").SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
|
|
1454
|
-
legacyImplementation?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1455
|
-
numColumns?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1456
|
-
onRefresh?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | null | undefined> | null | undefined;
|
|
1145
|
+
}) | undefined;
|
|
1146
|
+
initialNumToRender?: number | undefined | undefined;
|
|
1147
|
+
initialScrollIndex?: number | null | undefined | undefined;
|
|
1148
|
+
keyExtractor?: ((item: unknown, index: number) => string) | undefined;
|
|
1149
|
+
legacyImplementation?: boolean | undefined | undefined;
|
|
1150
|
+
numColumns?: number | undefined | undefined;
|
|
1151
|
+
onRefresh?: (() => void) | null | undefined | undefined;
|
|
1457
1152
|
onViewableItemsChanged?: ((info: {
|
|
1458
1153
|
viewableItems: import("react-native").ViewToken<unknown>[];
|
|
1459
1154
|
changed: import("react-native").ViewToken<unknown>[];
|
|
1460
|
-
}) => void) |
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1155
|
+
}) => void) | null | undefined;
|
|
1156
|
+
refreshing?: boolean | null | undefined | undefined;
|
|
1157
|
+
renderItem?: import("react-native").ListRenderItem<unknown> | null | undefined;
|
|
1158
|
+
viewabilityConfig?: import("react-native").ViewabilityConfig | undefined;
|
|
1159
|
+
fadingEdgeLength?: number | {
|
|
1160
|
+
start: number;
|
|
1161
|
+
end: number;
|
|
1162
|
+
} | undefined | undefined;
|
|
1163
|
+
ItemSeparatorComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
|
|
1164
|
+
ListEmptyComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
|
|
1165
|
+
ListFooterComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
|
|
1166
|
+
ListHeaderComponent?: import("react").ComponentType<any> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | null | undefined;
|
|
1167
|
+
debug?: boolean | undefined | undefined;
|
|
1168
|
+
disableVirtualization?: boolean | undefined | undefined;
|
|
1169
|
+
getItem?: ((data: any, index: number) => unknown) | undefined;
|
|
1170
|
+
getItemCount?: ((data: any) => number) | undefined | undefined;
|
|
1171
|
+
inverted?: boolean | null | undefined | undefined;
|
|
1172
|
+
maxToRenderPerBatch?: number | undefined | undefined;
|
|
1477
1173
|
onEndReached?: ((info: {
|
|
1478
1174
|
distanceFromEnd: number;
|
|
1479
|
-
}) => void) |
|
|
1480
|
-
|
|
1481
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1482
|
-
onEndReachedThreshold?: number | import("react-native-reanimated").SharedValue<number | null | undefined> | null | undefined;
|
|
1175
|
+
}) => void) | null | undefined | undefined;
|
|
1176
|
+
onEndReachedThreshold?: number | null | undefined | undefined;
|
|
1483
1177
|
onScrollToIndexFailed?: ((info: {
|
|
1484
1178
|
index: number;
|
|
1485
1179
|
highestMeasuredFrameIndex: number;
|
|
1486
1180
|
averageItemLength: number;
|
|
1487
|
-
}) => void) |
|
|
1488
|
-
index: number;
|
|
1489
|
-
highestMeasuredFrameIndex: number;
|
|
1490
|
-
averageItemLength: number;
|
|
1491
|
-
}) => void) | undefined> | undefined;
|
|
1181
|
+
}) => void) | undefined | undefined;
|
|
1492
1182
|
onStartReached?: ((info: {
|
|
1493
1183
|
distanceFromStart: number;
|
|
1494
|
-
}) => void) |
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1184
|
+
}) => void) | null | undefined | undefined;
|
|
1185
|
+
onStartReachedThreshold?: number | null | undefined | undefined;
|
|
1186
|
+
progressViewOffset?: number | undefined | undefined;
|
|
1187
|
+
renderScrollComponent?: ((props: import("react-native").ScrollViewProps) => React.ReactElement<import("react-native").ScrollViewProps>) | undefined | undefined;
|
|
1188
|
+
updateCellsBatchingPeriod?: number | undefined | undefined;
|
|
1189
|
+
viewabilityConfigCallbackPairs?: import("react-native").ViewabilityConfigCallbackPairs | undefined;
|
|
1190
|
+
windowSize?: number | undefined | undefined;
|
|
1191
|
+
CellRendererComponent?: import("react").ComponentType<import("react-native").CellRendererProps<unknown>> | null | undefined;
|
|
1192
|
+
innerViewRef?: import("react").RefObject<View> | undefined;
|
|
1193
|
+
scrollViewRef?: import("react").RefObject<ScrollView> | undefined;
|
|
1194
|
+
decelerationRate?: "fast" | "normal" | number | undefined | undefined;
|
|
1195
|
+
invertStickyHeaders?: boolean | undefined | undefined;
|
|
1196
|
+
keyboardDismissMode?: "none" | "interactive" | "on-drag" | undefined | undefined;
|
|
1197
|
+
onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | undefined | undefined;
|
|
1198
|
+
onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1199
|
+
onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1200
|
+
onScrollEndDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1201
|
+
onMomentumScrollEnd?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1202
|
+
onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1203
|
+
pagingEnabled?: boolean | undefined | undefined;
|
|
1204
|
+
scrollEnabled?: boolean | undefined | undefined;
|
|
1205
|
+
showsHorizontalScrollIndicator?: boolean | undefined | undefined;
|
|
1206
|
+
showsVerticalScrollIndicator?: boolean | undefined | undefined;
|
|
1207
|
+
stickyHeaderHiddenOnScroll?: boolean | undefined | undefined;
|
|
1208
|
+
refreshControl?: import("react").ReactElement<import("react-native").RefreshControlProps, string | import("react").JSXElementConstructor<any>> | undefined;
|
|
1209
|
+
snapToInterval?: number | undefined | undefined;
|
|
1210
|
+
snapToOffsets?: number[] | undefined | undefined;
|
|
1211
|
+
snapToStart?: boolean | undefined | undefined;
|
|
1212
|
+
snapToEnd?: boolean | undefined | undefined;
|
|
1213
|
+
stickyHeaderIndices?: number[] | undefined | undefined;
|
|
1214
|
+
disableIntervalMomentum?: boolean | undefined | undefined;
|
|
1215
|
+
disableScrollViewPanResponder?: boolean | undefined | undefined;
|
|
1216
|
+
StickyHeaderComponent?: import("react").ComponentType<any> | undefined;
|
|
1217
|
+
alwaysBounceHorizontal?: boolean | undefined | undefined;
|
|
1218
|
+
alwaysBounceVertical?: boolean | undefined | undefined;
|
|
1219
|
+
automaticallyAdjustContentInsets?: boolean | undefined | undefined;
|
|
1220
|
+
automaticallyAdjustKeyboardInsets?: boolean | undefined | undefined;
|
|
1221
|
+
automaticallyAdjustsScrollIndicatorInsets?: boolean | undefined | undefined;
|
|
1222
|
+
bounces?: boolean | undefined | undefined;
|
|
1223
|
+
bouncesZoom?: boolean | undefined | undefined;
|
|
1224
|
+
canCancelContentTouches?: boolean | undefined | undefined;
|
|
1225
|
+
centerContent?: boolean | undefined | undefined;
|
|
1226
|
+
contentInset?: import("react-native").Insets | undefined;
|
|
1227
|
+
contentOffset?: import("react-native").PointProp | undefined;
|
|
1228
|
+
contentInsetAdjustmentBehavior?: "automatic" | "scrollableAxes" | "never" | "always" | undefined | undefined;
|
|
1229
|
+
directionalLockEnabled?: boolean | undefined | undefined;
|
|
1230
|
+
maintainVisibleContentPosition?: null | {
|
|
1231
|
+
autoscrollToTopThreshold?: number | null | undefined;
|
|
1232
|
+
minIndexForVisible: number;
|
|
1233
|
+
} | undefined | undefined;
|
|
1234
|
+
maximumZoomScale?: number | undefined | undefined;
|
|
1235
|
+
minimumZoomScale?: number | undefined | undefined;
|
|
1236
|
+
onScrollAnimationEnd?: (() => void) | undefined | undefined;
|
|
1237
|
+
pinchGestureEnabled?: boolean | undefined | undefined;
|
|
1238
|
+
scrollEventThrottle?: number | undefined | undefined;
|
|
1239
|
+
scrollIndicatorInsets?: import("react-native").Insets | undefined;
|
|
1240
|
+
scrollToOverflowEnabled?: boolean | undefined | undefined;
|
|
1241
|
+
scrollsToTop?: boolean | undefined | undefined;
|
|
1242
|
+
snapToAlignment?: "start" | "center" | "end" | undefined | undefined;
|
|
1243
|
+
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined | undefined;
|
|
1244
|
+
zoomScale?: number | undefined | undefined;
|
|
1245
|
+
endFillColor?: import("react-native").ColorValue | undefined;
|
|
1246
|
+
scrollPerfTag?: string | undefined | undefined;
|
|
1247
|
+
overScrollMode?: "auto" | "always" | "never" | undefined | undefined;
|
|
1248
|
+
nestedScrollEnabled?: boolean | undefined | undefined;
|
|
1249
|
+
persistentScrollbar?: boolean | undefined | undefined;
|
|
1250
|
+
}>> | undefined;
|
|
1251
|
+
} & {
|
|
1252
|
+
sharedTransitionTag?: string;
|
|
1253
|
+
sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
|
|
1516
1254
|
} & {
|
|
1517
1255
|
styleId?: string;
|
|
1518
1256
|
sharedBoundTag?: string;
|