react-native-maps 1.23.4 → 1.23.5

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
6
6
  "author": "Leland Richardson <leland.m.richardson@gmail.com>",
7
7
  "homepage": "https://github.com/react-native-maps/react-native-maps#readme",
8
- "version": "1.23.4",
8
+ "version": "1.23.5",
9
9
  "license": "MIT",
10
10
  "scripts": {
11
11
  "lint": "eslint . --max-warnings 0",
@@ -89,6 +89,7 @@ export default class AnimatedMapRegion extends AnimatedWithChildren {
89
89
  };
90
90
  }
91
91
 
92
+ // @ts-ignore
92
93
  private __attach() {
93
94
  this.latitude.__addChild(this);
94
95
  this.longitude.__addChild(this);
@@ -96,6 +97,7 @@ export default class AnimatedMapRegion extends AnimatedWithChildren {
96
97
  this.longitudeDelta.__addChild(this);
97
98
  }
98
99
 
100
+ // @ts-ignore
99
101
  private __detach() {
100
102
  this.latitude.__removeChild(this);
101
103
  this.longitude.__removeChild(this);
package/src/MapView.tsx CHANGED
@@ -1038,6 +1038,7 @@ class MapView extends React.Component<MapViewProps, State> {
1038
1038
  };
1039
1039
  }
1040
1040
 
1041
+ // @ts-ignore
1041
1042
  private _getHandle() {
1042
1043
  return findNodeHandle(this.map.current);
1043
1044
  }