@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.
@@ -1,3 +1,2 @@
1
1
  export { ContentOverlay } from "./ContentOverlay";
2
- export { UNSAFE_WrappedModalize } from "./UNSAFE_WrappedModalize";
3
2
  export type { ContentOverlayRef, ModalBackgroundColor } from "./types";
package/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
  }
@@ -9,10 +9,6 @@ import type { IHandles } from "react-native-modalize/lib/options";
9
9
 
10
10
  type Props = React.ComponentProps<typeof Modalize>;
11
11
 
12
- // DON'T USE THIS COMPONENT DIRECTLY.
13
- // It is exposed only so that the deprecated ContentOverlay component can use this along with the
14
- // newer one contained in this lib.
15
- // This is a temporary solution for new architecture. JOB-137549 plans to replace modalize entirely.
16
12
  export const UNSAFE_WrappedModalize = forwardRef<IHandles, Props>(
17
13
  (props, ref) => {
18
14
  const innerRef = useRef<IHandles | null>(null);
@@ -1,3 +1,2 @@
1
1
  export { ContentOverlay } from "./ContentOverlay";
2
- export { UNSAFE_WrappedModalize } from "./UNSAFE_WrappedModalize";
3
2
  export type { ContentOverlayRef, ModalBackgroundColor } from "./types";
@@ -64,7 +64,6 @@
64
64
  "ThumbnailList",
65
65
  "Toast",
66
66
  "Typography",
67
- "TypographyGestureDetector",
68
- "UNSAFE_WrappedModalize"
67
+ "TypographyGestureDetector"
69
68
  ]
70
69
  }