react-native-screen-transitions 3.6.0-alpha.2 → 3.6.0-alpha.4

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 (160) hide show
  1. package/lib/commonjs/shared/constants.js +5 -6
  2. package/lib/commonjs/shared/constants.js.map +1 -1
  3. package/lib/commonjs/shared/hooks/navigation/use-stack.js.map +1 -1
  4. package/lib/commonjs/shared/providers/screen/animation/helpers/build-screen-transition-options.js +2 -1
  5. package/lib/commonjs/shared/providers/screen/animation/helpers/build-screen-transition-options.js.map +1 -1
  6. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js +33 -3
  7. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
  8. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.js +2 -2
  9. package/lib/commonjs/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.js.map +1 -1
  10. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js +8 -4
  11. package/lib/commonjs/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  12. package/lib/commonjs/shared/providers/screen/animation/helpers/selected-interpolator-options.js +1 -1
  13. package/lib/commonjs/shared/providers/screen/animation/helpers/selected-interpolator-options.js.map +1 -1
  14. package/lib/commonjs/shared/providers/screen/animation/helpers/stack-progress.js +25 -0
  15. package/lib/commonjs/shared/providers/screen/animation/helpers/stack-progress.js.map +1 -0
  16. package/lib/commonjs/shared/providers/screen/animation/helpers/use-build-transition-state.js +4 -4
  17. package/lib/commonjs/shared/providers/screen/animation/helpers/use-build-transition-state.js.map +1 -1
  18. package/lib/commonjs/shared/providers/screen/gestures/shared/policy.js +13 -4
  19. package/lib/commonjs/shared/providers/screen/gestures/shared/policy.js.map +1 -1
  20. package/lib/commonjs/shared/providers/screen/options/helpers.js +10 -3
  21. package/lib/commonjs/shared/providers/screen/options/helpers.js.map +1 -1
  22. package/lib/commonjs/shared/providers/stack/direct.provider.js +1 -3
  23. package/lib/commonjs/shared/providers/stack/direct.provider.js.map +1 -1
  24. package/lib/commonjs/shared/providers/stack/helpers/use-stack-derived.js +2 -12
  25. package/lib/commonjs/shared/providers/stack/helpers/use-stack-derived.js.map +1 -1
  26. package/lib/commonjs/shared/providers/stack/managed.provider.js +1 -3
  27. package/lib/commonjs/shared/providers/stack/managed.provider.js.map +1 -1
  28. package/lib/commonjs/shared/stores/animation.store.js +5 -3
  29. package/lib/commonjs/shared/stores/animation.store.js.map +1 -1
  30. package/lib/commonjs/shared/utils/bounds/index.js +3 -2
  31. package/lib/commonjs/shared/utils/bounds/index.js.map +1 -1
  32. package/lib/commonjs/shared/utils/bounds/navigation/reveal/build.js +36 -15
  33. package/lib/commonjs/shared/utils/bounds/navigation/reveal/build.js.map +1 -1
  34. package/lib/commonjs/shared/utils/bounds/navigation/reveal/math.js +24 -4
  35. package/lib/commonjs/shared/utils/bounds/navigation/reveal/math.js.map +1 -1
  36. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js +2 -2
  37. package/lib/commonjs/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  38. package/lib/module/shared/constants.js +4 -5
  39. package/lib/module/shared/constants.js.map +1 -1
  40. package/lib/module/shared/hooks/navigation/use-stack.js.map +1 -1
  41. package/lib/module/shared/providers/screen/animation/helpers/build-screen-transition-options.js +2 -1
  42. package/lib/module/shared/providers/screen/animation/helpers/build-screen-transition-options.js.map +1 -1
  43. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js +33 -3
  44. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/index.js.map +1 -1
  45. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.js +2 -2
  46. package/lib/module/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.js.map +1 -1
  47. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js +8 -4
  48. package/lib/module/shared/providers/screen/animation/helpers/pipeline.js.map +1 -1
  49. package/lib/module/shared/providers/screen/animation/helpers/selected-interpolator-options.js +1 -1
  50. package/lib/module/shared/providers/screen/animation/helpers/selected-interpolator-options.js.map +1 -1
  51. package/lib/module/shared/providers/screen/animation/helpers/stack-progress.js +20 -0
  52. package/lib/module/shared/providers/screen/animation/helpers/stack-progress.js.map +1 -0
  53. package/lib/module/shared/providers/screen/animation/helpers/use-build-transition-state.js +4 -4
  54. package/lib/module/shared/providers/screen/animation/helpers/use-build-transition-state.js.map +1 -1
  55. package/lib/module/shared/providers/screen/gestures/shared/policy.js +14 -5
  56. package/lib/module/shared/providers/screen/gestures/shared/policy.js.map +1 -1
  57. package/lib/module/shared/providers/screen/options/helpers.js +11 -4
  58. package/lib/module/shared/providers/screen/options/helpers.js.map +1 -1
  59. package/lib/module/shared/providers/stack/direct.provider.js +1 -3
  60. package/lib/module/shared/providers/stack/direct.provider.js.map +1 -1
  61. package/lib/module/shared/providers/stack/helpers/use-stack-derived.js +2 -12
  62. package/lib/module/shared/providers/stack/helpers/use-stack-derived.js.map +1 -1
  63. package/lib/module/shared/providers/stack/managed.provider.js +1 -3
  64. package/lib/module/shared/providers/stack/managed.provider.js.map +1 -1
  65. package/lib/module/shared/stores/animation.store.js +5 -3
  66. package/lib/module/shared/stores/animation.store.js.map +1 -1
  67. package/lib/module/shared/types/animation.types.js +2 -1
  68. package/lib/module/shared/types/animation.types.js.map +1 -1
  69. package/lib/module/shared/types/bounds.types.js.map +1 -1
  70. package/lib/module/shared/utils/bounds/index.js +3 -2
  71. package/lib/module/shared/utils/bounds/index.js.map +1 -1
  72. package/lib/module/shared/utils/bounds/navigation/reveal/build.js +38 -17
  73. package/lib/module/shared/utils/bounds/navigation/reveal/build.js.map +1 -1
  74. package/lib/module/shared/utils/bounds/navigation/reveal/math.js +24 -5
  75. package/lib/module/shared/utils/bounds/navigation/reveal/math.js.map +1 -1
  76. package/lib/module/shared/utils/bounds/navigation/zoom/build.js +2 -2
  77. package/lib/module/shared/utils/bounds/navigation/zoom/build.js.map +1 -1
  78. package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts +4 -207
  79. package/lib/typescript/shared/components/create-boundary-component/components/boundary-target.d.ts.map +1 -1
  80. package/lib/typescript/shared/components/create-boundary-component/index.d.ts +2 -2
  81. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts +1 -1
  82. package/lib/typescript/shared/components/overlay/variations/overlay-host.d.ts.map +1 -1
  83. package/lib/typescript/shared/components/scene-view.d.ts +1 -1
  84. package/lib/typescript/shared/components/scene-view.d.ts.map +1 -1
  85. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts +2 -2
  86. package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts.map +1 -1
  87. package/lib/typescript/shared/constants.d.ts +3 -2
  88. package/lib/typescript/shared/constants.d.ts.map +1 -1
  89. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts +0 -1
  90. package/lib/typescript/shared/hooks/navigation/use-stack.d.ts.map +1 -1
  91. package/lib/typescript/shared/index.d.ts +14 -14
  92. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/index.d.ts +2 -2
  93. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/index.d.ts.map +1 -1
  94. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.d.ts +1 -1
  95. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.d.ts.map +1 -1
  96. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/types.d.ts +2 -1
  97. package/lib/typescript/shared/providers/screen/animation/helpers/hydrate-transition-state/types.d.ts.map +1 -1
  98. package/lib/typescript/shared/providers/screen/animation/helpers/pipeline.d.ts.map +1 -1
  99. package/lib/typescript/shared/providers/screen/animation/helpers/selected-interpolator-options.d.ts.map +1 -1
  100. package/lib/typescript/shared/providers/screen/animation/helpers/stack-progress.d.ts +3 -0
  101. package/lib/typescript/shared/providers/screen/animation/helpers/stack-progress.d.ts.map +1 -0
  102. package/lib/typescript/shared/providers/screen/animation/helpers/use-build-transition-state.d.ts +2 -1
  103. package/lib/typescript/shared/providers/screen/animation/helpers/use-build-transition-state.d.ts.map +1 -1
  104. package/lib/typescript/shared/providers/screen/gestures/shared/policy.d.ts +4 -4
  105. package/lib/typescript/shared/providers/screen/gestures/shared/policy.d.ts.map +1 -1
  106. package/lib/typescript/shared/providers/screen/options/helpers.d.ts.map +1 -1
  107. package/lib/typescript/shared/providers/screen/options/types.d.ts +2 -1
  108. package/lib/typescript/shared/providers/screen/options/types.d.ts.map +1 -1
  109. package/lib/typescript/shared/providers/screen/styles/components/maybe-floating-container.d.ts +1 -1
  110. package/lib/typescript/shared/providers/screen/styles/components/maybe-floating-container.d.ts.map +1 -1
  111. package/lib/typescript/shared/providers/stack/direct.provider.d.ts +1 -1
  112. package/lib/typescript/shared/providers/stack/direct.provider.d.ts.map +1 -1
  113. package/lib/typescript/shared/providers/stack/helpers/use-stack-derived.d.ts +5 -5
  114. package/lib/typescript/shared/providers/stack/helpers/use-stack-derived.d.ts.map +1 -1
  115. package/lib/typescript/shared/providers/stack/managed.provider.d.ts +1 -1
  116. package/lib/typescript/shared/providers/stack/managed.provider.d.ts.map +1 -1
  117. package/lib/typescript/shared/stores/animation.store.d.ts +4 -3
  118. package/lib/typescript/shared/stores/animation.store.d.ts.map +1 -1
  119. package/lib/typescript/shared/types/animation.types.d.ts +7 -3
  120. package/lib/typescript/shared/types/animation.types.d.ts.map +1 -1
  121. package/lib/typescript/shared/types/bounds.types.d.ts +69 -1
  122. package/lib/typescript/shared/types/bounds.types.d.ts.map +1 -1
  123. package/lib/typescript/shared/types/index.d.ts +2 -2
  124. package/lib/typescript/shared/types/index.d.ts.map +1 -1
  125. package/lib/typescript/shared/types/screen.types.d.ts +13 -26
  126. package/lib/typescript/shared/types/screen.types.d.ts.map +1 -1
  127. package/lib/typescript/shared/utils/bounds/index.d.ts.map +1 -1
  128. package/lib/typescript/shared/utils/bounds/navigation/reveal/build.d.ts +1 -1
  129. package/lib/typescript/shared/utils/bounds/navigation/reveal/build.d.ts.map +1 -1
  130. package/lib/typescript/shared/utils/bounds/navigation/reveal/math.d.ts +12 -2
  131. package/lib/typescript/shared/utils/bounds/navigation/reveal/math.d.ts.map +1 -1
  132. package/lib/typescript/shared/utils/bounds/navigation/reveal/types.d.ts +2 -1
  133. package/lib/typescript/shared/utils/bounds/navigation/reveal/types.d.ts.map +1 -1
  134. package/package.json +4 -3
  135. package/src/shared/constants.ts +6 -4
  136. package/src/shared/hooks/navigation/use-stack.tsx +0 -1
  137. package/src/shared/providers/screen/animation/helpers/build-screen-transition-options.ts +2 -2
  138. package/src/shared/providers/screen/animation/helpers/hydrate-transition-state/index.ts +58 -4
  139. package/src/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.ts +2 -1
  140. package/src/shared/providers/screen/animation/helpers/hydrate-transition-state/types.ts +2 -1
  141. package/src/shared/providers/screen/animation/helpers/pipeline.ts +20 -6
  142. package/src/shared/providers/screen/animation/helpers/selected-interpolator-options.ts +0 -2
  143. package/src/shared/providers/screen/animation/helpers/stack-progress.ts +29 -0
  144. package/src/shared/providers/screen/animation/helpers/use-build-transition-state.ts +5 -12
  145. package/src/shared/providers/screen/gestures/shared/policy.ts +20 -7
  146. package/src/shared/providers/screen/options/helpers.ts +22 -9
  147. package/src/shared/providers/screen/options/types.ts +2 -1
  148. package/src/shared/providers/stack/direct.provider.tsx +3 -13
  149. package/src/shared/providers/stack/helpers/use-stack-derived.ts +6 -15
  150. package/src/shared/providers/stack/managed.provider.tsx +2 -6
  151. package/src/shared/stores/animation.store.ts +6 -3
  152. package/src/shared/types/animation.types.ts +11 -3
  153. package/src/shared/types/bounds.types.ts +72 -1
  154. package/src/shared/types/index.ts +2 -0
  155. package/src/shared/types/screen.types.ts +13 -26
  156. package/src/shared/utils/bounds/index.ts +3 -1
  157. package/src/shared/utils/bounds/navigation/reveal/build.ts +56 -24
  158. package/src/shared/utils/bounds/navigation/reveal/math.ts +34 -4
  159. package/src/shared/utils/bounds/navigation/reveal/types.ts +2 -0
  160. package/src/shared/utils/bounds/navigation/zoom/build.ts +2 -2
