@applicaster/quick-brick-core 14.0.0-rc.58 → 14.0.0-rc.59

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.
@@ -52,9 +52,9 @@ export class DraggableBottomSheet extends Component<Props, ComponentState> {
52
52
  _lastScrollYValue: number;
53
53
  _lastScrollY: Animated.Value;
54
54
  _dragY: Animated.Value;
55
- _reverseLastScrollY: Animated.AnimatedMultiplication;
55
+ _reverseLastScrollY: Animated.AnimatedInterpolation<number>;
56
56
  _translateYOffset: Animated.Value;
57
- _translateY: Animated.AnimatedAddition;
57
+ _translateY: Animated.AnimatedInterpolation<number>;
58
58
  _snapPoints: SnapPoints;
59
59
  _prevContentHeight = 0;
60
60
 
@@ -1,5 +1,6 @@
1
1
  import * as React from "react";
2
2
  import { Modal, ModalProps } from "react-native";
3
+ import { GestureHandlerRootView } from "react-native-gesture-handler";
3
4
 
4
5
  type Props = ModalProps & {
5
6
  children: React.ReactChild;
@@ -13,7 +14,7 @@ export function ModalPresenter(props: Props) {
13
14
 
14
15
  return (
15
16
  <Presenter visible={visible} {...presenterOptions}>
16
- {children}
17
+ <GestureHandlerRootView>{children}</GestureHandlerRootView>
17
18
  </Presenter>
18
19
  );
19
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/quick-brick-core",
3
- "version": "14.0.0-rc.58",
3
+ "version": "14.0.0-rc.59",
4
4
  "description": "Core package for Applicaster's Quick Brick App",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -28,13 +28,13 @@
28
28
  },
29
29
  "homepage": "https://github.com/applicaster/quickbrick#readme",
30
30
  "dependencies": {
31
- "@applicaster/applicaster-types": "14.0.0-rc.58",
32
- "@applicaster/quick-brick-core-plugins": "14.0.0-rc.58",
33
- "@applicaster/zapp-pipes-v2-client": "14.0.0-rc.58",
34
- "@applicaster/zapp-react-native-bridge": "14.0.0-rc.58",
35
- "@applicaster/zapp-react-native-redux": "14.0.0-rc.58",
36
- "@applicaster/zapp-react-native-ui-components": "14.0.0-rc.58",
37
- "@applicaster/zapp-react-native-utils": "14.0.0-rc.58",
31
+ "@applicaster/applicaster-types": "14.0.0-rc.59",
32
+ "@applicaster/quick-brick-core-plugins": "14.0.0-rc.59",
33
+ "@applicaster/zapp-pipes-v2-client": "14.0.0-rc.59",
34
+ "@applicaster/zapp-react-native-bridge": "14.0.0-rc.59",
35
+ "@applicaster/zapp-react-native-redux": "14.0.0-rc.59",
36
+ "@applicaster/zapp-react-native-ui-components": "14.0.0-rc.59",
37
+ "@applicaster/zapp-react-native-utils": "14.0.0-rc.59",
38
38
  "atob": "^2.1.2",
39
39
  "axios": "^0.28.0",
40
40
  "btoa": "^1.2.1",