react-native-screen-transitions 1.2.0 → 2.0.1
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/LICENSE +21 -0
- package/README.md +211 -156
- package/lib/commonjs/__tests__ /geometry.test.js +178 -0
- package/lib/commonjs/__tests__ /geometry.test.js.map +1 -0
- package/lib/commonjs/components/bounds-activator.js +33 -0
- package/lib/commonjs/components/bounds-activator.js.map +1 -0
- package/lib/commonjs/components/controllers/screen-lifecycle.js +66 -0
- package/lib/commonjs/components/controllers/screen-lifecycle.js.map +1 -0
- package/lib/commonjs/components/create-transition-aware-component.js +96 -0
- package/lib/commonjs/components/create-transition-aware-component.js.map +1 -0
- package/lib/commonjs/components/root-transition-aware.js +56 -0
- package/lib/commonjs/components/root-transition-aware.js.map +1 -0
- package/lib/commonjs/configs/index.js +12 -0
- package/lib/commonjs/configs/index.js.map +1 -0
- package/lib/commonjs/configs/presets.js +206 -0
- package/lib/commonjs/configs/presets.js.map +1 -0
- package/lib/commonjs/configs/specs.js +14 -0
- package/lib/commonjs/configs/specs.js.map +1 -0
- package/lib/commonjs/hooks/animation/use-associated-style.js +36 -0
- package/lib/commonjs/hooks/animation/use-associated-style.js.map +1 -0
- package/lib/commonjs/hooks/animation/use-screen-animation.js +120 -0
- package/lib/commonjs/hooks/animation/use-screen-animation.js.map +1 -0
- package/lib/commonjs/hooks/bounds/use-bound-measurer.js +52 -0
- package/lib/commonjs/hooks/bounds/use-bound-measurer.js.map +1 -0
- package/lib/commonjs/hooks/gestures/use-build-gestures.js +239 -0
- package/lib/commonjs/hooks/gestures/use-build-gestures.js.map +1 -0
- package/lib/commonjs/hooks/gestures/use-scroll-progress.js +57 -0
- package/lib/commonjs/hooks/gestures/use-scroll-progress.js.map +1 -0
- package/lib/commonjs/hooks/use-stable-callback.js +17 -0
- package/lib/commonjs/hooks/use-stable-callback.js.map +1 -0
- package/lib/commonjs/index.js +37 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/navigators/createNativeStackNavigator.js +68 -0
- package/lib/commonjs/integrations/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/utils/debounce.js +16 -0
- package/lib/commonjs/integrations/native-stack/utils/debounce.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/utils/getModalRoutesKeys.js +17 -0
- package/lib/commonjs/integrations/native-stack/utils/getModalRoutesKeys.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js +18 -0
- package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js +22 -0
- package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/utils/useInvalidPreventRemoveError.js +25 -0
- package/lib/commonjs/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/FontProcessor.js +10 -0
- package/lib/commonjs/integrations/native-stack/views/FontProcessor.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js +18 -0
- package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/FooterComponent.js +17 -0
- package/lib/commonjs/integrations/native-stack/views/FooterComponent.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/NativeStackView.js +138 -0
- package/lib/commonjs/integrations/native-stack/views/NativeStackView.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js +497 -0
- package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js.map +1 -0
- package/lib/commonjs/integrations/native-stack/views/useHeaderConfigProps.js +203 -0
- package/lib/commonjs/integrations/native-stack/views/useHeaderConfigProps.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/commonjs/providers/gestures.js +64 -0
- package/lib/commonjs/providers/gestures.js.map +1 -0
- package/lib/commonjs/providers/keys.js +35 -0
- package/lib/commonjs/providers/keys.js.map +1 -0
- package/lib/commonjs/stores/animations.js +39 -0
- package/lib/commonjs/stores/animations.js.map +1 -0
- package/lib/commonjs/stores/bounds.js +64 -0
- package/lib/commonjs/stores/bounds.js.map +1 -0
- package/lib/commonjs/stores/gestures.js +38 -0
- package/lib/commonjs/stores/gestures.js.map +1 -0
- package/lib/commonjs/stores/navigator-dismiss-state.js +23 -0
- package/lib/commonjs/stores/navigator-dismiss-state.js.map +1 -0
- package/lib/commonjs/stores/utils/reset-stores-for-screen.js +20 -0
- package/lib/commonjs/stores/utils/reset-stores-for-screen.js.map +1 -0
- package/lib/commonjs/types/animation.js +6 -0
- package/lib/commonjs/types/animation.js.map +1 -0
- package/lib/commonjs/types/bounds.js +6 -0
- package/lib/commonjs/types/bounds.js.map +1 -0
- package/lib/commonjs/types/core.js +6 -0
- package/lib/commonjs/types/core.js.map +1 -0
- package/lib/commonjs/types/gesture.js +2 -0
- package/lib/commonjs/types/gesture.js.map +1 -0
- package/lib/commonjs/types/navigator.js +6 -0
- package/lib/commonjs/types/navigator.js.map +1 -0
- package/lib/commonjs/types/utils.js +2 -0
- package/lib/commonjs/types/utils.js.map +1 -0
- package/lib/commonjs/utils/animation/animate.js +18 -0
- package/lib/commonjs/utils/animation/animate.js.map +1 -0
- package/lib/commonjs/utils/animation/run-transition.js +48 -0
- package/lib/commonjs/utils/animation/run-transition.js.map +1 -0
- package/lib/commonjs/utils/bounds/_types/builder.js +6 -0
- package/lib/commonjs/utils/bounds/_types/builder.js.map +1 -0
- package/lib/commonjs/utils/bounds/_types/geometry.js +2 -0
- package/lib/commonjs/utils/bounds/_types/geometry.js.map +1 -0
- package/lib/commonjs/utils/bounds/_types/get-bounds.js +6 -0
- package/lib/commonjs/utils/bounds/_types/get-bounds.js.map +1 -0
- package/lib/commonjs/utils/bounds/build-bound-styles.js +145 -0
- package/lib/commonjs/utils/bounds/build-bound-styles.js.map +1 -0
- package/lib/commonjs/utils/bounds/constants.js +31 -0
- package/lib/commonjs/utils/bounds/constants.js.map +1 -0
- package/lib/commonjs/utils/bounds/flatten-styles.js +27 -0
- package/lib/commonjs/utils/bounds/flatten-styles.js.map +1 -0
- package/lib/commonjs/utils/bounds/geometry.js +94 -0
- package/lib/commonjs/utils/bounds/geometry.js.map +1 -0
- package/lib/commonjs/utils/bounds/get-bounds.js +51 -0
- package/lib/commonjs/utils/bounds/get-bounds.js.map +1 -0
- package/lib/commonjs/utils/bounds/index.js +38 -0
- package/lib/commonjs/utils/bounds/index.js.map +1 -0
- package/lib/commonjs/utils/bounds/style-composers.js +199 -0
- package/lib/commonjs/utils/bounds/style-composers.js.map +1 -0
- package/lib/commonjs/utils/gesture/apply-gesture-activation-criteria.js +81 -0
- package/lib/commonjs/utils/gesture/apply-gesture-activation-criteria.js.map +1 -0
- package/lib/commonjs/utils/gesture/map-gesture-to-progress.js +17 -0
- package/lib/commonjs/utils/gesture/map-gesture-to-progress.js.map +1 -0
- package/lib/commonjs/utils/gesture/normalize-gesture-translation.js +21 -0
- package/lib/commonjs/utils/gesture/normalize-gesture-translation.js.map +1 -0
- package/lib/commonjs/utils/index.js +17 -0
- package/lib/commonjs/utils/index.js.map +1 -0
- package/lib/module/__tests__ /geometry.test.js +178 -0
- package/lib/module/__tests__ /geometry.test.js.map +1 -0
- package/lib/module/components/bounds-activator.js +28 -0
- package/lib/module/components/bounds-activator.js.map +1 -0
- package/lib/module/components/controllers/screen-lifecycle.js +60 -0
- package/lib/module/components/controllers/screen-lifecycle.js.map +1 -0
- package/lib/module/components/create-transition-aware-component.js +91 -0
- package/lib/module/components/create-transition-aware-component.js.map +1 -0
- package/lib/module/components/root-transition-aware.js +51 -0
- package/lib/module/components/root-transition-aware.js.map +1 -0
- package/lib/module/configs/index.js +5 -0
- package/lib/module/configs/index.js.map +1 -0
- package/lib/module/configs/presets.js +197 -0
- package/lib/module/configs/presets.js.map +1 -0
- package/lib/module/configs/specs.js +10 -0
- package/lib/module/configs/specs.js.map +1 -0
- package/lib/module/hooks/animation/use-associated-style.js +32 -0
- package/lib/module/hooks/animation/use-associated-style.js.map +1 -0
- package/lib/module/hooks/animation/use-screen-animation.js +115 -0
- package/lib/module/hooks/animation/use-screen-animation.js.map +1 -0
- package/lib/module/hooks/bounds/use-bound-measurer.js +47 -0
- package/lib/module/hooks/bounds/use-bound-measurer.js.map +1 -0
- package/lib/module/hooks/gestures/use-build-gestures.js +234 -0
- package/lib/module/hooks/gestures/use-build-gestures.js.map +1 -0
- package/lib/module/hooks/gestures/use-scroll-progress.js +52 -0
- package/lib/module/hooks/gestures/use-scroll-progress.js.map +1 -0
- package/lib/module/hooks/use-stable-callback.js +13 -0
- package/lib/module/hooks/use-stable-callback.js.map +1 -0
- package/lib/module/index.js +21 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/integrations/native-stack/navigators/createNativeStackNavigator.js +63 -0
- package/lib/module/integrations/native-stack/navigators/createNativeStackNavigator.js.map +1 -0
- package/lib/module/integrations/native-stack/utils/debounce.js +12 -0
- package/lib/module/integrations/native-stack/utils/debounce.js.map +1 -0
- package/lib/module/integrations/native-stack/utils/getModalRoutesKeys.js +12 -0
- package/lib/module/integrations/native-stack/utils/getModalRoutesKeys.js.map +1 -0
- package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js +12 -0
- package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -0
- package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js +17 -0
- package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -0
- package/lib/module/integrations/native-stack/utils/useInvalidPreventRemoveError.js +20 -0
- package/lib/module/integrations/native-stack/utils/useInvalidPreventRemoveError.js.map +1 -0
- package/lib/module/integrations/native-stack/views/FontProcessor.js +6 -0
- package/lib/module/integrations/native-stack/views/FontProcessor.js.map +1 -0
- package/lib/module/integrations/native-stack/views/FontProcessor.native.js +12 -0
- package/lib/module/integrations/native-stack/views/FontProcessor.native.js.map +1 -0
- package/lib/module/integrations/native-stack/views/FooterComponent.js +13 -0
- package/lib/module/integrations/native-stack/views/FooterComponent.js.map +1 -0
- package/lib/module/integrations/native-stack/views/NativeStackView.js +133 -0
- package/lib/module/integrations/native-stack/views/NativeStackView.js.map +1 -0
- package/lib/module/integrations/native-stack/views/NativeStackView.native.js +492 -0
- package/lib/module/integrations/native-stack/views/NativeStackView.native.js.map +1 -0
- package/lib/module/integrations/native-stack/views/useHeaderConfigProps.js +199 -0
- package/lib/module/integrations/native-stack/views/useHeaderConfigProps.js.map +1 -0
- package/lib/module/providers/gestures.js +58 -0
- package/lib/module/providers/gestures.js.map +1 -0
- package/lib/module/providers/keys.js +29 -0
- package/lib/module/providers/keys.js.map +1 -0
- package/lib/module/stores/animations.js +33 -0
- package/lib/module/stores/animations.js.map +1 -0
- package/lib/module/stores/bounds.js +60 -0
- package/lib/module/stores/bounds.js.map +1 -0
- package/lib/module/stores/gestures.js +34 -0
- package/lib/module/stores/gestures.js.map +1 -0
- package/lib/module/stores/navigator-dismiss-state.js +19 -0
- package/lib/module/stores/navigator-dismiss-state.js.map +1 -0
- package/lib/module/stores/utils/reset-stores-for-screen.js +16 -0
- package/lib/module/stores/utils/reset-stores-for-screen.js.map +1 -0
- package/lib/module/types/animation.js +4 -0
- package/lib/module/types/animation.js.map +1 -0
- package/lib/module/types/bounds.js +4 -0
- package/lib/module/types/bounds.js.map +1 -0
- package/lib/module/types/core.js +4 -0
- package/lib/module/types/core.js.map +1 -0
- package/lib/module/types/gesture.js +2 -0
- package/lib/module/types/gesture.js.map +1 -0
- package/lib/module/types/navigator.js +4 -0
- package/lib/module/types/navigator.js.map +1 -0
- package/lib/module/types/utils.js +2 -0
- package/lib/module/types/utils.js.map +1 -0
- package/lib/module/utils/animation/animate.js +13 -0
- package/lib/module/utils/animation/animate.js.map +1 -0
- package/lib/module/utils/animation/run-transition.js +43 -0
- package/lib/module/utils/animation/run-transition.js.map +1 -0
- package/lib/module/utils/bounds/_types/builder.js +4 -0
- package/lib/module/utils/bounds/_types/builder.js.map +1 -0
- package/lib/module/utils/bounds/_types/geometry.js +2 -0
- package/lib/module/utils/bounds/_types/geometry.js.map +1 -0
- package/lib/module/utils/bounds/_types/get-bounds.js +4 -0
- package/lib/module/utils/bounds/_types/get-bounds.js.map +1 -0
- package/lib/module/utils/bounds/build-bound-styles.js +141 -0
- package/lib/module/utils/bounds/build-bound-styles.js.map +1 -0
- package/lib/module/utils/bounds/constants.js +26 -0
- package/lib/module/utils/bounds/constants.js.map +1 -0
- package/lib/module/utils/bounds/flatten-styles.js +23 -0
- package/lib/module/utils/bounds/flatten-styles.js.map +1 -0
- package/lib/module/utils/bounds/geometry.js +89 -0
- package/lib/module/utils/bounds/geometry.js.map +1 -0
- package/lib/module/utils/bounds/get-bounds.js +46 -0
- package/lib/module/utils/bounds/get-bounds.js.map +1 -0
- package/lib/module/utils/bounds/index.js +33 -0
- package/lib/module/utils/bounds/index.js.map +1 -0
- package/lib/module/utils/bounds/style-composers.js +191 -0
- package/lib/module/utils/bounds/style-composers.js.map +1 -0
- package/lib/module/utils/gesture/apply-gesture-activation-criteria.js +76 -0
- package/lib/module/utils/gesture/apply-gesture-activation-criteria.js.map +1 -0
- package/lib/module/utils/gesture/map-gesture-to-progress.js +12 -0
- package/lib/module/utils/gesture/map-gesture-to-progress.js.map +1 -0
- package/lib/module/utils/gesture/normalize-gesture-translation.js +16 -0
- package/lib/module/utils/gesture/normalize-gesture-translation.js.map +1 -0
- package/lib/module/utils/index.js +4 -0
- package/lib/module/utils/index.js.map +1 -0
- package/lib/typescript/components/bounds-activator.d.ts +8 -0
- package/lib/typescript/components/bounds-activator.d.ts.map +1 -0
- package/lib/typescript/components/controllers/screen-lifecycle.d.ts +6 -0
- package/lib/typescript/components/controllers/screen-lifecycle.d.ts.map +1 -0
- package/lib/typescript/components/create-transition-aware-component.d.ts +9 -0
- package/lib/typescript/components/create-transition-aware-component.d.ts.map +1 -0
- package/lib/typescript/components/root-transition-aware.d.ts +6 -0
- package/lib/typescript/components/root-transition-aware.d.ts.map +1 -0
- package/lib/typescript/configs/index.d.ts +3 -0
- package/lib/typescript/configs/index.d.ts.map +1 -0
- package/lib/typescript/configs/presets.d.ts +9 -0
- package/lib/typescript/configs/presets.d.ts.map +1 -0
- package/lib/typescript/configs/specs.d.ts +3 -0
- package/lib/typescript/configs/specs.d.ts.map +1 -0
- package/lib/typescript/hooks/animation/use-associated-style.d.ts +11 -0
- package/lib/typescript/hooks/animation/use-associated-style.d.ts.map +1 -0
- package/lib/typescript/hooks/animation/use-screen-animation.d.ts +7 -0
- package/lib/typescript/hooks/animation/use-screen-animation.d.ts.map +1 -0
- package/lib/typescript/hooks/bounds/use-bound-measurer.d.ts +18 -0
- package/lib/typescript/hooks/bounds/use-bound-measurer.d.ts.map +1 -0
- package/lib/typescript/hooks/gestures/use-build-gestures.d.ts +11 -0
- package/lib/typescript/hooks/gestures/use-build-gestures.d.ts.map +1 -0
- package/lib/typescript/hooks/gestures/use-scroll-progress.d.ts +14 -0
- package/lib/typescript/hooks/gestures/use-scroll-progress.d.ts.map +1 -0
- package/lib/typescript/hooks/use-stable-callback.d.ts +2 -0
- package/lib/typescript/hooks/use-stable-callback.d.ts.map +1 -0
- package/lib/typescript/index.d.ts +1275 -0
- package/lib/typescript/index.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts +16 -0
- package/lib/typescript/integrations/native-stack/navigators/createNativeStackNavigator.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/utils/debounce.d.ts +2 -0
- package/lib/typescript/integrations/native-stack/utils/debounce.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts +4 -0
- package/lib/typescript/integrations/native-stack/utils/getModalRoutesKeys.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts +5 -0
- package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts +6 -0
- package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts +3 -0
- package/lib/typescript/integrations/native-stack/utils/useInvalidPreventRemoveError.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts +2 -0
- package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts +2 -0
- package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/FooterComponent.d.ts +7 -0
- package/lib/typescript/integrations/native-stack/views/FooterComponent.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts +11 -0
- package/lib/typescript/integrations/native-stack/views/NativeStackView.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts +11 -0
- package/lib/typescript/integrations/native-stack/views/NativeStackView.native.d.ts.map +1 -0
- package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts +44 -0
- package/lib/typescript/integrations/native-stack/views/useHeaderConfigProps.d.ts.map +1 -0
- package/lib/typescript/providers/gestures.d.ts +22 -0
- package/lib/typescript/providers/gestures.d.ts.map +1 -0
- package/lib/typescript/providers/keys.d.ts +16 -0
- package/lib/typescript/providers/keys.d.ts.map +1 -0
- package/lib/typescript/stores/animations.d.ts +17 -0
- package/lib/typescript/stores/animations.d.ts.map +1 -0
- package/lib/typescript/stores/bounds.d.ts +21 -0
- package/lib/typescript/stores/bounds.d.ts.map +1 -0
- package/lib/typescript/stores/gestures.d.ts +21 -0
- package/lib/typescript/stores/gestures.d.ts.map +1 -0
- package/lib/typescript/stores/navigator-dismiss-state.d.ts +7 -0
- package/lib/typescript/stores/navigator-dismiss-state.d.ts.map +1 -0
- package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts +6 -0
- package/lib/typescript/stores/utils/reset-stores-for-screen.d.ts.map +1 -0
- package/lib/typescript/types/animation.d.ts +65 -0
- package/lib/typescript/types/animation.d.ts.map +1 -0
- package/lib/typescript/types/bounds.d.ts +73 -0
- package/lib/typescript/types/bounds.d.ts.map +1 -0
- package/lib/typescript/types/core.d.ts +47 -0
- package/lib/typescript/types/core.d.ts.map +1 -0
- package/lib/typescript/types/gesture.d.ts +28 -0
- package/lib/typescript/types/gesture.d.ts.map +1 -0
- package/lib/typescript/types/navigator.d.ts +683 -0
- package/lib/typescript/types/navigator.d.ts.map +1 -0
- package/lib/typescript/types/utils.d.ts +5 -0
- package/lib/typescript/types/utils.d.ts.map +1 -0
- package/lib/typescript/utils/animation/animate.d.ts +4 -0
- package/lib/typescript/utils/animation/animate.d.ts.map +1 -0
- package/lib/typescript/utils/animation/run-transition.d.ts +11 -0
- package/lib/typescript/utils/animation/run-transition.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/_types/builder.d.ts +36 -0
- package/lib/typescript/utils/bounds/_types/builder.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/_types/geometry.d.ts +16 -0
- package/lib/typescript/utils/bounds/_types/geometry.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/_types/get-bounds.d.ts +10 -0
- package/lib/typescript/utils/bounds/_types/get-bounds.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/build-bound-styles.d.ts +4 -0
- package/lib/typescript/utils/bounds/build-bound-styles.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/constants.d.ts +7 -0
- package/lib/typescript/utils/bounds/constants.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/flatten-styles.d.ts +2 -0
- package/lib/typescript/utils/bounds/flatten-styles.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/geometry.d.ts +24 -0
- package/lib/typescript/utils/bounds/geometry.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/get-bounds.d.ts +4 -0
- package/lib/typescript/utils/bounds/get-bounds.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/index.d.ts +15 -0
- package/lib/typescript/utils/bounds/index.d.ts.map +1 -0
- package/lib/typescript/utils/bounds/style-composers.d.ts +40 -0
- package/lib/typescript/utils/bounds/style-composers.d.ts.map +1 -0
- package/lib/typescript/utils/gesture/apply-gesture-activation-criteria.d.ts +17 -0
- package/lib/typescript/utils/gesture/apply-gesture-activation-criteria.d.ts.map +1 -0
- package/lib/typescript/utils/gesture/map-gesture-to-progress.d.ts +5 -0
- package/lib/typescript/utils/gesture/map-gesture-to-progress.d.ts.map +1 -0
- package/lib/typescript/utils/gesture/normalize-gesture-translation.d.ts +6 -0
- package/lib/typescript/utils/gesture/normalize-gesture-translation.d.ts.map +1 -0
- package/lib/typescript/utils/index.d.ts +2 -0
- package/lib/typescript/utils/index.d.ts.map +1 -0
- package/package.json +67 -54
- package/dist/index.d.mts +0 -1513
- package/dist/index.d.ts +0 -1513
- package/dist/index.js +0 -1283
- package/dist/index.js.map +0 -1
- package/dist/index.mjs +0 -1279
- package/dist/index.mjs.map +0 -1
package/dist/index.d.mts
DELETED
|
@@ -1,1513 +0,0 @@
|
|
|
1
|
-
import * as _react_navigation_native from '@react-navigation/native';
|
|
2
|
-
import { ScreenListeners, NavigationState, EventMapBase, RouteProp, ParamListBase, NavigatorTypeBagBase, StackNavigationState, TypedNavigator } from '@react-navigation/native';
|
|
3
|
-
import * as react_native from 'react-native';
|
|
4
|
-
import { ScaledSize, View } from 'react-native';
|
|
5
|
-
import * as react_native_reanimated from 'react-native-reanimated';
|
|
6
|
-
import { SharedValue, StyleProps, WithSpringConfig, WithTimingConfig, AnimatedProps } from 'react-native-reanimated';
|
|
7
|
-
import { EdgeInsets } from 'react-native-safe-area-context';
|
|
8
|
-
import * as react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe from 'react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe';
|
|
9
|
-
import * as react from 'react';
|
|
10
|
-
import react__default, { ComponentType } from 'react';
|
|
11
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
12
|
-
import { NativeStackNavigationOptions, NativeStackNavigationEventMap, NativeStackNavigationProp, NativeStackNavigatorProps } from '@react-navigation/native-stack';
|
|
13
|
-
|
|
14
|
-
type Any = any;
|
|
15
|
-
interface TransitionConfig {
|
|
16
|
-
/**
|
|
17
|
-
* The user-provided function to calculate styles based on animation progress.
|
|
18
|
-
*/
|
|
19
|
-
screenStyleInterpolator?: ScreenStyleInterpolator;
|
|
20
|
-
/**
|
|
21
|
-
* The Reanimated animation config for opening and closing transitions.
|
|
22
|
-
*/
|
|
23
|
-
transitionSpec?: TransitionSpec;
|
|
24
|
-
/**
|
|
25
|
-
* Whether the gesture is enabled.
|
|
26
|
-
*/
|
|
27
|
-
gestureEnabled?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* The direction of the swipe gesture used to dismiss the screen.
|
|
30
|
-
*/
|
|
31
|
-
gestureDirection?: GestureDirection | GestureDirection[];
|
|
32
|
-
/**
|
|
33
|
-
* How much the gesture's final velocity impacts the dismiss decision.
|
|
34
|
-
*/
|
|
35
|
-
gestureVelocityImpact?: number;
|
|
36
|
-
/**
|
|
37
|
-
* Distance threshold for gesture recognition throughout the screen.
|
|
38
|
-
*/
|
|
39
|
-
gestureResponseDistance?: number;
|
|
40
|
-
/**
|
|
41
|
-
* Skip the default screen options.
|
|
42
|
-
*/
|
|
43
|
-
skipDefaultScreenOptions?: boolean;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* The comprehensive props object passed to a `ScreenStyleInterpolator` function.
|
|
47
|
-
* It contains all the necessary data to calculate styles for a transition.
|
|
48
|
-
*/
|
|
49
|
-
interface ScreenInterpolationProps {
|
|
50
|
-
/** Values for the screen that is the focus of the transition (e.g., the one opening). */
|
|
51
|
-
current: {
|
|
52
|
-
/** The programmatic animation progress of the screen (a `SharedValue` from 0 to 1). */
|
|
53
|
-
progress: SharedValue<number>;
|
|
54
|
-
/** Live gesture values for the screen. */
|
|
55
|
-
gesture: GestureValues;
|
|
56
|
-
};
|
|
57
|
-
/** Values for the screen immediately behind the current one in the screen. */
|
|
58
|
-
next: {
|
|
59
|
-
/** The programmatic animation progress of the next screen. */
|
|
60
|
-
progress: SharedValue<number>;
|
|
61
|
-
/** Live gesture values for the next screen. */
|
|
62
|
-
gesture: GestureValues;
|
|
63
|
-
} | undefined;
|
|
64
|
-
/** Layout measurements for the screen. */
|
|
65
|
-
layouts: {
|
|
66
|
-
/** The `width` and `height` of the screen container. */
|
|
67
|
-
screen: ScaledSize;
|
|
68
|
-
};
|
|
69
|
-
/** The safe area insets for the screen. */
|
|
70
|
-
insets: EdgeInsets;
|
|
71
|
-
/** A flag indicating if the current screen is in the process of closing. */
|
|
72
|
-
closing: boolean;
|
|
73
|
-
}
|
|
74
|
-
type GestureValues = {
|
|
75
|
-
/**
|
|
76
|
-
* A `SharedValue` indicating if the user's finger is on the screen (0 or 1).
|
|
77
|
-
*/
|
|
78
|
-
isDragging: SharedValue<number>;
|
|
79
|
-
/**
|
|
80
|
-
* The live horizontal translation of the gesture.
|
|
81
|
-
*/
|
|
82
|
-
x: SharedValue<number>;
|
|
83
|
-
/**
|
|
84
|
-
* The live vertical translation of the gesture.
|
|
85
|
-
*/
|
|
86
|
-
y: SharedValue<number>;
|
|
87
|
-
/**
|
|
88
|
-
* The live normalized horizontal translation of the gesture (-1 to 1).
|
|
89
|
-
*/
|
|
90
|
-
normalizedX: SharedValue<number>;
|
|
91
|
-
/**
|
|
92
|
-
* The live normalized vertical translation of the gesture (-1 to 1).
|
|
93
|
-
*/
|
|
94
|
-
normalizedY: SharedValue<number>;
|
|
95
|
-
/**
|
|
96
|
-
* A flag indicating if the screen is in the process of dismissing.
|
|
97
|
-
*/
|
|
98
|
-
isDismissing: SharedValue<number>;
|
|
99
|
-
};
|
|
100
|
-
type ScreenStyleInterpolator = (props: ScreenInterpolationProps) => TransitionInterpolatedStyle;
|
|
101
|
-
type TransitionInterpolatedStyle = {
|
|
102
|
-
/**
|
|
103
|
-
* Animated style for the main screen view. Styles are only applied when Transition.View is present.
|
|
104
|
-
*/
|
|
105
|
-
contentStyle?: StyleProps;
|
|
106
|
-
/**
|
|
107
|
-
* Animated style for a semi-transparent overlay. Styles are only applied when Transition.View is present.
|
|
108
|
-
*/
|
|
109
|
-
overlayStyle?: StyleProps;
|
|
110
|
-
};
|
|
111
|
-
/**
|
|
112
|
-
* A Reanimated animation configuration object.
|
|
113
|
-
*/
|
|
114
|
-
type AnimationConfig = WithSpringConfig | WithTimingConfig;
|
|
115
|
-
/**
|
|
116
|
-
* Defines separate animation configurations for opening and closing a screen.
|
|
117
|
-
*/
|
|
118
|
-
interface TransitionSpec {
|
|
119
|
-
open?: AnimationConfig;
|
|
120
|
-
close?: AnimationConfig;
|
|
121
|
-
}
|
|
122
|
-
type GestureDirection = "horizontal" | "horizontal-inverted" | "vertical" | "vertical-inverted" | "bidirectional";
|
|
123
|
-
type TransitionListeners = ScreenListeners<NavigationState, EventMapBase>;
|
|
124
|
-
|
|
125
|
-
interface TransitionEventHandlersProps extends TransitionConfig {
|
|
126
|
-
navigation: Any;
|
|
127
|
-
route: RouteProp<ParamListBase, string>;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
declare function createTransitionAwareComponent<P extends object>(Wrapped: ComponentType<P>): react__default.MemoExoticComponent<react__default.ForwardRefExoticComponent<AnimatedProps<P> & react__default.RefAttributes<react__default.ComponentRef<typeof Wrapped>>>>;
|
|
131
|
-
|
|
132
|
-
declare function createTransitionAwareScrollable<P extends object>(ScrollableComponent: ComponentType<P>): React.MemoExoticComponent<React.ForwardRefExoticComponent<AnimatedProps<P> & React.RefAttributes<React.ComponentRef<typeof ScrollableComponent>>>>;
|
|
133
|
-
|
|
134
|
-
declare const SlideFromTop: (config?: Partial<TransitionConfig>) => TransitionConfig;
|
|
135
|
-
declare const ZoomIn: (config?: Partial<TransitionConfig>) => TransitionConfig;
|
|
136
|
-
declare const SlideFromBottom: (config?: Partial<TransitionConfig>) => TransitionConfig;
|
|
137
|
-
declare const DraggableCard: (config?: Partial<TransitionConfig>) => TransitionConfig;
|
|
138
|
-
declare const ElasticCard: (config?: Partial<TransitionConfig> & {
|
|
139
|
-
elasticFactor?: number;
|
|
140
|
-
}) => TransitionConfig;
|
|
141
|
-
|
|
142
|
-
declare const presets_DraggableCard: typeof DraggableCard;
|
|
143
|
-
declare const presets_ElasticCard: typeof ElasticCard;
|
|
144
|
-
declare const presets_SlideFromBottom: typeof SlideFromBottom;
|
|
145
|
-
declare const presets_SlideFromTop: typeof SlideFromTop;
|
|
146
|
-
declare const presets_ZoomIn: typeof ZoomIn;
|
|
147
|
-
declare namespace presets {
|
|
148
|
-
export { presets_DraggableCard as DraggableCard, presets_ElasticCard as ElasticCard, presets_SlideFromBottom as SlideFromBottom, presets_SlideFromTop as SlideFromTop, presets_ZoomIn as ZoomIn };
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
declare const DefaultSpec: WithSpringConfig;
|
|
152
|
-
|
|
153
|
-
declare const specs_DefaultSpec: typeof DefaultSpec;
|
|
154
|
-
declare namespace specs {
|
|
155
|
-
export { specs_DefaultSpec as DefaultSpec };
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
declare const useScreenAnimation: () => ScreenInterpolationProps;
|
|
159
|
-
|
|
160
|
-
type TransitionStackNavigationEventMap = NativeStackNavigationEventMap;
|
|
161
|
-
interface TransitionStackNavigationOptions extends Omit<NativeStackNavigationOptions, keyof TransitionConfig>, TransitionConfig {
|
|
162
|
-
skipDefaultScreenOptions?: boolean;
|
|
163
|
-
}
|
|
164
|
-
type TransitionStackNavigationProp<ParamList extends ParamListBase, RouteName extends keyof ParamList = string, NavigatorID extends string | undefined = undefined> = NativeStackNavigationProp<ParamList, RouteName, NavigatorID>;
|
|
165
|
-
type TransitionStackNavigatorProps = NativeStackNavigatorProps;
|
|
166
|
-
declare function TransitionableStackNavigator({ id, initialRouteName, children, layout, screenListeners, screenOptions, screenLayout, UNSTABLE_router, ...rest }: TransitionStackNavigatorProps): react_jsx_runtime.JSX.Element;
|
|
167
|
-
declare function createTransitionableStackNavigator<const ParamList extends ParamListBase, const NavigatorID extends string | undefined = undefined, const TypeBag extends NavigatorTypeBagBase = {
|
|
168
|
-
ParamList: ParamList;
|
|
169
|
-
NavigatorID: NavigatorID;
|
|
170
|
-
State: StackNavigationState<ParamList>;
|
|
171
|
-
ScreenOptions: TransitionStackNavigationOptions;
|
|
172
|
-
EventMap: TransitionStackNavigationEventMap;
|
|
173
|
-
NavigationList: {
|
|
174
|
-
[RouteName in keyof ParamList]: TransitionStackNavigationProp<ParamList, RouteName, NavigatorID>;
|
|
175
|
-
};
|
|
176
|
-
Navigator: typeof TransitionableStackNavigator;
|
|
177
|
-
}>(): TypedNavigator<TypeBag>;
|
|
178
|
-
type TransitionStackNavigatorTypeBag<ScreenOptions = TransitionStackNavigationOptions, State = StackNavigationState<ParamListBase>, EventMap = TransitionStackNavigationEventMap> = {
|
|
179
|
-
ScreenOptions: ScreenOptions;
|
|
180
|
-
State: State;
|
|
181
|
-
EventMap: EventMap;
|
|
182
|
-
};
|
|
183
|
-
|
|
184
|
-
declare const _default: {
|
|
185
|
-
View: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
186
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
187
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
188
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
189
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
190
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
191
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
192
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
193
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
194
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
195
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
196
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
197
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
198
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
199
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
200
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
201
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
202
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
203
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
204
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
205
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
206
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
207
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
208
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
209
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
210
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
211
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
212
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
213
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
214
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
215
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
216
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
217
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
218
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
219
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
220
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
221
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
222
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
223
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
224
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
225
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
226
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
227
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
228
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
229
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
230
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
231
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
232
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
233
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
234
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
235
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
236
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
237
|
-
accessibilityActions?: readonly Readonly<{
|
|
238
|
-
name: react_native.AccessibilityActionName | string;
|
|
239
|
-
label?: string | undefined;
|
|
240
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
241
|
-
name: react_native.AccessibilityActionName | string;
|
|
242
|
-
label?: string | undefined;
|
|
243
|
-
}>[] | undefined> | undefined;
|
|
244
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
245
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
246
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
247
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
248
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
249
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
250
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
251
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
252
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
253
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
254
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
255
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
256
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
257
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
258
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
259
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
260
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
261
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
262
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
263
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
264
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
265
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
266
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
267
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
268
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
269
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
270
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
271
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
272
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
273
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
274
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
275
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
276
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
277
|
-
} & {
|
|
278
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
279
|
-
} & {
|
|
280
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
281
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
282
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
283
|
-
} & {
|
|
284
|
-
sharedTransitionTag?: string;
|
|
285
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
286
|
-
} & {
|
|
287
|
-
animatedProps?: Partial<{
|
|
288
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
289
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
290
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
291
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
292
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
293
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
294
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
295
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
296
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
297
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
298
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
299
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
300
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
301
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
302
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
303
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
304
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
305
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
306
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
307
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
308
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
309
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
310
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
311
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
312
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
313
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
314
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
315
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
316
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
317
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
318
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
319
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
320
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
321
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
322
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
323
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
324
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
325
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
326
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
327
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
328
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
329
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
330
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
331
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
332
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
333
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
334
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
335
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
336
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
337
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
338
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
339
|
-
accessibilityActions?: readonly Readonly<{
|
|
340
|
-
name: react_native.AccessibilityActionName | string;
|
|
341
|
-
label?: string | undefined;
|
|
342
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
343
|
-
name: react_native.AccessibilityActionName | string;
|
|
344
|
-
label?: string | undefined;
|
|
345
|
-
}>[] | undefined> | undefined;
|
|
346
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
347
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
348
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
349
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
350
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
351
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
352
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
353
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
354
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
355
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
356
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
357
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
358
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
359
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
360
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
361
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
362
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
363
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
364
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
365
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
366
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
367
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
368
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
369
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
370
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
371
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
372
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
373
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
374
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
375
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
376
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
377
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
378
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
379
|
-
} & {
|
|
380
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
381
|
-
} & {
|
|
382
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
383
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
384
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
385
|
-
} & {
|
|
386
|
-
sharedTransitionTag?: string;
|
|
387
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
388
|
-
}> | undefined;
|
|
389
|
-
} & react.RefAttributes<never>>>;
|
|
390
|
-
Pressable: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
391
|
-
children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
|
|
392
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
393
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
394
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
395
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
396
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
397
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
398
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
399
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
400
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
401
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
402
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
403
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
404
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
405
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
406
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
407
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
408
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
409
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
410
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
411
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
412
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
413
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
414
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
415
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
416
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
417
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
418
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
419
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
420
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
421
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
422
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
423
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
424
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
425
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
426
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
427
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
428
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
429
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
430
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
431
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
432
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
433
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
434
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
435
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
436
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
437
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
438
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
439
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
440
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
441
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
442
|
-
accessibilityActions?: readonly Readonly<{
|
|
443
|
-
name: react_native.AccessibilityActionName | string;
|
|
444
|
-
label?: string | undefined;
|
|
445
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
446
|
-
name: react_native.AccessibilityActionName | string;
|
|
447
|
-
label?: string | undefined;
|
|
448
|
-
}>[] | undefined> | undefined;
|
|
449
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
450
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
451
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
452
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
453
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
454
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
455
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
456
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
457
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
458
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
459
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
460
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
461
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
462
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
463
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
464
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
465
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
466
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
467
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
468
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
469
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
470
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
471
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
472
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
473
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
474
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
475
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
476
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
477
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
478
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
479
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
480
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
481
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
482
|
-
ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
|
|
483
|
-
key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
|
|
484
|
-
onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
|
|
485
|
-
onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
|
|
486
|
-
onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
487
|
-
onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
488
|
-
onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
489
|
-
onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
490
|
-
onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
491
|
-
onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
492
|
-
cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
493
|
-
delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
494
|
-
delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
495
|
-
delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
496
|
-
disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
497
|
-
pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
498
|
-
android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
499
|
-
android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
|
|
500
|
-
testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
501
|
-
unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
502
|
-
} & {
|
|
503
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
|
|
504
|
-
} & {
|
|
505
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
506
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
507
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
508
|
-
} & {
|
|
509
|
-
sharedTransitionTag?: string;
|
|
510
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
511
|
-
} & {
|
|
512
|
-
animatedProps?: Partial<{
|
|
513
|
-
children?: react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode) | react_native_reanimated.SharedValue<react.ReactNode | ((state: react_native.PressableStateCallbackType) => React.ReactNode)>;
|
|
514
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
515
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
516
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
517
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
518
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
519
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
520
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
521
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
522
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
523
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
524
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
525
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
526
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
527
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
528
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
529
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
530
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
531
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
532
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
533
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
534
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
535
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
536
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
537
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
538
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
539
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
540
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
541
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
542
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
543
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
544
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
545
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
546
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
547
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
548
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
549
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
550
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
551
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
552
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
553
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
554
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
555
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
556
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
557
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
558
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
559
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
560
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
561
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
562
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
563
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
564
|
-
accessibilityActions?: readonly Readonly<{
|
|
565
|
-
name: react_native.AccessibilityActionName | string;
|
|
566
|
-
label?: string | undefined;
|
|
567
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
568
|
-
name: react_native.AccessibilityActionName | string;
|
|
569
|
-
label?: string | undefined;
|
|
570
|
-
}>[] | undefined> | undefined;
|
|
571
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
572
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
573
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
574
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
575
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
576
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
577
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
578
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
579
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
580
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
581
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
582
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
583
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
584
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
585
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
586
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
587
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
588
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
589
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
590
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
591
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
592
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
593
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
594
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
595
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
596
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
597
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
598
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
599
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
600
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
601
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
602
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
603
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
604
|
-
ref?: react.Ref<View> | react_native_reanimated.SharedValue<react.Ref<View> | undefined> | undefined;
|
|
605
|
-
key?: react.Key | react_native_reanimated.SharedValue<react.Key | null | undefined> | null | undefined;
|
|
606
|
-
onHoverIn?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
|
|
607
|
-
onHoverOut?: ((event: react_native.MouseEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.MouseEvent) => void) | null | undefined> | null | undefined;
|
|
608
|
-
onPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
609
|
-
onPressIn?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
610
|
-
onPressOut?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
611
|
-
onLongPress?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
612
|
-
onBlur?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
613
|
-
onFocus?: ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
614
|
-
cancelable?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
615
|
-
delayHoverIn?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
616
|
-
delayHoverOut?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
617
|
-
delayLongPress?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
618
|
-
disabled?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
619
|
-
pressRetentionOffset?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
620
|
-
android_disableSound?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
621
|
-
android_ripple?: react_native.PressableAndroidRippleConfig | react_native_reanimated.SharedValue<react_native.PressableAndroidRippleConfig | null | undefined> | null | undefined;
|
|
622
|
-
testOnly_pressed?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
623
|
-
unstable_pressDelay?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
624
|
-
} & {
|
|
625
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>)>>;
|
|
626
|
-
} & {
|
|
627
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
628
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
629
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
630
|
-
} & {
|
|
631
|
-
sharedTransitionTag?: string;
|
|
632
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
633
|
-
}> | undefined;
|
|
634
|
-
} & react.RefAttributes<View | react.Component<react_native.PressableProps & react.RefAttributes<View>, any, any>>>>;
|
|
635
|
-
ScrollView: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
636
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
637
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
638
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
639
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
640
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
641
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
642
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
643
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
644
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
645
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
646
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
647
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
648
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
649
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
650
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
651
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
652
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
653
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
654
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
655
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
656
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
657
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
658
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
659
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
660
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
661
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
662
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
663
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
664
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
665
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
666
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
667
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
668
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
669
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
670
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
671
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
672
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
673
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
674
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
675
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
676
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
677
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
678
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
679
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
680
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
681
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
682
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
683
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
684
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
685
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
686
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
687
|
-
accessibilityActions?: readonly Readonly<{
|
|
688
|
-
name: react_native.AccessibilityActionName | string;
|
|
689
|
-
label?: string | undefined;
|
|
690
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
691
|
-
name: react_native.AccessibilityActionName | string;
|
|
692
|
-
label?: string | undefined;
|
|
693
|
-
}>[] | undefined> | undefined;
|
|
694
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
695
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
696
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
697
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
698
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
699
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
700
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
701
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
702
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
703
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
704
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
705
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
706
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
707
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
708
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
709
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
710
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
711
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
712
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
713
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
714
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
715
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
716
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
717
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
718
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
719
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
720
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
721
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
722
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
723
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
724
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
725
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
726
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
727
|
-
decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
728
|
-
horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
729
|
-
invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
730
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
731
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
732
|
-
onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
|
|
733
|
-
onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
734
|
-
onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
735
|
-
onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
736
|
-
onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
737
|
-
onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
738
|
-
pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
739
|
-
scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
740
|
-
showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
741
|
-
showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
742
|
-
stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
743
|
-
refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
|
|
744
|
-
snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
745
|
-
snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
746
|
-
snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
747
|
-
snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
748
|
-
stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
749
|
-
disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
750
|
-
disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
751
|
-
StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
|
|
752
|
-
alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
753
|
-
alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
754
|
-
automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
755
|
-
automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
756
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
757
|
-
bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
758
|
-
bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
759
|
-
canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
760
|
-
centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
761
|
-
contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
762
|
-
contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
|
|
763
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
764
|
-
directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
765
|
-
maintainVisibleContentPosition?: {
|
|
766
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
767
|
-
minIndexForVisible: number;
|
|
768
|
-
} | react_native_reanimated.SharedValue<{
|
|
769
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
770
|
-
minIndexForVisible: number;
|
|
771
|
-
} | null | undefined> | null | undefined;
|
|
772
|
-
maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
773
|
-
minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
774
|
-
onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
775
|
-
pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
776
|
-
scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
777
|
-
scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
778
|
-
scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
779
|
-
scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
780
|
-
snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
781
|
-
onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
782
|
-
zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
783
|
-
endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
|
|
784
|
-
scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
785
|
-
overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
|
|
786
|
-
nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
787
|
-
fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
788
|
-
persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
789
|
-
} & {
|
|
790
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
791
|
-
contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
792
|
-
indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
|
|
793
|
-
} & {
|
|
794
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
795
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
796
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
797
|
-
} & {
|
|
798
|
-
sharedTransitionTag?: string;
|
|
799
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
800
|
-
} & {
|
|
801
|
-
animatedProps?: Partial<{
|
|
802
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
803
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
804
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
805
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
806
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
807
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
808
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
809
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
810
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
811
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
812
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
813
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
814
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
815
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
816
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
817
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
818
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
819
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
820
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
821
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
822
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
823
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
824
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
825
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
826
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
827
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
828
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
829
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
830
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
831
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
832
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
833
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
834
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
835
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
836
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
837
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
838
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
839
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
840
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
841
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
842
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
843
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
844
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
845
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
846
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
847
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
848
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
849
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
850
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
851
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
852
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
853
|
-
accessibilityActions?: readonly Readonly<{
|
|
854
|
-
name: react_native.AccessibilityActionName | string;
|
|
855
|
-
label?: string | undefined;
|
|
856
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
857
|
-
name: react_native.AccessibilityActionName | string;
|
|
858
|
-
label?: string | undefined;
|
|
859
|
-
}>[] | undefined> | undefined;
|
|
860
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
861
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
862
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
863
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
864
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
865
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
866
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
867
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
868
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
869
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
870
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
871
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
872
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
873
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
874
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
875
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
876
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
877
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
878
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
879
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
880
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
881
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
882
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
883
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
884
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
885
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
886
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
887
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
888
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
889
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
890
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
891
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
892
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
893
|
-
decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
894
|
-
horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
895
|
-
invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
896
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
897
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
898
|
-
onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
|
|
899
|
-
onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
900
|
-
onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
901
|
-
onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
902
|
-
onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
903
|
-
onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
904
|
-
pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
905
|
-
scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
906
|
-
showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
907
|
-
showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
908
|
-
stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
909
|
-
refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
|
|
910
|
-
snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
911
|
-
snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
912
|
-
snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
913
|
-
snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
914
|
-
stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
915
|
-
disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
916
|
-
disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
917
|
-
StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
|
|
918
|
-
alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
919
|
-
alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
920
|
-
automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
921
|
-
automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
922
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
923
|
-
bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
924
|
-
bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
925
|
-
canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
926
|
-
centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
927
|
-
contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
928
|
-
contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
|
|
929
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
930
|
-
directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
931
|
-
maintainVisibleContentPosition?: {
|
|
932
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
933
|
-
minIndexForVisible: number;
|
|
934
|
-
} | react_native_reanimated.SharedValue<{
|
|
935
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
936
|
-
minIndexForVisible: number;
|
|
937
|
-
} | null | undefined> | null | undefined;
|
|
938
|
-
maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
939
|
-
minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
940
|
-
onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
941
|
-
pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
942
|
-
scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
943
|
-
scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
944
|
-
scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
945
|
-
scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
946
|
-
snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
947
|
-
onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
948
|
-
zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
949
|
-
endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
|
|
950
|
-
scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
951
|
-
overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
|
|
952
|
-
nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
953
|
-
fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
954
|
-
persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
955
|
-
} & {
|
|
956
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
957
|
-
contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
958
|
-
indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
|
|
959
|
-
} & {
|
|
960
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
961
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
962
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
963
|
-
} & {
|
|
964
|
-
sharedTransitionTag?: string;
|
|
965
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
966
|
-
}> | undefined;
|
|
967
|
-
} & react.RefAttributes<never>>>;
|
|
968
|
-
FlatList: react.MemoExoticComponent<react.ForwardRefExoticComponent<{
|
|
969
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
970
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
971
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
972
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
973
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
974
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
975
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
976
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
977
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
978
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
979
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
980
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
981
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
982
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
983
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
984
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
985
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
986
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
987
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
988
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
989
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
990
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
991
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
992
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
993
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
994
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
995
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
996
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
997
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
998
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
999
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1000
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1001
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1002
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1003
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1004
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1005
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1006
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1007
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1008
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1009
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1010
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1011
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1012
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1013
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1014
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1015
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1016
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1017
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1018
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1019
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1020
|
-
accessibilityActions?: readonly Readonly<{
|
|
1021
|
-
name: react_native.AccessibilityActionName | string;
|
|
1022
|
-
label?: string | undefined;
|
|
1023
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
1024
|
-
name: react_native.AccessibilityActionName | string;
|
|
1025
|
-
label?: string | undefined;
|
|
1026
|
-
}>[] | undefined> | undefined;
|
|
1027
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1028
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1029
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
1030
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
1031
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1032
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
1033
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1034
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1035
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1036
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1037
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
1038
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1039
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1040
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1041
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1042
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
1043
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
1044
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1045
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1046
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
1047
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
1048
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1049
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
1050
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
1051
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1052
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1053
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1054
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1055
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1056
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1057
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1058
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1059
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1060
|
-
data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
|
|
1061
|
-
decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
1062
|
-
horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1063
|
-
invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1064
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
1065
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
1066
|
-
onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
|
|
1067
|
-
onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1068
|
-
onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1069
|
-
onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1070
|
-
onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1071
|
-
onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1072
|
-
pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1073
|
-
scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1074
|
-
showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1075
|
-
showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1076
|
-
stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1077
|
-
refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
|
|
1078
|
-
snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1079
|
-
snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
1080
|
-
snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1081
|
-
snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1082
|
-
stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
1083
|
-
disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1084
|
-
disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1085
|
-
StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
|
|
1086
|
-
alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1087
|
-
alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1088
|
-
automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1089
|
-
automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1090
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1091
|
-
bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1092
|
-
bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1093
|
-
canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1094
|
-
centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1095
|
-
contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
1096
|
-
contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
|
|
1097
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
1098
|
-
directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1099
|
-
maintainVisibleContentPosition?: {
|
|
1100
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1101
|
-
minIndexForVisible: number;
|
|
1102
|
-
} | react_native_reanimated.SharedValue<{
|
|
1103
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1104
|
-
minIndexForVisible: number;
|
|
1105
|
-
} | null | undefined> | null | undefined;
|
|
1106
|
-
maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1107
|
-
minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1108
|
-
onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1109
|
-
pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1110
|
-
scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1111
|
-
scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
1112
|
-
scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1113
|
-
scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1114
|
-
snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1115
|
-
onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1116
|
-
zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1117
|
-
endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
|
|
1118
|
-
scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1119
|
-
overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
|
|
1120
|
-
nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1121
|
-
fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1122
|
-
persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1123
|
-
extraData?: any | undefined;
|
|
1124
|
-
getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1125
|
-
length: number;
|
|
1126
|
-
offset: number;
|
|
1127
|
-
index: number;
|
|
1128
|
-
}) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1129
|
-
length: number;
|
|
1130
|
-
offset: number;
|
|
1131
|
-
index: number;
|
|
1132
|
-
}) | undefined> | undefined;
|
|
1133
|
-
initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1134
|
-
initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1135
|
-
keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
|
|
1136
|
-
legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1137
|
-
numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1138
|
-
onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
|
|
1139
|
-
onViewableItemsChanged?: ((info: {
|
|
1140
|
-
viewableItems: react_native.ViewToken<unknown>[];
|
|
1141
|
-
changed: react_native.ViewToken<unknown>[];
|
|
1142
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1143
|
-
viewableItems: react_native.ViewToken<unknown>[];
|
|
1144
|
-
changed: react_native.ViewToken<unknown>[];
|
|
1145
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1146
|
-
refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1147
|
-
renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
|
|
1148
|
-
viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
|
|
1149
|
-
ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1150
|
-
ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1151
|
-
ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1152
|
-
ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1153
|
-
debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1154
|
-
disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1155
|
-
getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
|
|
1156
|
-
getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
|
|
1157
|
-
inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1158
|
-
maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1159
|
-
onEndReached?: ((info: {
|
|
1160
|
-
distanceFromEnd: number;
|
|
1161
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1162
|
-
distanceFromEnd: number;
|
|
1163
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1164
|
-
onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1165
|
-
onScrollToIndexFailed?: ((info: {
|
|
1166
|
-
index: number;
|
|
1167
|
-
highestMeasuredFrameIndex: number;
|
|
1168
|
-
averageItemLength: number;
|
|
1169
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1170
|
-
index: number;
|
|
1171
|
-
highestMeasuredFrameIndex: number;
|
|
1172
|
-
averageItemLength: number;
|
|
1173
|
-
}) => void) | undefined> | undefined;
|
|
1174
|
-
onStartReached?: ((info: {
|
|
1175
|
-
distanceFromStart: number;
|
|
1176
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1177
|
-
distanceFromStart: number;
|
|
1178
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1179
|
-
onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1180
|
-
progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1181
|
-
renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
|
|
1182
|
-
updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1183
|
-
viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
|
|
1184
|
-
windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1185
|
-
CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
|
|
1186
|
-
} & {
|
|
1187
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1188
|
-
contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1189
|
-
indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
|
|
1190
|
-
columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1191
|
-
ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1192
|
-
ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1193
|
-
} & {
|
|
1194
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
1195
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
1196
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
1197
|
-
} & {
|
|
1198
|
-
sharedTransitionTag?: string;
|
|
1199
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
1200
|
-
} & {
|
|
1201
|
-
animatedProps?: Partial<{
|
|
1202
|
-
children?: react.ReactNode | react_native_reanimated.SharedValue<react.ReactNode>;
|
|
1203
|
-
hitSlop?: number | react_native.Insets | react_native_reanimated.SharedValue<number | react_native.Insets | null | undefined> | null | undefined;
|
|
1204
|
-
id?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1205
|
-
needsOffscreenAlphaCompositing?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1206
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.LayoutChangeEvent) => void) | undefined> | undefined;
|
|
1207
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | react_native_reanimated.SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
1208
|
-
removeClippedSubviews?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1209
|
-
testID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1210
|
-
nativeID?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1211
|
-
collapsable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1212
|
-
collapsableChildren?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1213
|
-
renderToHardwareTextureAndroid?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1214
|
-
focusable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1215
|
-
tabIndex?: 0 | -1 | react_native_reanimated.SharedValue<0 | -1 | undefined> | undefined;
|
|
1216
|
-
shouldRasterizeIOS?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1217
|
-
isTVSelectable?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1218
|
-
hasTVPreferredFocus?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1219
|
-
tvParallaxShiftDistanceX?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1220
|
-
tvParallaxShiftDistanceY?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1221
|
-
tvParallaxTiltAngle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1222
|
-
tvParallaxMagnification?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1223
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1224
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1225
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1226
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1227
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1228
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1229
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1230
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1231
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1232
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1233
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1234
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => boolean) | undefined> | undefined;
|
|
1235
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1236
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1237
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1238
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1239
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.GestureResponderEvent) => void) | undefined> | undefined;
|
|
1240
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1241
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1242
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1243
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1244
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1245
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1246
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1247
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1248
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1249
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1250
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1251
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.PointerEvent) => void) | undefined> | undefined;
|
|
1252
|
-
accessible?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1253
|
-
accessibilityActions?: readonly Readonly<{
|
|
1254
|
-
name: react_native.AccessibilityActionName | string;
|
|
1255
|
-
label?: string | undefined;
|
|
1256
|
-
}>[] | react_native_reanimated.SharedValue<readonly Readonly<{
|
|
1257
|
-
name: react_native.AccessibilityActionName | string;
|
|
1258
|
-
label?: string | undefined;
|
|
1259
|
-
}>[] | undefined> | undefined;
|
|
1260
|
-
accessibilityLabel?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1261
|
-
'aria-label'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1262
|
-
accessibilityRole?: react_native.AccessibilityRole | react_native_reanimated.SharedValue<react_native.AccessibilityRole | undefined> | undefined;
|
|
1263
|
-
accessibilityState?: react_native.AccessibilityState | react_native_reanimated.SharedValue<react_native.AccessibilityState | undefined> | undefined;
|
|
1264
|
-
'aria-busy'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1265
|
-
'aria-checked'?: boolean | "mixed" | react_native_reanimated.SharedValue<boolean | "mixed" | undefined> | undefined;
|
|
1266
|
-
'aria-disabled'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1267
|
-
'aria-expanded'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1268
|
-
'aria-selected'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1269
|
-
accessibilityHint?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1270
|
-
accessibilityValue?: react_native.AccessibilityValue | react_native_reanimated.SharedValue<react_native.AccessibilityValue | undefined> | undefined;
|
|
1271
|
-
'aria-valuemax'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1272
|
-
'aria-valuemin'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1273
|
-
'aria-valuenow'?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1274
|
-
'aria-valuetext'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1275
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | react_native_reanimated.SharedValue<((event: react_native.AccessibilityActionEvent) => void) | undefined> | undefined;
|
|
1276
|
-
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | react_native_reanimated.SharedValue<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
|
|
1277
|
-
'aria-hidden'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1278
|
-
'aria-modal'?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1279
|
-
role?: react_native.Role | react_native_reanimated.SharedValue<react_native.Role | undefined> | undefined;
|
|
1280
|
-
accessibilityLabelledBy?: string | string[] | react_native_reanimated.SharedValue<string | string[] | undefined> | undefined;
|
|
1281
|
-
'aria-labelledby'?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1282
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | react_native_reanimated.SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
|
|
1283
|
-
'aria-live'?: "polite" | "assertive" | "off" | react_native_reanimated.SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
|
|
1284
|
-
accessibilityElementsHidden?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1285
|
-
accessibilityViewIsModal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1286
|
-
onAccessibilityEscape?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1287
|
-
onAccessibilityTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1288
|
-
onMagicTap?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1289
|
-
accessibilityIgnoresInvertColors?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1290
|
-
accessibilityLanguage?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1291
|
-
accessibilityShowsLargeContentViewer?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1292
|
-
accessibilityLargeContentTitle?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1293
|
-
data: ArrayLike<unknown> | react_native_reanimated.SharedValue<ArrayLike<unknown> | null | undefined> | null | undefined;
|
|
1294
|
-
decelerationRate?: number | "normal" | "fast" | react_native_reanimated.SharedValue<number | "normal" | "fast" | undefined> | undefined;
|
|
1295
|
-
horizontal?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1296
|
-
invertStickyHeaders?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1297
|
-
keyboardDismissMode?: "none" | "interactive" | "on-drag" | react_native_reanimated.SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
|
|
1298
|
-
keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | react_native_reanimated.SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
|
|
1299
|
-
onContentSizeChange?: ((w: number, h: number) => void) | react_native_reanimated.SharedValue<((w: number, h: number) => void) | undefined> | undefined;
|
|
1300
|
-
onScroll?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1301
|
-
onScrollBeginDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1302
|
-
onScrollEndDrag?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1303
|
-
onMomentumScrollEnd?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1304
|
-
onMomentumScrollBegin?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1305
|
-
pagingEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1306
|
-
scrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1307
|
-
showsHorizontalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1308
|
-
showsVerticalScrollIndicator?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1309
|
-
stickyHeaderHiddenOnScroll?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1310
|
-
refreshControl?: react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | react_native_reanimated.SharedValue<react.ReactElement<react_native.RefreshControlProps, string | react.JSXElementConstructor<any>> | undefined> | undefined;
|
|
1311
|
-
snapToInterval?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1312
|
-
snapToOffsets?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
1313
|
-
snapToStart?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1314
|
-
snapToEnd?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1315
|
-
stickyHeaderIndices?: number[] | react_native_reanimated.SharedValue<number[] | undefined> | undefined;
|
|
1316
|
-
disableIntervalMomentum?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1317
|
-
disableScrollViewPanResponder?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1318
|
-
StickyHeaderComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | undefined> | undefined;
|
|
1319
|
-
alwaysBounceHorizontal?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1320
|
-
alwaysBounceVertical?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1321
|
-
automaticallyAdjustContentInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1322
|
-
automaticallyAdjustKeyboardInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1323
|
-
automaticallyAdjustsScrollIndicatorInsets?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1324
|
-
bounces?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1325
|
-
bouncesZoom?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1326
|
-
canCancelContentTouches?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1327
|
-
centerContent?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1328
|
-
contentInset?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
1329
|
-
contentOffset?: react_native.PointProp | react_native_reanimated.SharedValue<react_native.PointProp | undefined> | undefined;
|
|
1330
|
-
contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | react_native_reanimated.SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
|
|
1331
|
-
directionalLockEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1332
|
-
maintainVisibleContentPosition?: {
|
|
1333
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1334
|
-
minIndexForVisible: number;
|
|
1335
|
-
} | react_native_reanimated.SharedValue<{
|
|
1336
|
-
autoscrollToTopThreshold?: number | null | undefined;
|
|
1337
|
-
minIndexForVisible: number;
|
|
1338
|
-
} | null | undefined> | null | undefined;
|
|
1339
|
-
maximumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1340
|
-
minimumZoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1341
|
-
onScrollAnimationEnd?: (() => void) | react_native_reanimated.SharedValue<(() => void) | undefined> | undefined;
|
|
1342
|
-
pinchGestureEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1343
|
-
scrollEventThrottle?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1344
|
-
scrollIndicatorInsets?: react_native.Insets | react_native_reanimated.SharedValue<react_native.Insets | undefined> | undefined;
|
|
1345
|
-
scrollToOverflowEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1346
|
-
scrollsToTop?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1347
|
-
snapToAlignment?: "center" | "end" | "start" | react_native_reanimated.SharedValue<"center" | "end" | "start" | undefined> | undefined;
|
|
1348
|
-
onScrollToTop?: ((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | react_native_reanimated.SharedValue<((event: react_native.NativeSyntheticEvent<react_native.NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1349
|
-
zoomScale?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1350
|
-
endFillColor?: react_native.ColorValue | react_native_reanimated.SharedValue<react_native.ColorValue | undefined> | undefined;
|
|
1351
|
-
scrollPerfTag?: string | react_native_reanimated.SharedValue<string | undefined> | undefined;
|
|
1352
|
-
overScrollMode?: "always" | "never" | "auto" | react_native_reanimated.SharedValue<"always" | "never" | "auto" | undefined> | undefined;
|
|
1353
|
-
nestedScrollEnabled?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1354
|
-
fadingEdgeLength?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1355
|
-
persistentScrollbar?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1356
|
-
extraData?: any | undefined;
|
|
1357
|
-
getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1358
|
-
length: number;
|
|
1359
|
-
offset: number;
|
|
1360
|
-
index: number;
|
|
1361
|
-
}) | react_native_reanimated.SharedValue<((data: ArrayLike<unknown> | null | undefined, index: number) => {
|
|
1362
|
-
length: number;
|
|
1363
|
-
offset: number;
|
|
1364
|
-
index: number;
|
|
1365
|
-
}) | undefined> | undefined;
|
|
1366
|
-
initialNumToRender?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1367
|
-
initialScrollIndex?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1368
|
-
keyExtractor?: ((item: unknown, index: number) => string) | react_native_reanimated.SharedValue<((item: unknown, index: number) => string) | undefined> | undefined;
|
|
1369
|
-
legacyImplementation?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1370
|
-
numColumns?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1371
|
-
onRefresh?: (() => void) | react_native_reanimated.SharedValue<(() => void) | null | undefined> | null | undefined;
|
|
1372
|
-
onViewableItemsChanged?: ((info: {
|
|
1373
|
-
viewableItems: react_native.ViewToken<unknown>[];
|
|
1374
|
-
changed: react_native.ViewToken<unknown>[];
|
|
1375
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1376
|
-
viewableItems: react_native.ViewToken<unknown>[];
|
|
1377
|
-
changed: react_native.ViewToken<unknown>[];
|
|
1378
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1379
|
-
refreshing?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1380
|
-
renderItem: react_native.ListRenderItem<unknown> | react_native_reanimated.SharedValue<react_native.ListRenderItem<unknown> | null | undefined> | null | undefined;
|
|
1381
|
-
viewabilityConfig?: react_native.ViewabilityConfig | react_native_reanimated.SharedValue<react_native.ViewabilityConfig | undefined> | undefined;
|
|
1382
|
-
ItemSeparatorComponent?: react.ComponentType<any> | react_native_reanimated.SharedValue<react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1383
|
-
ListEmptyComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1384
|
-
ListFooterComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1385
|
-
ListHeaderComponent?: react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | react_native_reanimated.SharedValue<react.ReactElement<unknown, string | react.JSXElementConstructor<any>> | react.ComponentType<any> | null | undefined> | null | undefined;
|
|
1386
|
-
debug?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1387
|
-
disableVirtualization?: boolean | react_native_reanimated.SharedValue<boolean | undefined> | undefined;
|
|
1388
|
-
getItem?: ((data: any, index: number) => unknown) | react_native_reanimated.SharedValue<((data: any, index: number) => unknown) | undefined> | undefined;
|
|
1389
|
-
getItemCount?: ((data: any) => number) | react_native_reanimated.SharedValue<((data: any) => number) | undefined> | undefined;
|
|
1390
|
-
inverted?: boolean | react_native_reanimated.SharedValue<boolean | null | undefined> | null | undefined;
|
|
1391
|
-
maxToRenderPerBatch?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1392
|
-
onEndReached?: ((info: {
|
|
1393
|
-
distanceFromEnd: number;
|
|
1394
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1395
|
-
distanceFromEnd: number;
|
|
1396
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1397
|
-
onEndReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1398
|
-
onScrollToIndexFailed?: ((info: {
|
|
1399
|
-
index: number;
|
|
1400
|
-
highestMeasuredFrameIndex: number;
|
|
1401
|
-
averageItemLength: number;
|
|
1402
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1403
|
-
index: number;
|
|
1404
|
-
highestMeasuredFrameIndex: number;
|
|
1405
|
-
averageItemLength: number;
|
|
1406
|
-
}) => void) | undefined> | undefined;
|
|
1407
|
-
onStartReached?: ((info: {
|
|
1408
|
-
distanceFromStart: number;
|
|
1409
|
-
}) => void) | react_native_reanimated.SharedValue<((info: {
|
|
1410
|
-
distanceFromStart: number;
|
|
1411
|
-
}) => void) | null | undefined> | null | undefined;
|
|
1412
|
-
onStartReachedThreshold?: number | react_native_reanimated.SharedValue<number | null | undefined> | null | undefined;
|
|
1413
|
-
progressViewOffset?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1414
|
-
renderScrollComponent?: ((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | react_native_reanimated.SharedValue<((props: react_native.ScrollViewProps) => React.ReactElement<react_native.ScrollViewProps>) | undefined> | undefined;
|
|
1415
|
-
updateCellsBatchingPeriod?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1416
|
-
viewabilityConfigCallbackPairs?: react_native.ViewabilityConfigCallbackPairs | react_native_reanimated.SharedValue<react_native.ViewabilityConfigCallbackPairs | undefined> | undefined;
|
|
1417
|
-
windowSize?: number | react_native_reanimated.SharedValue<number | undefined> | undefined;
|
|
1418
|
-
CellRendererComponent?: react.ComponentType<react_native.CellRendererProps<unknown>> | react_native_reanimated.SharedValue<react.ComponentType<react_native.CellRendererProps<unknown>> | null | undefined> | null | undefined;
|
|
1419
|
-
} & {
|
|
1420
|
-
style?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1421
|
-
contentContainerStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1422
|
-
indicatorStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<"default" | "black" | "white" | undefined>>;
|
|
1423
|
-
columnWrapperStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1424
|
-
ListFooterComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1425
|
-
ListHeaderComponentStyle?: react_native.StyleProp<react_native_reanimated.AnimatedStyle<react_native.StyleProp<react_native.ViewStyle>>>;
|
|
1426
|
-
} & {
|
|
1427
|
-
layout?: react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.LayoutAnimationFunction | typeof react_native_reanimated.BaseAnimationBuilder;
|
|
1428
|
-
entering?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
1429
|
-
exiting?: react_native_reanimated.BaseAnimationBuilder | typeof react_native_reanimated.BaseAnimationBuilder | react_native_reanimated.EntryExitAnimationFunction | react_native_reanimated_lib_typescript_layoutReanimation_animationBuilder_Keyframe.ReanimatedKeyframe;
|
|
1430
|
-
} & {
|
|
1431
|
-
sharedTransitionTag?: string;
|
|
1432
|
-
sharedTransitionStyle?: react_native_reanimated.SharedTransition;
|
|
1433
|
-
}> | undefined;
|
|
1434
|
-
} & react.RefAttributes<never>>>;
|
|
1435
|
-
defaultScreenOptions: () => {
|
|
1436
|
-
readonly presentation: "containedTransparentModal";
|
|
1437
|
-
readonly headerShown: false;
|
|
1438
|
-
readonly animation: "none";
|
|
1439
|
-
};
|
|
1440
|
-
presets: typeof presets;
|
|
1441
|
-
specs: typeof specs;
|
|
1442
|
-
/**
|
|
1443
|
-
* Create a transition aware component
|
|
1444
|
-
*/
|
|
1445
|
-
createTransitionAwareComponent: typeof createTransitionAwareComponent;
|
|
1446
|
-
/**
|
|
1447
|
-
* Create a transition aware scrollable component
|
|
1448
|
-
*/
|
|
1449
|
-
createTransitionAwareScrollable: typeof createTransitionAwareScrollable;
|
|
1450
|
-
/**
|
|
1451
|
-
* Create a transitionable native stack navigator.
|
|
1452
|
-
*
|
|
1453
|
-
*/
|
|
1454
|
-
createTransitionableStackNavigator: typeof createTransitionableStackNavigator;
|
|
1455
|
-
/**
|
|
1456
|
-
* @deprecated Use {@link createTransitionableStackNavigator} instead.
|
|
1457
|
-
*/
|
|
1458
|
-
createConfig: ({ navigation: reactNavigation, route, ...config }: TransitionEventHandlersProps) => TransitionListeners;
|
|
1459
|
-
/**
|
|
1460
|
-
* @deprecated Use {@link createTransitionableStackNavigator} instead.
|
|
1461
|
-
*/
|
|
1462
|
-
createScreenConfig: (config?: Omit<TransitionEventHandlersProps, "navigation" | "route">) => {
|
|
1463
|
-
listeners: (l: Any) => Partial<{
|
|
1464
|
-
[x: string]: _react_navigation_native.EventListenerCallback<_react_navigation_native.EventMapBase & _react_navigation_native.EventMapCore<Readonly<{
|
|
1465
|
-
key: string;
|
|
1466
|
-
index: number;
|
|
1467
|
-
routeNames: string[];
|
|
1468
|
-
history?: unknown[];
|
|
1469
|
-
routes: _react_navigation_native.NavigationRoute<_react_navigation_native.ParamListBase, string>[];
|
|
1470
|
-
type: string;
|
|
1471
|
-
stale: false;
|
|
1472
|
-
}>>, string, boolean | undefined>;
|
|
1473
|
-
focus: _react_navigation_native.EventListenerCallback<_react_navigation_native.EventMapBase & _react_navigation_native.EventMapCore<Readonly<{
|
|
1474
|
-
key: string;
|
|
1475
|
-
index: number;
|
|
1476
|
-
routeNames: string[];
|
|
1477
|
-
history?: unknown[];
|
|
1478
|
-
routes: _react_navigation_native.NavigationRoute<_react_navigation_native.ParamListBase, string>[];
|
|
1479
|
-
type: string;
|
|
1480
|
-
stale: false;
|
|
1481
|
-
}>>, "focus", unknown>;
|
|
1482
|
-
blur: _react_navigation_native.EventListenerCallback<_react_navigation_native.EventMapBase & _react_navigation_native.EventMapCore<Readonly<{
|
|
1483
|
-
key: string;
|
|
1484
|
-
index: number;
|
|
1485
|
-
routeNames: string[];
|
|
1486
|
-
history?: unknown[];
|
|
1487
|
-
routes: _react_navigation_native.NavigationRoute<_react_navigation_native.ParamListBase, string>[];
|
|
1488
|
-
type: string;
|
|
1489
|
-
stale: false;
|
|
1490
|
-
}>>, "blur", unknown>;
|
|
1491
|
-
state: _react_navigation_native.EventListenerCallback<_react_navigation_native.EventMapBase & _react_navigation_native.EventMapCore<Readonly<{
|
|
1492
|
-
key: string;
|
|
1493
|
-
index: number;
|
|
1494
|
-
routeNames: string[];
|
|
1495
|
-
history?: unknown[];
|
|
1496
|
-
routes: _react_navigation_native.NavigationRoute<_react_navigation_native.ParamListBase, string>[];
|
|
1497
|
-
type: string;
|
|
1498
|
-
stale: false;
|
|
1499
|
-
}>>, "state", unknown>;
|
|
1500
|
-
beforeRemove: _react_navigation_native.EventListenerCallback<_react_navigation_native.EventMapBase & _react_navigation_native.EventMapCore<Readonly<{
|
|
1501
|
-
key: string;
|
|
1502
|
-
index: number;
|
|
1503
|
-
routeNames: string[];
|
|
1504
|
-
history?: unknown[];
|
|
1505
|
-
routes: _react_navigation_native.NavigationRoute<_react_navigation_native.ParamListBase, string>[];
|
|
1506
|
-
type: string;
|
|
1507
|
-
stale: false;
|
|
1508
|
-
}>>, "beforeRemove", true>;
|
|
1509
|
-
}>;
|
|
1510
|
-
};
|
|
1511
|
-
};
|
|
1512
|
-
|
|
1513
|
-
export { type TransitionConfig, type TransitionStackNavigatorTypeBag, _default as default, useScreenAnimation };
|