@@ -1,7 +1,7 @@
1
1
  import type { MeasuredDimensions } from "react-native-reanimated";
2
2
  import type { ScreenTransitionOptions, ScreenTransitionState } from "./types/animation.types";
3
3
  import type { ActivationArea, GestureProgressMode } from "./types/gesture.types";
4
- import type { Layout, SheetScrollGestureBehavior } from "./types/screen.types";
4
+ import type { GestureTracking, Layout, SheetScrollGestureBehavior } from "./types/screen.types";
5
5
  import type { BaseStackRoute } from "./types/stack.types";
6
6
  /**
7
7
  * Masked view integration
@@ -26,7 +26,7 @@ export declare const DEFAULT_SCREEN_TRANSITION_OPTIONS: ScreenTransitionOptions;
26
26
  /**
27
27
  * Creates a new screen transition state object
28
28
  */
29
- export declare const createScreenTransitionState: (route: BaseStackRoute, meta?: Record<string, unknown>, navigationMaskEnabled?: boolean, options?: ScreenTransitionOptions) => ScreenTransitionState;
29
+ export declare const createScreenTransitionState: (route: BaseStackRoute, meta?: Record<string, unknown>, options?: ScreenTransitionOptions) => ScreenTransitionState;
30
30
  /**
31
31
  * Default screen transition state
32
32
  */
@@ -75,6 +75,7 @@ export declare const DEFAULT_GESTURE_SNAP_VELOCITY_IMPACT = 0.1;
75
75
  export declare const DEFAULT_GESTURE_SENSITIVITY = 1;
76
76
  export declare const DEFAULT_GESTURE_RELEASE_VELOCITY_SCALE = 1;
77
77
  export declare const DEFAULT_GESTURE_DIRECTION = "horizontal";
78
+ export declare const DEFAULT_GESTURE_TRACKING: GestureTracking;
78
79
  export declare const DEFAULT_GESTURE_PROGRESS_MODE: GestureProgressMode;
79
80
  export declare const DEFAULT_GESTURE_SNAP_LOCKED = false;
