react-native-screen-transitions 2.3.1 → 2.3.3

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.
Files changed (217) hide show
  1. package/README.md +50 -12
  2. package/lib/commonjs/__configs__/index.js.map +1 -0
  3. package/lib/commonjs/{configs → __configs__}/presets.js +7 -3
  4. package/lib/commonjs/__configs__/presets.js.map +1 -0
  5. package/lib/commonjs/{configs → __configs__}/specs.js +1 -0
  6. package/lib/commonjs/__configs__/specs.js.map +1 -0
  7. package/lib/commonjs/components/controllers/screen-lifecycle.js +5 -5
  8. package/lib/commonjs/components/controllers/screen-lifecycle.js.map +1 -1
  9. package/lib/commonjs/components/create-transition-aware-component.js +13 -32
  10. package/lib/commonjs/components/create-transition-aware-component.js.map +1 -1
  11. package/lib/commonjs/components/integrations/masked-view.js +3 -4
  12. package/lib/commonjs/components/integrations/masked-view.js.map +1 -1
  13. package/lib/commonjs/components/root-transition-aware.js +3 -3
  14. package/lib/commonjs/components/root-transition-aware.js.map +1 -1
  15. package/lib/commonjs/constants.js +103 -0
  16. package/lib/commonjs/constants.js.map +1 -0
  17. package/lib/commonjs/hooks/animation/use-associated-style.js +3 -4
  18. package/lib/commonjs/hooks/animation/use-associated-style.js.map +1 -1
  19. package/lib/commonjs/hooks/animation/use-screen-animation.js +6 -28
  20. package/lib/commonjs/hooks/animation/use-screen-animation.js.map +1 -1
  21. package/lib/commonjs/hooks/bounds/use-bound-registry.js +92 -31
  22. package/lib/commonjs/hooks/bounds/use-bound-registry.js.map +1 -1
  23. package/lib/commonjs/hooks/gestures/use-build-gestures.js +27 -41
  24. package/lib/commonjs/hooks/gestures/use-build-gestures.js.map +1 -1
  25. package/lib/commonjs/index.js +3 -3
  26. package/lib/commonjs/index.js.map +1 -1
  27. package/lib/commonjs/integrations/native-stack/utils/debounce.js.map +1 -1
  28. package/lib/commonjs/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -1
  29. package/lib/commonjs/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -1
  30. package/lib/commonjs/integrations/native-stack/views/FontProcessor.js +1 -1
  31. package/lib/commonjs/integrations/native-stack/views/FontProcessor.js.map +1 -1
  32. package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js +1 -1
  33. package/lib/commonjs/integrations/native-stack/views/FontProcessor.native.js.map +1 -1
  34. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js +2 -2
  35. package/lib/commonjs/integrations/native-stack/views/NativeStackView.native.js.map +1 -1
  36. package/lib/commonjs/providers/gestures.js +1 -9
  37. package/lib/commonjs/providers/gestures.js.map +1 -1
  38. package/lib/commonjs/{components/screen-transition-tree.js → providers/screen-transition-provider.js} +5 -5
  39. package/lib/commonjs/providers/screen-transition-provider.js.map +1 -0
  40. package/lib/commonjs/providers/transition-styles.js +4 -4
  41. package/lib/commonjs/providers/transition-styles.js.map +1 -1
  42. package/lib/commonjs/utils/animation/start-screen-transition.js +54 -0
  43. package/lib/commonjs/utils/animation/start-screen-transition.js.map +1 -0
  44. package/lib/commonjs/utils/bounds/index.js +6 -18
  45. package/lib/commonjs/utils/bounds/index.js.map +1 -1
  46. package/lib/commonjs/utils/gesture/apply-offset-rules.js +12 -21
  47. package/lib/commonjs/utils/gesture/apply-offset-rules.js.map +1 -1
  48. package/lib/commonjs/utils/gesture/determine-dismissal.js +7 -55
  49. package/lib/commonjs/utils/gesture/determine-dismissal.js.map +1 -1
  50. package/lib/commonjs/utils/gesture/reset-gesture-values.js +46 -0
  51. package/lib/commonjs/utils/gesture/reset-gesture-values.js.map +1 -0
  52. package/lib/commonjs/utils/gesture/velocity.js +89 -0
  53. package/lib/commonjs/utils/gesture/velocity.js.map +1 -0
  54. package/lib/commonjs/utils/reanimated/version.js +12 -0
  55. package/lib/commonjs/utils/reanimated/version.js.map +1 -0
  56. package/lib/module/__configs__/index.js.map +1 -0
  57. package/lib/module/{configs → __configs__}/presets.js +7 -3
  58. package/lib/module/__configs__/presets.js.map +1 -0
  59. package/lib/module/{configs → __configs__}/specs.js +1 -0
  60. package/lib/module/__configs__/specs.js.map +1 -0
  61. package/lib/module/components/controllers/screen-lifecycle.js +5 -5
  62. package/lib/module/components/controllers/screen-lifecycle.js.map +1 -1
  63. package/lib/module/components/create-transition-aware-component.js +13 -32
  64. package/lib/module/components/create-transition-aware-component.js.map +1 -1
  65. package/lib/module/components/integrations/masked-view.js +1 -2
  66. package/lib/module/components/integrations/masked-view.js.map +1 -1
  67. package/lib/module/components/root-transition-aware.js +3 -3
  68. package/lib/module/components/root-transition-aware.js.map +1 -1
  69. package/lib/module/constants.js +98 -0
  70. package/lib/module/constants.js.map +1 -0
  71. package/lib/module/hooks/animation/use-associated-style.js +3 -4
  72. package/lib/module/hooks/animation/use-associated-style.js.map +1 -1
  73. package/lib/module/hooks/animation/use-screen-animation.js +6 -28
  74. package/lib/module/hooks/animation/use-screen-animation.js.map +1 -1
  75. package/lib/module/hooks/bounds/use-bound-registry.js +93 -33
  76. package/lib/module/hooks/bounds/use-bound-registry.js.map +1 -1
  77. package/lib/module/hooks/gestures/use-build-gestures.js +22 -36
  78. package/lib/module/hooks/gestures/use-build-gestures.js.map +1 -1
  79. package/lib/module/index.js +1 -1
  80. package/lib/module/index.js.map +1 -1
  81. package/lib/module/integrations/native-stack/utils/debounce.js.map +1 -1
  82. package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js +1 -1
  83. package/lib/module/integrations/native-stack/utils/useAnimatedHeaderHeight.js.map +1 -1
  84. package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js +1 -1
  85. package/lib/module/integrations/native-stack/utils/useDismissedRouteError.js.map +1 -1
  86. package/lib/module/integrations/native-stack/views/FontProcessor.js +1 -1
  87. package/lib/module/integrations/native-stack/views/FontProcessor.js.map +1 -1
  88. package/lib/module/integrations/native-stack/views/FontProcessor.native.js +2 -2
  89. package/lib/module/integrations/native-stack/views/FontProcessor.native.js.map +1 -1
  90. package/lib/module/integrations/native-stack/views/NativeStackView.native.js +2 -2
  91. package/lib/module/integrations/native-stack/views/NativeStackView.native.js.map +1 -1
  92. package/lib/module/providers/gestures.js +0 -8
  93. package/lib/module/providers/gestures.js.map +1 -1
  94. package/lib/module/{components/screen-transition-tree.js → providers/screen-transition-provider.js} +4 -4
  95. package/lib/module/providers/screen-transition-provider.js.map +1 -0
  96. package/lib/module/providers/transition-styles.js +4 -4
  97. package/lib/module/providers/transition-styles.js.map +1 -1
  98. package/lib/module/utils/animation/{run-transition.js → start-screen-transition.js} +15 -13
  99. package/lib/module/utils/animation/start-screen-transition.js.map +1 -0
  100. package/lib/module/utils/bounds/index.js +5 -17
  101. package/lib/module/utils/bounds/index.js.map +1 -1
  102. package/lib/module/utils/gesture/apply-offset-rules.js +1 -10
  103. package/lib/module/utils/gesture/apply-offset-rules.js.map +1 -1
  104. package/lib/module/utils/gesture/determine-dismissal.js +7 -55
  105. package/lib/module/utils/gesture/determine-dismissal.js.map +1 -1
  106. package/lib/module/utils/gesture/reset-gesture-values.js +41 -0
  107. package/lib/module/utils/gesture/reset-gesture-values.js.map +1 -0
  108. package/lib/module/utils/gesture/velocity.js +85 -0
  109. package/lib/module/utils/gesture/velocity.js.map +1 -0
  110. package/lib/module/utils/reanimated/version.js +7 -0
  111. package/lib/module/utils/reanimated/version.js.map +1 -0
  112. package/lib/typescript/{configs → __configs__}/index.d.ts +1 -1
  113. package/lib/typescript/__configs__/index.d.ts.map +1 -0
  114. package/lib/typescript/__configs__/presets.d.ts.map +1 -0
  115. package/lib/typescript/__configs__/specs.d.ts.map +1 -0
  116. package/lib/typescript/components/create-transition-aware-component.d.ts +14 -2
  117. package/lib/typescript/components/create-transition-aware-component.d.ts.map +1 -1
  118. package/lib/typescript/components/integrations/masked-view.d.ts.map +1 -1
  119. package/lib/typescript/components/root-transition-aware.d.ts.map +1 -1
  120. package/lib/typescript/constants.d.ts +57 -0
  121. package/lib/typescript/constants.d.ts.map +1 -0
  122. package/lib/typescript/hooks/animation/use-associated-style.d.ts.map +1 -1
  123. package/lib/typescript/hooks/animation/use-screen-animation.d.ts +1 -1
  124. package/lib/typescript/hooks/animation/use-screen-animation.d.ts.map +1 -1
  125. package/lib/typescript/hooks/bounds/use-bound-registry.d.ts +8 -9
  126. package/lib/typescript/hooks/bounds/use-bound-registry.d.ts.map +1 -1
  127. package/lib/typescript/hooks/gestures/use-build-gestures.d.ts.map +1 -1
  128. package/lib/typescript/index.d.ts +100 -68
  129. package/lib/typescript/index.d.ts.map +1 -1
  130. package/lib/typescript/integrations/native-stack/utils/debounce.d.ts.map +1 -1
  131. package/lib/typescript/integrations/native-stack/utils/useAnimatedHeaderHeight.d.ts +2 -2
  132. package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts +2 -2
  133. package/lib/typescript/integrations/native-stack/utils/useDismissedRouteError.d.ts.map +1 -1
  134. package/lib/typescript/integrations/native-stack/views/FontProcessor.d.ts.map +1 -1
  135. package/lib/typescript/integrations/native-stack/views/FontProcessor.native.d.ts.map +1 -1
  136. package/lib/typescript/providers/gestures.d.ts +0 -1
  137. package/lib/typescript/providers/gestures.d.ts.map +1 -1
  138. package/lib/typescript/{components/screen-transition-tree.d.ts → providers/screen-transition-provider.d.ts} +2 -2
  139. package/lib/typescript/providers/screen-transition-provider.d.ts.map +1 -0
  140. package/lib/typescript/providers/transition-styles.d.ts.map +1 -1
  141. package/lib/typescript/types/core.d.ts +0 -8
  142. package/lib/typescript/types/core.d.ts.map +1 -1
  143. package/lib/typescript/utils/animation/start-screen-transition.d.ts +13 -0
  144. package/lib/typescript/utils/animation/start-screen-transition.d.ts.map +1 -0
  145. package/lib/typescript/utils/bounds/_types/get-bounds.d.ts +2 -2
  146. package/lib/typescript/utils/bounds/_types/get-bounds.d.ts.map +1 -1
  147. package/lib/typescript/utils/bounds/index.d.ts.map +1 -1
  148. package/lib/typescript/utils/gesture/apply-offset-rules.d.ts.map +1 -1
  149. package/lib/typescript/utils/gesture/determine-dismissal.d.ts +0 -1
  150. package/lib/typescript/utils/gesture/determine-dismissal.d.ts.map +1 -1
  151. package/lib/typescript/utils/gesture/reset-gesture-values.d.ts +16 -0
  152. package/lib/typescript/utils/gesture/reset-gesture-values.d.ts.map +1 -0
  153. package/lib/typescript/utils/gesture/velocity.d.ts +25 -0
  154. package/lib/typescript/utils/gesture/velocity.d.ts.map +1 -0
  155. package/lib/typescript/utils/reanimated/version.d.ts +2 -0
  156. package/lib/typescript/utils/reanimated/version.d.ts.map +1 -0
  157. package/package.json +3 -3
  158. package/src/{configs → __configs__}/presets.ts +7 -1
  159. package/src/{configs → __configs__}/specs.ts +1 -0
  160. package/src/components/controllers/screen-lifecycle.tsx +5 -5
  161. package/src/components/create-transition-aware-component.tsx +23 -38
  162. package/src/components/integrations/masked-view.tsx +1 -3
  163. package/src/components/root-transition-aware.tsx +4 -8
  164. package/src/constants.ts +106 -0
  165. package/src/hooks/animation/use-associated-style.tsx +3 -4
  166. package/src/hooks/animation/use-screen-animation.tsx +15 -32
  167. package/src/hooks/bounds/use-bound-registry.tsx +112 -25
  168. package/src/hooks/gestures/use-build-gestures.tsx +31 -25
  169. package/src/index.ts +1 -1
  170. package/src/integrations/native-stack/utils/debounce.tsx +9 -9
  171. package/src/integrations/native-stack/utils/useAnimatedHeaderHeight.tsx +10 -10
  172. package/src/integrations/native-stack/utils/useDismissedRouteError.tsx +21 -21
  173. package/src/integrations/native-stack/views/FontProcessor.native.tsx +7 -7
  174. package/src/integrations/native-stack/views/FontProcessor.tsx +2 -2
  175. package/src/integrations/native-stack/views/NativeStackView.native.tsx +4 -4
  176. package/src/providers/gestures.tsx +0 -9
  177. package/src/{components/screen-transition-tree.tsx → providers/screen-transition-provider.tsx} +3 -3
  178. package/src/providers/transition-styles.tsx +6 -5
  179. package/src/types/core.ts +0 -9
  180. package/src/utils/animation/start-screen-transition.ts +61 -0
  181. package/src/utils/bounds/_types/get-bounds.ts +7 -7
  182. package/src/utils/bounds/index.ts +12 -19
  183. package/src/utils/gesture/apply-offset-rules.ts +9 -11
  184. package/src/utils/gesture/determine-dismissal.ts +18 -69
  185. package/src/utils/gesture/reset-gesture-values.ts +48 -0
  186. package/src/utils/gesture/velocity.ts +144 -0
  187. package/src/utils/reanimated/version.ts +5 -0
  188. package/lib/commonjs/components/bound-capture.js +0 -38
  189. package/lib/commonjs/components/bound-capture.js.map +0 -1
  190. package/lib/commonjs/components/screen-transition-tree.js.map +0 -1
  191. package/lib/commonjs/configs/index.js.map +0 -1
  192. package/lib/commonjs/configs/presets.js.map +0 -1
  193. package/lib/commonjs/configs/specs.js.map +0 -1
  194. package/lib/commonjs/utils/animation/run-transition.js +0 -52
  195. package/lib/commonjs/utils/animation/run-transition.js.map +0 -1
  196. package/lib/module/components/bound-capture.js +0 -33
  197. package/lib/module/components/bound-capture.js.map +0 -1
  198. package/lib/module/components/screen-transition-tree.js.map +0 -1
  199. package/lib/module/configs/index.js.map +0 -1
  200. package/lib/module/configs/presets.js.map +0 -1
  201. package/lib/module/configs/specs.js.map +0 -1
  202. package/lib/module/utils/animation/run-transition.js.map +0 -1
  203. package/lib/typescript/components/bound-capture.d.ts +0 -8
  204. package/lib/typescript/components/bound-capture.d.ts.map +0 -1
  205. package/lib/typescript/components/screen-transition-tree.d.ts.map +0 -1
  206. package/lib/typescript/configs/index.d.ts.map +0 -1
  207. package/lib/typescript/configs/presets.d.ts.map +0 -1
  208. package/lib/typescript/configs/specs.d.ts.map +0 -1
  209. package/lib/typescript/utils/animation/run-transition.d.ts +0 -12
  210. package/lib/typescript/utils/animation/run-transition.d.ts.map +0 -1
  211. package/src/components/bound-capture.tsx +0 -32
  212. package/src/utils/animation/run-transition.ts +0 -52
  213. /package/lib/commonjs/{configs → __configs__}/index.js +0 -0
  214. /package/lib/module/{configs → __configs__}/index.js +0 -0
  215. /package/lib/typescript/{configs → __configs__}/presets.d.ts +0 -0
  216. /package/lib/typescript/{configs → __configs__}/specs.d.ts +0 -0
  217. /package/src/{configs → __configs__}/index.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { View } from "react-native";
