@jobber/components-native 0.88.1-JOB-139048-04134dd.0 → 0.88.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components-native",
3
- "version": "0.88.1-JOB-139048-04134dd.0+04134dd81",
3
+ "version": "0.88.1",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -94,5 +94,5 @@
94
94
  "react-native-safe-area-context": "^5.4.0",
95
95
  "react-native-svg": ">=12.0.0"
96
96
  },
97
- "gitHead": "04134dd81a80801cb9749c94d92f80b0e1d7c7dc"
97
+ "gitHead": "02b60328dca8a6166794f853db3219e7b3f9bca1"
98
98
  }
@@ -1,9 +1,5 @@
1
1
  import React, { forwardRef, useImperativeHandle, useRef, useState, } from "react";
2
2
  import { Modalize } from "react-native-modalize";
3
- // DON'T USE THIS COMPONENT DIRECTLY.
4
- // It is exposed only so that the deprecated ContentOverlay component can use this along with the
5
- // newer one contained in this lib.
6
- // This is a temporary solution for new architecture. JOB-137549 plans to replace modalize entirely.
7
3
  export const UNSAFE_WrappedModalize = forwardRef((props, ref) => {
8
4
  const innerRef = useRef(null);
9
5
  const [openRenderId, setOpenRenderId] = useState(0);
@@ -1,2 +1 @@
1
1
  export { ContentOverlay } from "./ContentOverlay";
2
- export { UNSAFE_WrappedModalize } from "./UNSAFE_WrappedModalize";
@@ -64,7 +64,6 @@
64
64
  "ThumbnailList",
65
65
  "Toast",
66
66
  "Typography",
67
- "TypographyGestureDetector",
68
- "UNSAFE_WrappedModalize"
67
+ "TypographyGestureDetector"
69
68
  ]
70
69
  }