80
81
  export declare const DEFAULT_GESTURE_ACTIVATION_AREA: ActivationArea;
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/shared/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,KAAK,EACX,uBAAuB,EACvB,qBAAqB,EACrB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EACX,cAAc,EACd,mBAAmB,EACnB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EAAE,MAAM,EAAE,0BAA0B,EAAE,MAAM,sBAAsB,CAAC;AAC/E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D;;;GAGG;AACH,eAAO,MAAM,aAAa,iBAAiB,CAAC;AAC5C,eAAO,MAAM,kBAAkB,oBAAoB,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,gCAAgC,qCACV,CAAC;AACpC,eAAO,MAAM,kCAAkC,uCACV,CAAC;AAEtC;;GAEG;AACH,eAAO,MAAM,SAAS,cAAoB,CAAC;AAC3C,eAAO,MAAM,aAAa;;EAAgC,CAAC;AAC3D,eAAO,MAAM,QAAQ,cAAoB,CAAC;AAsC1C,eAAO,MAAM,iCAAiC,EAAE,uBAC9B,CAAC;AAEnB;;GAEG;AACH,eAAO,MAAM,2BAA2B,GACvC,OAAO,cAAc,EACrB,OAAO,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,+BAA6B,EAC7B,UAAS,uBAA2D,KAClE,qBAqBD,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,+BAA+B,EAAE,qBAqB3C,CAAC;AAEJ;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ1B,CAAC;AACH,eAAO,MAAM,WAAW,iBAAkB,CAAC;AAC3C,eAAO,MAAM,UAAU,iBAAkB,CAAC;AAE1C,eAAO,MAAM,qBAAqB,GACjC,YAAY,MAAM,KAChB,kBAUF,CAAC;AAEF,eAAO,MAAM,+BAA+B,MAAM,CAAC;AACnD,eAAO,MAAM,oCAAoC,MAAM,CAAC;AACxD,eAAO,MAAM,2BAA2B,IAAI,CAAC;AAC7C,eAAO,MAAM,sCAAsC,IAAI,CAAC;AACxD,eAAO,MAAM,yBAAyB,eAAe,CAAC;AACtD,eAAO,MAAM,6BAA6B,EAAE,mBAC1B,CAAC;AACnB,eAAO,MAAM,2BAA2B,QAAQ,CAAC;AACjD,eAAO,MAAM,+BAA+B,EAAE,cAAyB,CAAC;AACxE,eAAO,MAAM,qCAAqC,EAAE,0BAC9B,CAAC;AAEvB,eAAO,MAAM,MAAM,SAAwB,CAAC;AAE5C,eAAO,MAAM,IAAI,IAAI,CAAC;AACtB,eAAO,MAAM,KAAK,IAAI,CAAC;AAEvB;;GAEG;AACH,eAAO,MAAM,OAAO,UAAO,CAAC;AAE5B;;;GAGG;AACH,eAAO,MAAM,8BAA8B,IAAI,CAAC;AAEhD;;GAEG;AACH,eAAO,MAAM,iCAAiC,QAAQ,CAAC"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/shared/constants.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,KAAK,EACX,uBAAuB,EACvB,qBAAqB,EACrB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EACX,cAAc,EACd,mBAAmB,EACnB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,KAAK,EACX,eAAe,EACf,MAAM,EACN,0BAA0B,EAC1B,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAE1D;;;GAGG;AACH,eAAO,MAAM,aAAa,iBAAiB,CAAC;AAC5C,eAAO,MAAM,kBAAkB,oBAAoB,CAAC;AAEpD;;GAEG;AACH,eAAO,MAAM,gCAAgC,qCACV,CAAC;AACpC,eAAO,MAAM,kCAAkC,uCACV,CAAC;AAEtC;;GAEG;AACH,eAAO,MAAM,SAAS,cAAoB,CAAC;AAC3C,eAAO,MAAM,aAAa;;EAAgC,CAAC;AAC3D,eAAO,MAAM,QAAQ,cAAoB,CAAC;AAsC1C,eAAO,MAAM,iCAAiC,EAAE,uBAC9B,CAAC;AAEnB;;GAEG;AACH,eAAO,MAAM,2BAA2B,GACvC,OAAO,cAAc,EACrB,OAAO,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,UAAS,uBAA2D,KAClE,qBAoBD,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,+BAA+B,EAAE,qBAoB3C,CAAC;AAEJ;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ1B,CAAC;AACH,eAAO,MAAM,WAAW,iBAAkB,CAAC;AAC3C,eAAO,MAAM,UAAU,iBAAkB,CAAC;AAE1C,eAAO,MAAM,qBAAqB,GACjC,YAAY,MAAM,KAChB,kBAUF,CAAC;AAEF,eAAO,MAAM,+BAA+B,MAAM,CAAC;AACnD,eAAO,MAAM,oCAAoC,MAAM,CAAC;AACxD,eAAO,MAAM,2BAA2B,IAAI,CAAC;AAC7C,eAAO,MAAM,sCAAsC,IAAI,CAAC;AACxD,eAAO,MAAM,yBAAyB,eAAe,CAAC;AACtD,eAAO,MAAM,wBAAwB,EAAE,eAAwB,CAAC;AAChE,eAAO,MAAM,6BAA6B,EAAE,mBAC1B,CAAC;AACnB,eAAO,MAAM,2BAA2B,QAAQ,CAAC;AACjD,eAAO,MAAM,+BAA+B,EAAE,cAAyB,CAAC;AACxE,eAAO,MAAM,qCAAqC,EAAE,0BAC9B,CAAC;AAEvB,eAAO,MAAM,MAAM,SAAwB,CAAC;AAE5C,eAAO,MAAM,IAAI,IAAI,CAAC;AACtB,eAAO,MAAM,KAAK,IAAI,CAAC;AAEvB;;GAEG;AACH,eAAO,MAAM,OAAO,UAAO,CAAC;AAE5B;;;GAGG;AACH,eAAO,MAAM,8BAA8B,IAAI,CAAC;AAEhD;;GAEG;AACH,eAAO,MAAM,iCAAiC,QAAQ,CAAC"}
@@ -17,7 +17,6 @@ export interface StackContextValue extends StackCoreContextValue {
17
17
  routeKeys: string[];
18
18
  routes: Route<string>[];
19
19
  scenes: StackScene[];
20
- stackProgress: DerivedValue<number>;
21
20
  optimisticFocusedIndex: DerivedValue<number>;
22
21
  }
23
22
  export declare const StackContext: import("react").Context<StackContextValue | null>;