1
+ import { ScrollView, View } from "react-native";
2
2
  import { createTransitionAwareComponent } from "./components/create-transition-aware-component";
3
3
  import MaskedView from "./components/integrations/masked-view";
4
4
  declare const _default: {
@@ -14,6 +14,8 @@ declare const _default: {
14
14
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
15
15
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
16
16
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
17
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
18
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
17
19
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
18
20
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
19
21
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -85,6 +87,7 @@ declare const _default: {
85
87
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
86
88
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
87
89
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
90
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
88
91
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
89
92
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
90
93
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -94,17 +97,15 @@ declare const _default: {
94
97
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
95
98
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
96
99
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
100
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
97
101
  } & {
98
102
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
99
103
  } & {
100
104
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
101
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
102
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
105
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
106
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
103
107
  } & {
104
- sharedTransitionTag?: string;
105
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
106
- } & {
107
- animatedProps?: Partial<{
108
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
108
109
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
109
110
  pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
110
111
  children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
@@ -116,6 +117,8 @@ declare const _default: {
116
117
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
117
118
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
118
119
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
120
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
121
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
119
122
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
120
123
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
121
124
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -187,6 +190,7 @@ declare const _default: {
187
190
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
188
191
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
189
192
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
193
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
190
194
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
191
195
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
192
196
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -196,20 +200,17 @@ declare const _default: {
196
200
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
197
201
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
198
202
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
203
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
199
204
  } & {
200
205
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
201
206
  } & {
202
207
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
203
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
204
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
205
- } & {
206
- sharedTransitionTag?: string;
207
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
208
- }> | undefined;
208
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
209
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
210
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
209
211
  } & {
210
212
  styleId?: string;
211
213
  sharedBoundTag?: string;
212
- measureOnLayout?: boolean;
213
214
  } & import("react").RefAttributes<never>>>;
214
215
  Pressable: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
215
216
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
@@ -217,6 +218,7 @@ declare const _default: {
217
218
  pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
218
219
  children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode)>;
219
220
  ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
221
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
220
222
  hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
221
223
  needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
222
224
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
@@ -225,6 +227,8 @@ declare const _default: {
225
227
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
226
228
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
227
229
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
230
+ onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
231
+ onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
228
232
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
229
233
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
230
234
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -296,6 +300,7 @@ declare const _default: {
296
300
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
297
301
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
298
302
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
303
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
299
304
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
300
305
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
301
306
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -305,10 +310,8 @@ declare const _default: {
305
310
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
306
311
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
307
312
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
308
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
313
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
309
314
  disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
310
- onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
311
- onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
312
315
  onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
313
316
  onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
314
317
  onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
@@ -327,18 +330,16 @@ declare const _default: {
327
330
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle> | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>)>>;
328
331
  } & {
329
332
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
330
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
331
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
333
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
334
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
332
335
  } & {
333
- sharedTransitionTag?: string;
334
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
335
- } & {
336
- animatedProps?: Partial<{
336
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
337
337
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
338
338
  key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
339
339
  pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
340
340
  children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode)>;
341
341
  ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
342
+ onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
342
343
  hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
343
344
  needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
344
345
  onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
@@ -347,6 +348,8 @@ declare const _default: {
347
348
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
348
349
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
349
350
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
351
+ onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
352
+ onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
350
353
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
351
354
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
352
355
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -418,6 +421,7 @@ declare const _default: {
418
421
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
419
422
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
420
423
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
424
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
421
425
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
422
426
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
423
427
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -427,10 +431,8 @@ declare const _default: {
427
431
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
428
432
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
429
433
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
430
- onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
434
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
431
435
  disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
432
- onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
433
- onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
434
436
  onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
435
437
  onHoverOut?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
436
438
  onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
@@ -449,16 +451,12 @@ declare const _default: {
449
451
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle> | ((state: import("react-native").PressableStateCallbackType) => import("react-native").StyleProp<import("react-native").ViewStyle>)>>;
450
452
  } & {
451
453
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
452
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
453
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
454
- } & {
455
- sharedTransitionTag?: string;
456
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
457
- }> | undefined;
454
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
455
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
456
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").PressableProps & import("react").RefAttributes<View>>> | undefined;
458
457
  } & {
459
458
  styleId?: string;
460
459
  sharedBoundTag?: string;
461
- measureOnLayout?: boolean;
462
460
  } & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
463
461
  ScrollView: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
464
462
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
@@ -473,6 +471,8 @@ declare const _default: {
473
471
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
474
472
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
475
473
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
474
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
475
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
476
476
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
477
477
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
478
478
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -544,6 +544,7 @@ declare const _default: {
544
544
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
545
545
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
546
546
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
547
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
547
548
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
548
549
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
549
550
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -553,9 +554,12 @@ declare const _default: {
553
554
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
554
555
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
555
556
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
557
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
556
558
  onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
557
- onContentSizeChange?: ((w: number, h: number) => void) | import("react-native-reanimated").SharedValue<((w: number, h: number) => void) | undefined> | undefined;
559
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
558
560
  scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
561
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
562
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
559
563
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
560
564
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
561
565
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
@@ -612,7 +616,13 @@ declare const _default: {
612
616
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
613
617
  overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
614
618
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
615
- fadingEdgeLength?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
619
+ fadingEdgeLength?: number | {
620
+ start: number;
621
+ end: number;
622
+ } | import("react-native-reanimated").SharedValue<number | {
623
+ start: number;
624
+ end: number;
625
+ } | undefined> | undefined;
616
626
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
617
627
  } & {
618
628
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
@@ -620,13 +630,10 @@ declare const _default: {
620
630
  indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"default" | "black" | "white" | undefined>>;
621
631
  } & {
622
632
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
623
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
624
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
625
- } & {
626
- sharedTransitionTag?: string;
627
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
633
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
634
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
628
635
  } & {
629
- animatedProps?: Partial<{
636
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
630
637
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
631
638
  horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
632
639
  pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
@@ -639,6 +646,8 @@ declare const _default: {
639
646
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
640
647
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
641
648
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
649
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
650
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
642
651
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
643
652
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
644
653
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -710,6 +719,7 @@ declare const _default: {
710
719
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
711
720
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
712
721
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
722
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
713
723
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
714
724
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
715
725
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -719,9 +729,12 @@ declare const _default: {
719
729
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
720
730
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
721
731
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
732
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
722
733
  onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
723
- onContentSizeChange?: ((w: number, h: number) => void) | import("react-native-reanimated").SharedValue<((w: number, h: number) => void) | undefined> | undefined;
734
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
724
735
  scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
736
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
737
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
725
738
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
726
739
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
727
740
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
@@ -778,7 +791,13 @@ declare const _default: {
778
791
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
779
792
  overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
780
793
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
781
- fadingEdgeLength?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
794
+ fadingEdgeLength?: number | {
795
+ start: number;
796
+ end: number;
797
+ } | import("react-native-reanimated").SharedValue<number | {
798
+ start: number;
799
+ end: number;
800
+ } | undefined> | undefined;
782
801
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
783
802
  } & {
784
803
  style?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
@@ -786,16 +805,12 @@ declare const _default: {
786
805
  indicatorStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<"default" | "black" | "white" | undefined>>;
787
806
  } & {
788
807
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
789
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
790
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
791
- } & {
792
- sharedTransitionTag?: string;
793
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
794
- }> | undefined;
808
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
809
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
810
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").ScrollViewProps>> | undefined;
795
811
  } & {
796
812
  styleId?: string;
797
813
  sharedBoundTag?: string;
798
- measureOnLayout?: boolean;
799
814
  } & import("react").RefAttributes<never>>>;
800
815
  FlatList: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
801
816
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
@@ -812,6 +827,8 @@ declare const _default: {
812
827
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
813
828
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
814
829
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
830
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
831
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
815
832
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
816
833
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
817
834
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -883,6 +900,7 @@ declare const _default: {
883
900
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
884
901
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
885
902
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
903
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
886
904
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
887
905
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
888
906
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -892,9 +910,12 @@ declare const _default: {
892
910
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
893
911
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
894
912
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
913
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
895
914
  onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
896
- onContentSizeChange?: ((w: number, h: number) => void) | import("react-native-reanimated").SharedValue<((w: number, h: number) => void) | undefined> | undefined;
915
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
897
916
  scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
917
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
918
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
898
919
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
899
920
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
900
921
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
@@ -951,7 +972,13 @@ declare const _default: {
951
972
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
952
973
  overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
953
974
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
954
- fadingEdgeLength?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
975
+ fadingEdgeLength?: number | {
976
+ start: number;
977
+ end: number;
978
+ } | import("react-native-reanimated").SharedValue<number | {
979
+ start: number;
980
+ end: number;
981
+ } | undefined> | undefined;
955
982
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
956
983
  extraData?: any | undefined;
957
984
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
@@ -1024,13 +1051,10 @@ declare const _default: {
1024
1051
  ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1025
1052
  } & {
1026
1053
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1027
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
1028
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
1054
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1055
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1029
1056
  } & {
1030
- sharedTransitionTag?: string;
1031
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1032
- } & {
1033
- animatedProps?: Partial<{
1057
+ animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
1034
1058
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1035
1059
  horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
1036
1060
  pointerEvents?: "none" | "auto" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"none" | "auto" | "box-none" | "box-only" | undefined> | undefined;
@@ -1045,6 +1069,8 @@ declare const _default: {
1045
1069
  nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1046
1070
  collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1047
1071
  collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1072
+ onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
1073
+ onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
1048
1074
  renderToHardwareTextureAndroid?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1049
1075
  focusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1050
1076
  tabIndex?: 0 | -1 | import("react-native-reanimated").SharedValue<0 | -1 | undefined> | undefined;
@@ -1116,6 +1142,7 @@ declare const _default: {
1116
1142
  'aria-labelledby'?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1117
1143
  accessibilityLiveRegion?: "none" | "polite" | "assertive" | import("react-native-reanimated").SharedValue<"none" | "polite" | "assertive" | undefined> | undefined;
1118
1144
  'aria-live'?: "polite" | "assertive" | "off" | import("react-native-reanimated").SharedValue<"polite" | "assertive" | "off" | undefined> | undefined;
1145
+ screenReaderFocusable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1119
1146
  accessibilityElementsHidden?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1120
1147
  accessibilityViewIsModal?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1121
1148
  onAccessibilityEscape?: (() => void) | import("react-native-reanimated").SharedValue<(() => void) | undefined> | undefined;
@@ -1125,9 +1152,12 @@ declare const _default: {
1125
1152
  accessibilityLanguage?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1126
1153
  accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1127
1154
  accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1155
+ accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1128
1156
  onScroll?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
1129
- onContentSizeChange?: ((w: number, h: number) => void) | import("react-native-reanimated").SharedValue<((w: number, h: number) => void) | undefined> | undefined;
1157
+ onContentSizeChange?: ((contentWidth: number, contentHeight: number) => void) | import("react-native-reanimated").SharedValue<((contentWidth: number, contentHeight: number) => void) | undefined> | undefined;
1130
1158
  scrollEventThrottle?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1159
+ innerViewRef?: import("react").RefObject<View> | import("react-native-reanimated").SharedValue<import("react").RefObject<View> | undefined> | undefined;
1160
+ scrollViewRef?: import("react").RefObject<ScrollView> | import("react-native-reanimated").SharedValue<import("react").RefObject<ScrollView> | undefined> | undefined;
1131
1161
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1132
1162
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1133
1163
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
@@ -1184,7 +1214,13 @@ declare const _default: {
1184
1214
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1185
1215
  overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1186
1216
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1187
- fadingEdgeLength?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1217
+ fadingEdgeLength?: number | {
1218
+ start: number;
1219
+ end: number;
1220
+ } | import("react-native-reanimated").SharedValue<number | {
1221
+ start: number;
1222
+ end: number;
1223
+ } | undefined> | undefined;
1188
1224
  persistentScrollbar?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1189
1225
  extraData?: any | undefined;
1190
1226
  getItemLayout?: ((data: ArrayLike<unknown> | null | undefined, index: number) => {
@@ -1257,16 +1293,12 @@ declare const _default: {
1257
1293
  ListHeaderComponentStyle?: import("react-native").StyleProp<import("react-native-reanimated").AnimatedStyle<import("react-native").StyleProp<import("react-native").ViewStyle>>>;
1258
1294
  } & {
1259
1295
  layout?: import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").LayoutAnimationFunction | typeof import("react-native-reanimated").BaseAnimationBuilder;
1260
- entering?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
1261
- exiting?: import("react-native-reanimated").BaseAnimationBuilder | typeof import("react-native-reanimated").BaseAnimationBuilder | import("react-native-reanimated").EntryExitAnimationFunction | import("react-native-reanimated/lib/typescript/layoutReanimation/animationBuilder/Keyframe").ReanimatedKeyframe;
1262
- } & {
1263
- sharedTransitionTag?: string;
1264
- sharedTransitionStyle?: import("react-native-reanimated").SharedTransition;
1265
- }> | undefined;
1296
+ entering?: import("react-native-reanimated").EntryOrExitLayoutType;
1297
+ exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
1298
+ }> | import("react-native-reanimated").CSSStyle<import("react-native").FlatListProps<unknown>>> | undefined;
1266
1299
  } & {
1267
1300
  styleId?: string;
1268
1301
  sharedBoundTag?: string;
1269
- measureOnLayout?: boolean;
1270
1302
  } & import("react").RefAttributes<never>>>;
1271
1303
  MaskedView: typeof MaskedView;
1272
1304
  presets: {
@@ -1282,7 +1314,7 @@ declare const _default: {
1282
1314
  SharedXImage: (config?: Partial<import("./types/navigator").ScreenTransitionConfig>) => import("./types/navigator").ScreenTransitionConfig;
1283
1315
  };
1284
1316
  specs: {
1285
- DefaultSpec: import("react-native-reanimated/lib/typescript/animation/springUtils").SpringConfig;
1317
+ DefaultSpec: import("react-native-reanimated/lib/typescript/animation/spring").SpringConfig;
1286
1318
  };
1287
1319
  createTransitionAwareComponent: typeof createTransitionAwareComponent;
1288
1320
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,IAAI,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAE,8BAA8B,EAAE,MAAM,gDAAgD,CAAC;AAChG,OAAO,UAAU,MAAM,uCAAuC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAgC01D,CAAC;;;;;;;;;;;AA7B15D,wBAaE;AAEF,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,mEAAmE,CAAC;AAE/G,YAAY,EACX,0BAA0B,EAC1B,sBAAsB,EACtB,2BAA2B,EAC3B,6BAA6B,EAC7B,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,GACtB,MAAM,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,UAAU,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAErE,OAAO,EAAE,8BAA8B,EAAE,MAAM,gDAAgD,CAAC;AAChG,OAAO,UAAU,MAAM,uCAAuC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBA+Bs1D,CAAC;;;;;;;;;;;AA7Bt5D,wBAaE;AAEF,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,mEAAmE,CAAC;AAE/G,YAAY,EACX,0BAA0B,EAC1B,sBAAsB,EACtB,2BAA2B,EAC3B,6BAA6B,EAC7B,4BAA4B,EAC5B,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,GACtB,MAAM,mBAAmB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"debounce.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/utils/debounce.tsx"],"names":[],"mappings":"AAAA,wBAAgB,QAAQ,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,EACzD,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,MAAM,GACf,CAAC,CAUH"}
1
+ {"version":3,"file":"debounce.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/utils/debounce.tsx"],"names":[],"mappings":"AAAA,wBAAgB,QAAQ,CAAC,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,EAC1D,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,MAAM,GACd,CAAC,CAUH"}
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import type { Animated } from 'react-native';
1
+ import * as React from "react";
2
+ import type { Animated } from "react-native";
3
3
  export declare const AnimatedHeaderHeightContext: React.Context<Animated.AnimatedInterpolation<number> | undefined>;
4
4
  export declare function useAnimatedHeaderHeight(): Animated.AnimatedInterpolation<number>;
5
5
  //# sourceMappingURL=useAnimatedHeaderHeight.d.ts.map
@@ -1,5 +1,5 @@
1
- import type { ParamListBase, StackNavigationState } from '@react-navigation/native';
2
- import * as React from 'react';
1
+ import type { ParamListBase, StackNavigationState } from "@react-navigation/native";
2
+ import * as React from "react";
3
3
  export declare function useDismissedRouteError(state: StackNavigationState<ParamListBase>): {
4
4
  setNextDismissedKey: React.Dispatch<React.SetStateAction<string | null>>;
5
5
  };
@@ -1 +1 @@
1
- {"version":3,"file":"useDismissedRouteError.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/utils/useDismissedRouteError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EACb,oBAAoB,EACrB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,wBAAgB,sBAAsB,CACpC,KAAK,EAAE,oBAAoB,CAAC,aAAa,CAAC;;EAsB3C"}
1
+ {"version":3,"file":"useDismissedRouteError.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/utils/useDismissedRouteError.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,aAAa,EACb,oBAAoB,EACpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,wBAAgB,sBAAsB,CACrC,KAAK,EAAE,oBAAoB,CAAC,aAAa,CAAC;;EAsB1C"}
@@ -1 +1 @@
1
- {"version":3,"file":"FontProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/views/FontProcessor.tsx"],"names":[],"mappings":"AAAA,wBAAgB,YAAY,CAC1B,CAAC,EAAE,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,GACxB,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,CAExB"}
1
+ {"version":3,"file":"FontProcessor.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/views/FontProcessor.tsx"],"names":[],"mappings":"AAAA,wBAAgB,YAAY,CAC3B,CAAC,EAAE,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,GACvB,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,CAExB"}
@@ -1 +1 @@
1
- {"version":3,"file":"FontProcessor.native.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/views/FontProcessor.native.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAC1B,YAAY,EAAE,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,GACnC,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,CAMxB"}
1
+ {"version":3,"file":"FontProcessor.native.d.ts","sourceRoot":"","sources":["../../../../../src/integrations/native-stack/views/FontProcessor.native.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAC3B,YAAY,EAAE,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,GAClC,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,CAMxB"}
@@ -17,7 +17,6 @@ export interface GestureContextType {
17
17
  type ScreenGestureProviderProps = {
18
18
  children: React.ReactNode;
19
19
  };
20
- export declare const DEFAULT_SCROLL_CONFIG: ScrollConfig;
21
20
  export declare const ScreenGestureProvider: ({ children, }: ScreenGestureProviderProps) => import("react/jsx-runtime").JSX.Element;
22
21
  export declare const useGestureContext: () => GestureContextType;
23
22
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../src/providers/gestures.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAEhE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAI3D,MAAM,MAAM,YAAY,GAAG;IAC1B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,WAAW,kBAAkB;IAClC,UAAU,EAAE,WAAW,CAAC;IACxB,aAAa,EAAE,WAAW,CAAC;IAC3B,YAAY,EAAE,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC;IAC/C,aAAa,EAAE,kBAAkB,GAAG,IAAI,CAAC;CACzC;AAED,KAAK,0BAA0B,GAAG;IACjC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,YAOnC,CAAC;AAIF,eAAO,MAAM,qBAAqB,GAAI,eAEnC,0BAA0B,4CA0B5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,0BAU7B,CAAC"}
1
+ {"version":3,"file":"gestures.d.ts","sourceRoot":"","sources":["../../../src/providers/gestures.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAEhE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAI3D,MAAM,MAAM,YAAY,GAAG;IAC1B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,WAAW,kBAAkB;IAClC,UAAU,EAAE,WAAW,CAAC;IACxB,aAAa,EAAE,WAAW,CAAC;IAC3B,YAAY,EAAE,WAAW,CAAC,YAAY,GAAG,IAAI,CAAC,CAAC;IAC/C,aAAa,EAAE,kBAAkB,GAAG,IAAI,CAAC;CACzC;AAED,KAAK,0BAA0B,GAAG;IACjC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,CAAC;AAIF,eAAO,MAAM,qBAAqB,GAAI,eAEnC,0BAA0B,4CA0B5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,0BAU7B,CAAC"}
@@ -6,6 +6,6 @@ type Props = {
6
6
  next?: NativeStackDescriptor;
7
7
  children: React.ReactNode;
8
8
  };
9
- export declare function ScreenTransitionTree({ previous, current, next, children, }: Props): import("react/jsx-runtime").JSX.Element;
9
+ export declare function ScreenTransitionProvider({ previous, current, next, children, }: Props): import("react/jsx-runtime").JSX.Element;
10
10
  export {};
11
- //# sourceMappingURL=screen-transition-tree.d.ts.map
11
+ //# sourceMappingURL=screen-transition-provider.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"screen-transition-provider.d.ts","sourceRoot":"","sources":["../../../src/providers/screen-transition-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAEhE,KAAK,KAAK,GAAG;IACZ,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IACjC,OAAO,EAAE,qBAAqB,CAAC;IAC/B,IAAI,CAAC,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,EACxC,QAAQ,EACR,OAAO,EACP,IAAI,EACJ,QAAQ,GACR,EAAE,KAAK,2CAYP"}
@@ -1 +1 @@
1
- {"version":3,"file":"transition-styles.d.ts","sourceRoot":"","sources":["../../../src/providers/transition-styles.tsx"],"names":[],"mappings":"AACA,OAAO,EAAqB,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE7E,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,oBAAoB,CAAC;AAEtE,KAAK,KAAK,GAAG;IACZ,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,CAAC;AAUF,wBAAgB,wBAAwB,CAAC,EAAE,QAAQ,EAAE,EAAE,KAAK,2CA8B3D;AAED,wBAAgB,mBAAmB;eApCtB,UAAU,CAAC,OAAO,eAAe,CAAC,2BAA2B,CAAC,CAAC;EA4C3E"}
1
+ {"version":3,"file":"transition-styles.d.ts","sourceRoot":"","sources":["../../../src/providers/transition-styles.tsx"],"names":[],"mappings":"AACA,OAAO,EAAqB,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAG7E,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,oBAAoB,CAAC;AAEtE,KAAK,KAAK,GAAG;IACZ,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B,CAAC;AAQF,wBAAgB,wBAAwB,CAAC,EAAE,QAAQ,EAAE,EAAE,KAAK,2CAgC3D;AAED,wBAAgB,mBAAmB;eAtCtB,UAAU,CAAC,OAAO,eAAe,CAAC,2BAA2B,CAAC,CAAC;EA8C3E"}