@@ -1 +1 @@
1
- {"version":3,"file":"use-stack.d.ts","sourceRoot":"","sources":["../../../../../src/shared/hooks/navigation/use-stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAEtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,KAAK,EACX,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,EACd,cAAc,EACd,MAAM,yBAAyB,CAAC;AAEjC,MAAM,WAAW,eAAe,CAC/B,MAAM,SAAS,cAAc,GAAG,KAAK,CAAC,MAAM,CAAC,EAC7C,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,CAC5D,SAAQ,mBAAmB,CAAC,MAAM,EAAE,WAAW,CAAC;IACjD,OAAO,EAAE,mBAAmB,CAAC,SAAS,CAAC,GAAG;QACzC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,KAAK,CAAC,SAAS,CAAC;QACnD,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAC/B,iBAAiB,CAAC,EAAE,OAAO,CAAC;KAC5B,CAAC;CACF;AAED,MAAM,MAAM,UAAU,CAAC,WAAW,SAAS,eAAe,GAAG,eAAe,IAC3E,cAAc,CAAC,WAAW,CAAC,CAAC;AAE7B,MAAM,WAAW,iBAAkB,SAAQ,qBAAqB;IAC/D,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC;IACxB,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IACpC,sBAAsB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;CAC7C;AAED,eAAO,MAAM,YAAY,mDAAgD,CAAC;AAG1E,wBAAgB,QAAQ,CAAC,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,KAAK,CAAC,CAQ7E"}
1
+ {"version":3,"file":"use-stack.d.ts","sourceRoot":"","sources":["../../../../../src/shared/hooks/navigation/use-stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAEtD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAC5D,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,KAAK,EACX,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,EACd,cAAc,EACd,MAAM,yBAAyB,CAAC;AAEjC,MAAM,WAAW,eAAe,CAC/B,MAAM,SAAS,cAAc,GAAG,KAAK,CAAC,MAAM,CAAC,EAC7C,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,CAC5D,SAAQ,mBAAmB,CAAC,MAAM,EAAE,WAAW,CAAC;IACjD,OAAO,EAAE,mBAAmB,CAAC,SAAS,CAAC,GAAG;QACzC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,YAAY,KAAK,KAAK,CAAC,SAAS,CAAC;QACnD,YAAY,CAAC,EAAE,OAAO,CAAC;QACvB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;QAC/B,iBAAiB,CAAC,EAAE,OAAO,CAAC;KAC5B,CAAC;CACF;AAED,MAAM,MAAM,UAAU,CAAC,WAAW,SAAS,eAAe,GAAG,eAAe,IAC3E,cAAc,CAAC,WAAW,CAAC,CAAC;AAE7B,MAAM,WAAW,iBAAkB,SAAQ,qBAAqB;IAC/D,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC;IACxB,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,sBAAsB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;CAC7C;AAED,eAAO,MAAM,YAAY,mDAAgD,CAAC;AAG1E,wBAAgB,QAAQ,CAAC,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,KAAK,CAAC,CAQ7E"}
@@ -8,7 +8,7 @@ declare const _default: {
8
8
  Boundary: {
9
9
  View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<never>>>;
10
10
  Trigger: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<Omit<import("react-native").PressableProps & import("react").RefAttributes<View>, "id"> & import("./components/create-boundary-component/types").BoundaryOwnProps & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
11
- Target: import("react").NamedExoticComponent<{
11
+ Target: import("react").MemoExoticComponent<(props: {
12
12
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
13
13
  pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
14
14
  children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
@@ -214,7 +214,7 @@ declare const _default: {
214
214
  entering?: import("react-native-reanimated").EntryOrExitLayoutType;
215
215
  exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
216
216
  }> | import("react-native-reanimated").CSSStyle<import("react-native").ViewProps>> | undefined;
217
- }>;
217
+ }) => import("react/jsx-runtime").JSX.Element>;
218
218
  };
219
219
  View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
220
220
  id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
@@ -781,7 +781,7 @@ declare const _default: {
781
781
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
782
782
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
783
783
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
784
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
784
+ keyboardShouldPersistTaps?: boolean | "never" | "always" | "handled" | import("react-native-reanimated").SharedValue<boolean | "never" | "always" | "handled" | undefined> | undefined;
785
785
  onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
786
786
  onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
787
787
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -809,7 +809,7 @@ declare const _default: {
809
809
  centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
810
810
  contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
811
811
  contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
812
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
812
+ contentInsetAdjustmentBehavior?: "never" | "always" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"never" | "always" | "automatic" | "scrollableAxes" | undefined> | undefined;
813
813
  directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
814
814
  maintainVisibleContentPosition?: {
815
815
  autoscrollToTopThreshold?: number | null | undefined;
@@ -830,7 +830,7 @@ declare const _default: {
830
830
  zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
831
831
  endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
832
832
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
833
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
833
+ overScrollMode?: "auto" | "never" | "always" | import("react-native-reanimated").SharedValue<"auto" | "never" | "always" | undefined> | undefined;
834
834
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
835
835
  fadingEdgeLength?: number | {
836
836
  start: number;
@@ -956,7 +956,7 @@ declare const _default: {
956
956
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
957
957
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
958
958
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
959
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
959
+ keyboardShouldPersistTaps?: boolean | "never" | "always" | "handled" | import("react-native-reanimated").SharedValue<boolean | "never" | "always" | "handled" | undefined> | undefined;
960
960
  onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
961
961
  onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
962
962
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -984,7 +984,7 @@ declare const _default: {
984
984
  centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
985
985
  contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
986
986
  contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
987
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
987
+ contentInsetAdjustmentBehavior?: "never" | "always" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"never" | "always" | "automatic" | "scrollableAxes" | undefined> | undefined;
988
988
  directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
989
989
  maintainVisibleContentPosition?: {
990
990
  autoscrollToTopThreshold?: number | null | undefined;
@@ -1005,7 +1005,7 @@ declare const _default: {
1005
1005
  zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1006
1006
  endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1007
1007
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1008
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1008
+ overScrollMode?: "auto" | "never" | "always" | import("react-native-reanimated").SharedValue<"auto" | "never" | "always" | undefined> | undefined;
1009
1009
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1010
1010
  fadingEdgeLength?: number | {
1011
1011
  start: number;
@@ -1137,7 +1137,7 @@ declare const _default: {
1137
1137
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1138
1138
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1139
1139
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1140
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1140
+ keyboardShouldPersistTaps?: boolean | "never" | "always" | "handled" | import("react-native-reanimated").SharedValue<boolean | "never" | "always" | "handled" | undefined> | undefined;
1141
1141
  onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
1142
1142
  onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
1143
1143
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -1165,7 +1165,7 @@ declare const _default: {
1165
1165
  centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1166
1166
  contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1167
1167
  contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1168
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1168
+ contentInsetAdjustmentBehavior?: "never" | "always" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"never" | "always" | "automatic" | "scrollableAxes" | undefined> | undefined;
1169
1169
  directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1170
1170
  maintainVisibleContentPosition?: {
1171
1171
  autoscrollToTopThreshold?: number | null | undefined;
@@ -1186,7 +1186,7 @@ declare const _default: {
1186
1186
  zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1187
1187
  endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1188
1188
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1189
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1189
+ overScrollMode?: "auto" | "never" | "always" | import("react-native-reanimated").SharedValue<"auto" | "never" | "always" | undefined> | undefined;
1190
1190
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1191
1191
  fadingEdgeLength?: number | {
1192
1192
  start: number;
@@ -1379,7 +1379,7 @@ declare const _default: {
1379
1379
  decelerationRate?: number | "normal" | "fast" | import("react-native-reanimated").SharedValue<number | "normal" | "fast" | undefined> | undefined;
1380
1380
  invertStickyHeaders?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1381
1381
  keyboardDismissMode?: "none" | "interactive" | "on-drag" | import("react-native-reanimated").SharedValue<"none" | "interactive" | "on-drag" | undefined> | undefined;
1382
- keyboardShouldPersistTaps?: boolean | "always" | "never" | "handled" | import("react-native-reanimated").SharedValue<boolean | "always" | "never" | "handled" | undefined> | undefined;
1382
+ keyboardShouldPersistTaps?: boolean | "never" | "always" | "handled" | import("react-native-reanimated").SharedValue<boolean | "never" | "always" | "handled" | undefined> | undefined;
1383
1383
  onScrollBeginDrag?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
1384
1384
  onMomentumScrollBegin?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
1385
1385
  pagingEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
@@ -1407,7 +1407,7 @@ declare const _default: {
1407
1407
  centerContent?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1408
1408
  contentInset?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
1409
1409
  contentOffset?: import("react-native").PointProp | import("react-native-reanimated").SharedValue<import("react-native").PointProp | undefined> | undefined;
1410
- contentInsetAdjustmentBehavior?: "always" | "never" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"always" | "never" | "automatic" | "scrollableAxes" | undefined> | undefined;
1410
+ contentInsetAdjustmentBehavior?: "never" | "always" | "automatic" | "scrollableAxes" | import("react-native-reanimated").SharedValue<"never" | "always" | "automatic" | "scrollableAxes" | undefined> | undefined;
1411
1411
  directionalLockEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1412
1412
  maintainVisibleContentPosition?: {
1413
1413
  autoscrollToTopThreshold?: number | null | undefined;
@@ -1428,7 +1428,7 @@ declare const _default: {
1428
1428
  zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
1429
1429
  endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
1430
1430
  scrollPerfTag?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
1431
- overScrollMode?: "auto" | "always" | "never" | import("react-native-reanimated").SharedValue<"auto" | "always" | "never" | undefined> | undefined;
1431
+ overScrollMode?: "auto" | "never" | "always" | import("react-native-reanimated").SharedValue<"auto" | "never" | "always" | undefined> | undefined;
1432
1432
  nestedScrollEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
1433
1433
  fadingEdgeLength?: number | {
1434
1434
  start: number;
@@ -1,5 +1,5 @@
1
- import type { ScreenTransitionOptions } from "../../../../../types/animation.types";
1
+ import type { TransitionInterpolatorOptions } from "../../../../../types/animation.types";
2
2
  import type { Layout } from "../../../../../types/screen.types";
3
3
  import type { BuiltState } from "./types";
4
- export declare const hydrateTransitionState: (s: BuiltState, dimensions: Layout, effectiveOptions?: ScreenTransitionOptions) => import("../../../../../types/animation.types").ScreenTransitionState;
4
+ export declare const hydrateTransitionState: (s: BuiltState, dimensions: Layout, effectiveOptions?: TransitionInterpolatorOptions) => import("../../../../../types").ScreenTransitionState;
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AACpF,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mCAAmC,CAAC;AAYhE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAK1C,eAAO,MAAM,sBAAsB,GAClC,GAAG,UAAU,EACb,YAAY,MAAM,EAClB,mBAAmB,uBAAuB,yEAoI1C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAEX,6BAA6B,EAC7B,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mCAAmC,CAAC;AAYhE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AA4C1C,eAAO,MAAM,sBAAsB,GAClC,GAAG,UAAU,EACb,YAAY,MAAM,EAClB,mBAAmB,6BAA6B,yDAgJhD,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import type { SnapBounds } from "./types";
2
- export declare const getResolvedSnapBounds: (snapPoints: number[], resolvedAutoSnap: number | null) => SnapBounds | null;
2
+ export declare const getResolvedSnapBounds: (snapPoints: number[], resolvedAutoSnap: number | null, canDismiss?: boolean) => SnapBounds | null;
3
3
  export declare const computeAnimatedSnapIndex: (progress: number, snapPoints: number[], resolvedAutoSnap: number | null) => number;
4
4
  export declare const computeTargetSnapIndex: (targetProgress: number, snapPoints: number[], resolvedAutoSnap: number | null) => number;
5
5
  //# sourceMappingURL=snap-points.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"snap-points.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AA8C1C,eAAO,MAAM,qBAAqB,GACjC,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,KAC7B,UAAU,GAAG,IAgCf,CAAC;AAEF,eAAO,MAAM,wBAAwB,GACpC,UAAU,MAAM,EAChB,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,KAC7B,MAkDF,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAClC,gBAAgB,MAAM,EACtB,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,KAC7B,MA2CF,CAAC"}
1
+ {"version":3,"file":"snap-points.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/snap-points.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AA8C1C,eAAO,MAAM,qBAAqB,GACjC,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,EAC/B,oBAAiB,KACf,UAAU,GAAG,IAgCf,CAAC;AAEF,eAAO,MAAM,wBAAwB,GACpC,UAAU,MAAM,EAChB,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,KAC7B,MAkDF,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAClC,gBAAgB,MAAM,EACtB,YAAY,MAAM,EAAE,EACpB,kBAAkB,MAAM,GAAG,IAAI,KAC7B,MA2CF,CAAC"}
@@ -5,6 +5,7 @@ import type { Layout } from "../../../../../types/screen.types";
5
5
  import type { BaseStackRoute } from "../../../../../types/stack.types";
6
6
  export type BuiltState = {
7
7
  progress: SharedValue<number>;
8
+ effectiveProgress: SharedValue<number>;
8
9
  willAnimate: SharedValue<number>;
9
10
  closing: SharedValue<number>;
10
11
  progressAnimating: SharedValue<number>;
@@ -13,7 +14,7 @@ export type BuiltState = {
13
14
  route: BaseStackRoute;
14
15
  meta?: Record<string, unknown>;
15
16
  options: ScreenTransitionOptions;
16
- navigationMaskEnabled: boolean;
17
+ optionsSlot: ScreenTransitionOptions;
17
18
  targetProgress: SharedValue<number>;
18
19
  logicalSettleFrameCount: SharedValue<number>;
19
20
  resolvedAutoSnapPoint: SharedValue<number>;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,KAAK,EACX,uBAAuB,EACvB,qBAAqB,EACrB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mCAAmC,CAAC;AAChE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAEvE,MAAM,MAAM,UAAU,GAAG;IACxB,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,OAAO,EAAE,eAAe,CAAC;IACzB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/B,OAAO,EAAE,uBAAuB,CAAC;IACjC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,cAAc,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7C,qBAAqB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC3C,qBAAqB,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAClD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,uBAAuB,EAAE,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,qBAAqB,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,6BAA6B,GAAG;IAC3C,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/shared/providers/screen/animation/helpers/hydrate-transition-state/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAC3E,OAAO,KAAK,EACX,uBAAuB,EACvB,qBAAqB,EACrB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,mCAAmC,CAAC;AAChE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAEvE,MAAM,MAAM,UAAU,GAAG;IACxB,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,OAAO,EAAE,eAAe,CAAC;IACzB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/B,OAAO,EAAE,uBAAuB,CAAC;IACjC,WAAW,EAAE,uBAAuB,CAAC;IACrC,cAAc,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7C,qBAAqB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC3C,qBAAqB,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAClD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,uBAAuB,EAAE,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,qBAAqB,CAAC;CACjC,CAAC;AAEF,MAAM,MAAM,6BAA6B,GAAG;IAC3C,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACZ,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/pipeline.ts"],"names":[],"mappings":"AACA,OAAO,EACN,KAAK,YAAY,EACjB,KAAK,WAAW,EAGhB,MAAM,yBAAyB,CAAC;AAIjC,OAAO,KAAK,EACX,wBAAwB,EACxB,uBAAuB,EACvB,MAAM,mCAAmC,CAAC;AAM3C,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAGnF,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC,wBAAwB,EAAE,QAAQ,CAAC,CAAC;AAE/E,UAAU,uBAAuB;IAChC,uBAAuB,EAAE,WAAW,CAAC,uBAAuB,CAAC,CAAC;IAC9D,+BAA+B,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IACtD,2BAA2B,EAAE,WAAW,CAAC,2BAA2B,CAAC,CAAC;IACtE,gBAAgB,EAAE,uBAAuB,GAAG,SAAS,CAAC;IACtD,mBAAmB,EAAE,uBAAuB,GAAG,SAAS,CAAC;CACzD;AA0BD,wBAAgB,0BAA0B,IAAI,uBAAuB,CA8GpE"}
1
+ {"version":3,"file":"pipeline.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/pipeline.ts"],"names":[],"mappings":"AAEA,OAAO,EACN,KAAK,YAAY,EACjB,KAAK,WAAW,EAGhB,MAAM,yBAAyB,CAAC;AAKjC,OAAO,KAAK,EACX,wBAAwB,EACxB,uBAAuB,EACvB,MAAM,mCAAmC,CAAC;AAM3C,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,iCAAiC,CAAC;AAInF,MAAM,MAAM,uBAAuB,GAAG,IAAI,CAAC,wBAAwB,EAAE,QAAQ,CAAC,CAAC;AAE/E,UAAU,uBAAuB;IAChC,uBAAuB,EAAE,WAAW,CAAC,uBAAuB,CAAC,CAAC;IAC9D,+BAA+B,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IACtD,2BAA2B,EAAE,WAAW,CAAC,2BAA2B,CAAC,CAAC;IACtE,gBAAgB,EAAE,uBAAuB,GAAG,SAAS,CAAC;IACtD,mBAAmB,EAAE,uBAAuB,GAAG,SAAS,CAAC;CACzD;AA0BD,wBAAgB,0BAA0B,IAAI,uBAAuB,CAyHpE"}
@@ -1 +1 @@
1
- {"version":3,"file":"selected-interpolator-options.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/selected-interpolator-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AAEvF,MAAM,MAAM,yBAAyB,GAAG,SAAS,GAAG,MAAM,CAAC;AAE3D,MAAM,MAAM,2BAA2B,GAAG;IACzC,KAAK,EAAE,yBAAyB,CAAC;IACjC,OAAO,CAAC,EAAE,6BAA6B,CAAC;CACxC,CAAC;AA0EF,eAAO,MAAM,+BAA+B,GAC3C,OAAO,WAAW,CAAC,2BAA2B,CAAC,EAC/C,OAAO,yBAAyB,EAChC,UAAU,6BAA6B,SAavC,CAAC"}
1
+ {"version":3,"file":"selected-interpolator-options.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/selected-interpolator-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mCAAmC,CAAC;AAEvF,MAAM,MAAM,yBAAyB,GAAG,SAAS,GAAG,MAAM,CAAC;AAE3D,MAAM,MAAM,2BAA2B,GAAG;IACzC,KAAK,EAAE,yBAAyB,CAAC;IACjC,OAAO,CAAC,EAAE,6BAA6B,CAAC;CACxC,CAAC;AAwEF,eAAO,MAAM,+BAA+B,GAC3C,OAAO,WAAW,CAAC,2BAA2B,CAAC,EAC/C,OAAO,yBAAyB,EAChC,UAAU,6BAA6B,SAavC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { SharedValue } from "react-native-reanimated";
2
+ export declare const deriveStackProgress: (routeKeys: string[], effectiveProgressValues: SharedValue<number>[], currentIndex: number, fallbackProgress: number, currentRouteKey: string | undefined, currentProgress: number, nextRouteKey: string | undefined, nextProgress: number | undefined) => number;
3
+ //# sourceMappingURL=stack-progress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stack-progress.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/stack-progress.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAE3D,eAAO,MAAM,mBAAmB,GAC/B,WAAW,MAAM,EAAE,EACnB,yBAAyB,WAAW,CAAC,MAAM,CAAC,EAAE,EAC9C,cAAc,MAAM,EACpB,kBAAkB,MAAM,EACxB,iBAAiB,MAAM,GAAG,SAAS,EACnC,iBAAiB,MAAM,EACvB,cAAc,MAAM,GAAG,SAAS,EAChC,cAAc,MAAM,GAAG,SAAS,WAkBhC,CAAC"}
@@ -5,6 +5,7 @@ import type { ScreenTransitionOptions } from "../../../../types/animation.types"
5
5
  import type { BaseDescriptor } from "../../descriptors";
6
6
  type BuiltState = {
7
7
  progress: SharedValue<number>;
8
+ effectiveProgress: SharedValue<number>;
8
9
  willAnimate: SharedValue<number>;
9
10
  closing: SharedValue<number>;
10
11
  progressAnimating: SharedValue<number>;
@@ -13,7 +14,7 @@ type BuiltState = {
13
14
  route: BaseStackRoute;
14
15
  meta?: Record<string, unknown>;
15
16
  options: ScreenTransitionOptions;
16
- navigationMaskEnabled: boolean;
17
+ optionsSlot: ScreenTransitionOptions;
17
18
  targetProgress: SharedValue<number>;
18
19
  logicalSettleFrameCount: SharedValue<number>;
19
20
  resolvedAutoSnapPoint: SharedValue<number>;
@@ -1 +1 @@
1
- {"version":3,"file":"use-build-transition-state.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/use-build-transition-state.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAG3D,OAAO,EAEN,KAAK,eAAe,EACpB,MAAM,kCAAkC,CAAC;AAE1C,OAAO,KAAK,EACX,cAAc,EACd,MAAM,EACN,qBAAqB,EACrB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAIxD,KAAK,UAAU,GAAG;IACjB,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,OAAO,EAAE,eAAe,CAAC;IACzB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/B,OAAO,EAAE,uBAAuB,CAAC;IACjC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,cAAc,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7C,qBAAqB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC3C,qBAAqB,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAClD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,uBAAuB,EAAE,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,qBAAqB,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,uBAAuB,GACnC,YAAY,cAAc,GAAG,SAAS,KACpC,UAAU,GAAG,SAyDf,CAAC"}
1
+ {"version":3,"file":"use-build-transition-state.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/animation/helpers/use-build-transition-state.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAG3D,OAAO,EAEN,KAAK,eAAe,EACpB,MAAM,kCAAkC,CAAC;AAE1C,OAAO,KAAK,EACX,cAAc,EACd,MAAM,EACN,qBAAqB,EACrB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AACjF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAIxD,KAAK,UAAU,GAAG;IACjB,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,OAAO,EAAE,eAAe,CAAC;IACzB,KAAK,EAAE,cAAc,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/B,OAAO,EAAE,uBAAuB,CAAC;IACjC,WAAW,EAAE,uBAAuB,CAAC;IACrC,cAAc,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,uBAAuB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7C,qBAAqB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC3C,qBAAqB,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAClD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,uBAAuB,EAAE,MAAM,EAAE,CAAC;IAClC,SAAS,EAAE,qBAAqB,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,uBAAuB,GACnC,YAAY,cAAc,GAAG,SAAS,KACpC,UAAU,GAAG,SAiDf,CAAC"}
@@ -1,14 +1,14 @@
1
1
  import type { GestureActivationArea, GestureDirection, GestureProgressMode } from "../../../../types/gesture.types";
2
- import type { ScreenTransitionConfig, SheetScrollGestureBehavior, SnapPoint } from "../../../../types/screen.types";
2
+ import type { GestureTracking, ScreenTransitionConfig, SheetScrollGestureBehavior, SnapPoint } from "../../../../types/screen.types";
3
3
  import type { GestureContextType, PanGesturePolicy, PinchGesturePolicy, ScreenGestureConfig, ScreenGestureParticipation } from "../types";
4
4
  export type GesturePolicyOptions = {
5
- experimental_allowDisabledGestureTracking?: boolean;
6
5
  expandViaScrollView?: boolean;
7
6
  gestureActivationArea?: GestureActivationArea;
8
7
  gestureDirection?: GestureDirection | GestureDirection[];
9
8
  gestureDrivesProgress?: boolean;
10
9
  gestureEnabled?: boolean;
11
10
  gestureProgressMode?: GestureProgressMode;
11
+ gestureTracking?: GestureTracking;
12
12
  gestureReleaseVelocityScale?: number;
13
13
  gestureResponseDistance?: number;
14
14
  gestureSensitivity?: number;
@@ -19,11 +19,11 @@ export type GesturePolicyOptions = {
19
19
  snapPoints?: SnapPoint[];
20
20
  transitionSpec?: ScreenTransitionConfig["transitionSpec"];
21
21
  };
22
- export declare const resolveGestureCanTrack: ({ isFirstKey, canDismiss, hasSnapPoints, allowDisabledGestureTracking, }: {
22
+ export declare const resolveGestureCanTrack: ({ isFirstKey, canDismiss, hasSnapPoints, gestureTracking, }: {
23
23
  isFirstKey: boolean;
24
24
  canDismiss: boolean;
25
25
  hasSnapPoints: boolean;
26
- allowDisabledGestureTracking?: boolean;
26
+ gestureTracking?: GestureTracking;
27
27
  }) => boolean;
28
28
  export declare const resolvePanPolicy: (options: GesturePolicyOptions, hasSnapPoints: boolean) => PanGesturePolicy;
29
29
  export declare const resolvePinchPolicy: (options: GesturePolicyOptions, hasSnapPoints: boolean) => PinchGesturePolicy;
@@ -1 +1 @@
1
- {"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/gestures/shared/policy.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EACX,qBAAqB,EACrB,gBAAgB,EAChB,mBAAmB,EACnB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACX,sBAAsB,EACtB,0BAA0B,EAC1B,SAAS,EACT,MAAM,gCAAgC,CAAC;AAIxC,OAAO,KAAK,EACX,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,UAAU,CAAC;AAUlB,MAAM,MAAM,oBAAoB,GAAG;IAClC,yCAAyC,CAAC,EAAE,OAAO,CAAC;IACpD,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,qBAAqB,CAAC,EAAE,qBAAqB,CAAC;IAC9C,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,gBAAgB,EAAE,CAAC;IACzD,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,0BAA0B,CAAC,EAAE,0BAA0B,CAAC;IACxD,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,cAAc,CAAC,EAAE,sBAAsB,CAAC,gBAAgB,CAAC,CAAC;CAC1D,CAAC;AAqFF,eAAO,MAAM,sBAAsB,GAAI,0EAKpC;IACF,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;IACvB,4BAA4B,CAAC,EAAE,OAAO,CAAC;CACvC,YAeA,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAC5B,SAAS,oBAAoB,EAC7B,eAAe,OAAO,KACpB,gBAsBF,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAC9B,SAAS,oBAAoB,EAC7B,eAAe,OAAO,KACpB,kBAcF,CAAC;AA0CF,eAAO,MAAM,0BAA0B,GAAI,0CAIxC;IACF,OAAO,EAAE,sBAAsB,CAAC;IAChC,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,kBAAkB,GAAG,IAAI,CAAC;CAC1C,KAAG,mBAaH,CAAC;AAmDF,eAAO,MAAM,kCAAkC,GAAI,6BAGhD;IACF,aAAa,EAAE,0BAA0B,CAAC;IAC1C,OAAO,EAAE,oBAAoB,CAAC;CAC9B,KAAG,0BAUH,CAAC"}
1
+ {"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/gestures/shared/policy.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EACX,qBAAqB,EACrB,gBAAgB,EAChB,mBAAmB,EACnB,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EACX,eAAe,EACf,sBAAsB,EACtB,0BAA0B,EAC1B,SAAS,EACT,MAAM,gCAAgC,CAAC;AAIxC,OAAO,KAAK,EACX,kBAAkB,EAClB,gBAAgB,EAChB,kBAAkB,EAClB,mBAAmB,EACnB,0BAA0B,EAC1B,MAAM,UAAU,CAAC;AAUlB,MAAM,MAAM,oBAAoB,GAAG;IAClC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,qBAAqB,CAAC,EAAE,qBAAqB,CAAC;IAC9C,gBAAgB,CAAC,EAAE,gBAAgB,GAAG,gBAAgB,EAAE,CAAC;IACzD,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,2BAA2B,CAAC,EAAE,MAAM,CAAC;IACrC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,yBAAyB,CAAC,EAAE,MAAM,CAAC;IACnC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,0BAA0B,CAAC,EAAE,0BAA0B,CAAC;IACxD,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,cAAc,CAAC,EAAE,sBAAsB,CAAC,gBAAgB,CAAC,CAAC;CAC1D,CAAC;AAqFF,eAAO,MAAM,sBAAsB,GAAI,6DAKpC;IACF,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,eAAe,CAAC;CAClC,YAuBA,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAC5B,SAAS,oBAAoB,EAC7B,eAAe,OAAO,KACpB,gBAsBF,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAC9B,SAAS,oBAAoB,EAC7B,eAAe,OAAO,KACpB,kBAcF,CAAC;AAyCF,eAAO,MAAM,0BAA0B,GAAI,0CAIxC;IACF,OAAO,EAAE,sBAAsB,CAAC;IAChC,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,kBAAkB,GAAG,IAAI,CAAC;CAC1C,KAAG,mBAaH,CAAC;AAuDF,eAAO,MAAM,kCAAkC,GAAI,6BAGhD;IACF,aAAa,EAAE,0BAA0B,CAAC;IAC1C,OAAO,EAAE,oBAAoB,CAAC;CAC9B,KAAG,0BAUH,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/screen/options/helpers.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAIX,uBAAuB,EACvB,2BAA2B,EAC3B,MAAM,gBAAgB,CAAC;AAQxB,OAAO,KAAK,EAEX,yBAAyB,EACzB,qBAAqB,EAErB,MAAM,SAAS,CAAC;AAwMjB,eAAO,MAAM,wBAAwB,GACpC,SAAS,uBAAuB,KAC9B,qBAyDF,CAAC;AAEF,eAAO,MAAM,qBAAqB,GACjC,eAAe,yBAAyB,EACxC,MAAM,qBAAqB,SAe3B,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACtC,KAAK,2BAA2B,GAAG,SAAS,EAC5C,eAAe,yBAAyB,SAqExC,CAAC"}
1
+ {"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/screen/options/helpers.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAIX,uBAAuB,EACvB,2BAA2B,EAC3B,MAAM,gBAAgB,CAAC;AAQxB,OAAO,KAAK,EAEX,yBAAyB,EACzB,qBAAqB,EAErB,MAAM,SAAS,CAAC;AAkNjB,eAAO,MAAM,wBAAwB,GACpC,SAAS,uBAAuB,KAC9B,qBA6DF,CAAC;AAEF,eAAO,MAAM,qBAAqB,GACjC,eAAe,yBAAyB,EACxC,MAAM,qBAAqB,SAe3B,CAAC;AAEF,eAAO,MAAM,0BAA0B,GACtC,KAAK,2BAA2B,GAAG,SAAS,EAC5C,eAAe,yBAAyB,SAmExC,CAAC"}
@@ -5,8 +5,9 @@ export type RuntimeOption<T> = SharedValue<T>;
5
5
  export type RequiredScreenOption<K extends keyof ScreenTransitionOptions> = NonNullable<ScreenTransitionOptions[K]>;
6
6
  export type OptionalScreenOption<K extends keyof ScreenTransitionOptions> = ScreenTransitionOptions[K];
7
7
  export type ScreenOptionsSnapshot = {
8
+ navigationMaskEnabled: OptionalScreenOption<"navigationMaskEnabled">;
8
9
  gestureEnabled: OptionalScreenOption<"gestureEnabled">;
9
- experimental_allowDisabledGestureTracking: RequiredScreenOption<"experimental_allowDisabledGestureTracking">;
10
+ gestureTracking: RequiredScreenOption<"gestureTracking">;
10
11
  gestureDirection: RequiredScreenOption<"gestureDirection">;
11
12
  gestureSensitivity: RequiredScreenOption<"gestureSensitivity">;
12
13
  gestureVelocityImpact: RequiredScreenOption<"gestureVelocityImpact">;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/screen/options/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAE9D,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,CAAC;AAC9C,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,uBAAuB,IACvE,WAAW,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,uBAAuB,IACvE,uBAAuB,CAAC,CAAC,CAAC,CAAC;AAE5B,MAAM,MAAM,qBAAqB,GAAG;IACnC,cAAc,EAAE,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;IACvD,yCAAyC,EAAE,oBAAoB,CAAC,2CAA2C,CAAC,CAAC;IAC7G,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;IAC3D,kBAAkB,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,CAAC;IAC/D,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,yBAAyB,EAAE,oBAAoB,CAAC,2BAA2B,CAAC,CAAC;IAC7E,2BAA2B,EAAE,oBAAoB,CAAC,6BAA6B,CAAC,CAAC;IACjF,uBAAuB,EAAE,oBAAoB,CAAC,yBAAyB,CAAC,CAAC;IACzE,mBAAmB,EAAE,oBAAoB,CAAC,qBAAqB,CAAC,CAAC;IACjE,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,iBAAiB,EAAE,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;IAC7D,0BAA0B,EAAE,oBAAoB,CAAC,4BAA4B,CAAC,CAAC;IAC/E,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CAC3D,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,qBAAqB,GAAG;IACxD,WAAW,EAAE,qBAAqB,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,kBAAkB,CAAC,CAAC;AAE1E,MAAM,WAAW,0BAA0B;IAC1C,QAAQ,EAAE,SAAS,CAAC;CACpB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/screen/options/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAE9D,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,CAAC,CAAC;AAC9C,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,uBAAuB,IACvE,WAAW,CAAC,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,uBAAuB,IACvE,uBAAuB,CAAC,CAAC,CAAC,CAAC;AAE5B,MAAM,MAAM,qBAAqB,GAAG;IACnC,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,cAAc,EAAE,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;IACvD,eAAe,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAC;IACzD,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;IAC3D,kBAAkB,EAAE,oBAAoB,CAAC,oBAAoB,CAAC,CAAC;IAC/D,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,yBAAyB,EAAE,oBAAoB,CAAC,2BAA2B,CAAC,CAAC;IAC7E,2BAA2B,EAAE,oBAAoB,CAAC,6BAA6B,CAAC,CAAC;IACjF,uBAAuB,EAAE,oBAAoB,CAAC,yBAAyB,CAAC,CAAC;IACzE,mBAAmB,EAAE,oBAAoB,CAAC,qBAAqB,CAAC,CAAC;IACjE,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,qBAAqB,EAAE,oBAAoB,CAAC,uBAAuB,CAAC,CAAC;IACrE,iBAAiB,EAAE,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;IAC7D,0BAA0B,EAAE,oBAAoB,CAAC,4BAA4B,CAAC,CAAC;IAC/E,gBAAgB,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CAC3D,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,qBAAqB,GAAG;IACxD,WAAW,EAAE,qBAAqB,CAAC;CACnC,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG,aAAa,CAAC,kBAAkB,CAAC,CAAC;AAE1E,MAAM,WAAW,0BAA0B;IAC1C,QAAQ,EAAE,SAAS,CAAC;CACpB"}
@@ -2,6 +2,6 @@ interface MaybeFloatingContainerProps {
2
2
  children: React.ReactNode;
3
3
  isFloatingOverlay?: boolean;
4
4
  }
5
- export declare const MaybeFloatingContainer: import("react").NamedExoticComponent<MaybeFloatingContainerProps>;
5
+ export declare const MaybeFloatingContainer: import("react").MemoExoticComponent<({ children, isFloatingOverlay, }: MaybeFloatingContainerProps) => string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined>;
6
6
  export {};
7
7
  //# sourceMappingURL=maybe-floating-container.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"maybe-floating-container.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/styles/components/maybe-floating-container.tsx"],"names":[],"mappings":"AAGA,UAAU,2BAA2B;IACpC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC5B;AACD,eAAO,MAAM,sBAAsB,mEAejC,CAAC"}
1
+ {"version":3,"file":"maybe-floating-container.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/providers/screen/styles/components/maybe-floating-container.tsx"],"names":[],"mappings":"AAGA,UAAU,2BAA2B;IACpC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC5B;AACD,eAAO,MAAM,sBAAsB,yEAGhC,2BAA2B,6WAY5B,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import type * as React from "react";
2
2
  import type { DirectStackContextValue, DirectStackProps, DirectStackScene } from "../../types/providers/direct-stack.types";
3
3
  declare function withDirectStack<TProps extends DirectStackProps>(Component: React.ComponentType<DirectStackContextValue>): React.FC<TProps>;
4
- export { withDirectStack };
5
4
  export type { DirectStackContextValue, DirectStackProps, DirectStackScene };
5
+ export { withDirectStack };
6
6
  //# sourceMappingURL=direct.provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"direct.provider.d.ts","sourceRoot":"","sources":["../../../../../src/shared/providers/stack/direct.provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAWpC,OAAO,KAAK,EACX,uBAAuB,EACvB,gBAAgB,EAChB,gBAAgB,EAChB,MAAM,0CAA0C,CAAC;AAmHlD,iBAAS,eAAe,CAAC,MAAM,SAAS,gBAAgB,EACvD,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,uBAAuB,CAAC,GACrD,KAAK,CAAC,EAAE,CAAC,MAAM,CAAC,CAUlB;AAED,OAAO,EAAE,eAAe,EAAE,CAAC;AAC3B,YAAY,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,CAAC"}
1
+ {"version":3,"file":"direct.provider.d.ts","sourceRoot":"","sources":["../../../../../src/shared/providers/stack/direct.provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAC;AAWpC,OAAO,KAAK,EACX,uBAAuB,EACvB,gBAAgB,EAChB,gBAAgB,EAChB,MAAM,0CAA0C,CAAC;AAyGlD,iBAAS,eAAe,CAAC,MAAM,SAAS,gBAAgB,EACvD,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,uBAAuB,CAAC,GACrD,KAAK,CAAC,EAAE,CAAC,MAAM,CAAC,CAUlB;AAED,YAAY,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;AAC5E,OAAO,EAAE,eAAe,EAAE,CAAC"}
@@ -1,8 +1,7 @@
1
1
  import { type DerivedValue } from "react-native-reanimated";
2
2
  import type { AnimationStoreMap } from "../../../stores/animation.store";
3
+ type StackDerivedAnimationMap = Pick<AnimationStoreMap, "closing">;
3
4
  export interface StackDerived {
4
- /** Sum of all individual screen progress values. */
5
- stackProgress: DerivedValue<number>;
6
5
  /**
7
6
  * Focused index that accounts for closing screens.
8
7
  * Counts consecutive closing screens from the top so that
@@ -11,8 +10,9 @@ export interface StackDerived {
11
10
  optimisticFocusedIndex: DerivedValue<number>;
12
11
  }
13
12
  /**
14
- * Derives aggregated stack progress and an optimistic focused index
15
- * from animation store maps. Shared between managed and direct providers.
13
+ * Derives an optimistic focused index from animation store maps.
14
+ * Shared between managed and direct providers.
16
15
  */
17
- export declare function useStackDerived(animationMaps: AnimationStoreMap[]): StackDerived;
16
+ export declare function useStackDerived(animationMaps: StackDerivedAnimationMap[]): StackDerived;
17
+ export {};
18
18
  //# sourceMappingURL=use-stack-derived.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-stack-derived.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/stack/helpers/use-stack-derived.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,yBAAyB,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAEzE,MAAM,WAAW,YAAY;IAC5B,oDAAoD;IACpD,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;IACpC;;;;OAIG;IACH,sBAAsB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;CAC7C;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC9B,aAAa,EAAE,iBAAiB,EAAE,GAChC,YAAY,CAsBd"}
1
+ {"version":3,"file":"use-stack-derived.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/providers/stack/helpers/use-stack-derived.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,yBAAyB,CAAC;AAC7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AAEzE,KAAK,wBAAwB,GAAG,IAAI,CAAC,iBAAiB,EAAE,SAAS,CAAC,CAAC;AAEnE,MAAM,WAAW,YAAY;IAC5B;;;;OAIG;IACH,sBAAsB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAC;CAC7C;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAC9B,aAAa,EAAE,wBAAwB,EAAE,GACvC,YAAY,CAad"}
@@ -3,6 +3,6 @@ import type { ManagedStackContextValue, ManagedStackProps, ManagedStackRenderPro
3
3
  import type { BaseStackDescriptor, BaseStackNavigation } from "../../types/stack.types";
4
4
  declare function useManagedStackContext(): ManagedStackContextValue;
5
5
  declare function withManagedStack<TDescriptor extends BaseStackDescriptor = BaseStackDescriptor, TNavigation extends BaseStackNavigation = BaseStackNavigation>(Component: React.ComponentType<ManagedStackRenderProps<TDescriptor>>): React.FC<ManagedStackProps<TDescriptor, TNavigation>>;
6
- export { useManagedStackContext, withManagedStack };
7
6
  export type { ManagedStackContextValue, ManagedStackProps, ManagedStackRenderProps, };
7
+ export { useManagedStackContext, withManagedStack };
8
8
  //# sourceMappingURL=managed.provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"managed.provider.d.ts","sourceRoot":"","sources":["../../../../../src/shared/providers/stack/managed.provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,KAAK,EACX,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,EAEvB,MAAM,2CAA2C,CAAC;AACnD,OAAO,KAAK,EACX,mBAAmB,EACnB,mBAAmB,EAEnB,MAAM,yBAAyB,CAAC;AAWjC,iBAAS,sBAAsB,IAAI,wBAAwB,CAQ1D;AAkFD,iBAAS,gBAAgB,CACxB,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,EAC7D,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,EAE7D,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,uBAAuB,CAAC,WAAW,CAAC,CAAC,GAClE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAevD;AAED,OAAO,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,CAAC;AACpD,YAAY,EACX,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,GACvB,CAAC"}
1
+ {"version":3,"file":"managed.provider.d.ts","sourceRoot":"","sources":["../../../../../src/shared/providers/stack/managed.provider.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,KAAK,EACX,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,EAEvB,MAAM,2CAA2C,CAAC;AACnD,OAAO,KAAK,EACX,mBAAmB,EACnB,mBAAmB,EAEnB,MAAM,yBAAyB,CAAC;AAWjC,iBAAS,sBAAsB,IAAI,wBAAwB,CAQ1D;AA8ED,iBAAS,gBAAgB,CACxB,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,EAC7D,WAAW,SAAS,mBAAmB,GAAG,mBAAmB,EAE7D,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,uBAAuB,CAAC,WAAW,CAAC,CAAC,GAClE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC,CAevD;AAED,YAAY,EACX,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,GACvB,CAAC;AACF,OAAO,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,CAAC"}
@@ -1,15 +1,16 @@
1
1
  import { type SharedValue } from "react-native-reanimated";
2
2
  export type AnimationStoreMap = {
3
3
  progress: SharedValue<number>;
4
+ effectiveProgress: SharedValue<number>;
4
5
  willAnimate: SharedValue<number>;
5
6
  progressAnimating: SharedValue<number>;
6
7
  closing: SharedValue<number>;
7
8
  entering: SharedValue<number>;
8
9
  };
9
10
  /**
10
- * Route-keyed screen transition state for the public animation lifecycle. These
11
- * shared values track the current progress, whether a transition is about to
12
- * begin, and whether a screen is entering, closing, or actively animating.
11
+ * Route-keyed screen transition state for the public animation lifecycle.
12
+ * `progress` tracks committed transition progress; `effectiveProgress` tracks
13
+ * the hydrated progress after live gesture policy is applied.
13
14
  */
14
15
  export declare const AnimationStore: import("../utils/create-store").StoreApi<AnimationStoreMap>;
15
16
  //# sourceMappingURL=animation.store.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"animation.store.d.ts","sourceRoot":"","sources":["../../../../src/shared/stores/animation.store.ts"],"names":[],"mappings":"AAAA,OAAO,EAGN,KAAK,WAAW,EAChB,MAAM,yBAAyB,CAAC;AAGjC,MAAM,MAAM,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC9B,CAAC;AAYF;;;;GAIG;AACH,eAAO,MAAM,cAAc,6DASzB,CAAC"}
1
+ {"version":3,"file":"animation.store.d.ts","sourceRoot":"","sources":["../../../../src/shared/stores/animation.store.ts"],"names":[],"mappings":"AAAA,OAAO,EAGN,KAAK,WAAW,EAChB,MAAM,yBAAyB,CAAC;AAGjC,MAAM,MAAM,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC9B,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,WAAW,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACjC,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IACvC,OAAO,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;IAC7B,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC;CAC9B,CAAC;AAaF;;;;GAIG;AACH,eAAO,MAAM,cAAc,6DAUzB,CAAC"}
@@ -13,7 +13,7 @@ import type { BaseStackRoute } from "./stack.types";
13
13
  * `navigation.setOptions()`. If you need another existing screen option here,
14
14
  * open a request with the use case and why the interpolator needs it.
15
15
  */
16
- export type ScreenTransitionOptions = Pick<ScreenTransitionConfig, "gestureEnabled" | "experimental_allowDisabledGestureTracking" | "gestureDirection" | "gestureSensitivity" | "gestureVelocityImpact" | "gestureSnapVelocityImpact" | "gestureReleaseVelocityScale" | "gestureResponseDistance" | "gestureProgressMode" | "gestureDrivesProgress" | "gestureActivationArea" | "gestureSnapLocked" | "sheetScrollGestureBehavior" | "backdropBehavior">;
16
+ export type ScreenTransitionOptions = Pick<ScreenTransitionConfig, "navigationMaskEnabled" | "gestureEnabled" | "gestureTracking" | "gestureDirection" | "gestureSensitivity" | "gestureVelocityImpact" | "gestureSnapVelocityImpact" | "gestureReleaseVelocityScale" | "gestureResponseDistance" | "gestureProgressMode" | "gestureDrivesProgress" | "gestureActivationArea" | "gestureSnapLocked" | "sheetScrollGestureBehavior" | "backdropBehavior">;
17
17
  export type ScreenTransitionState = {
18
18
  /**
19
19
  * Animation progress for this screen.
@@ -177,6 +177,9 @@ export interface ScreenInterpolationProps {
177
177
  /**
178
178
  * Whether the active transition is visually close enough to its target to be
179
179
  * treated as complete, even if the animation is still physically settling.
180
+ *
181
+ * @deprecated Use `active.logicallySettled` instead. Screen settlement state
182
+ * belongs on the screen state object.
180
183
  */
181
184
  logicallySettled: number;
182
185
  /**
@@ -223,13 +226,14 @@ export type TransitionSlotStyle = AnimatedViewStyle | TransitionSlotDefinition;
223
226
  * Runtime options returned by `screenStyleInterpolator`.
224
227
  *
225
228
  * These values are not style slots. They are derived per frame and consumed by
226
- * the transition runtime.
229
+ * the transition runtime. Structural options that change the React tree, such
230
+ * as `navigationMaskEnabled`, must be configured statically on the screen.
227
231
  *
228
232
  * If `gestureSensitivity` is derived from the current gesture, prefer
229
233
  * `active.gesture.raw` so the sensitivity calculation does not feed back into
230
234
  * itself.
231
235
  */
232
- export type TransitionInterpolatorOptions = ScreenTransitionOptions;
236
+ export type TransitionInterpolatorOptions = Omit<ScreenTransitionOptions, "navigationMaskEnabled" | "gestureTracking">;
233
237
  /**
234
238
  * Internal normalized slot format.
235
239
  * Always uses the explicit `{ style, props }` shape (with Reanimated's full StyleProps).
@@ -1 +1 @@
1
- {"version":3,"file":"animation.types.d.ts","sourceRoot":"","sources":["../../../../src/shared/types/animation.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"animation.types.d.ts","sourceRoot":"","sources":["../../../../src/shared/types/animation.types.ts"],"names":[],"mappings":"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"}