@maplibre/maplibre-react-native 10.0.0-alpha.17 → 10.0.0-alpha.18
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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ PR Title ([#123](link to my pr))
|
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
## 10.0.0-alpha.18
|
|
10
|
+
|
|
11
|
+
fix: make MarkerView props with defaults optional ([#460](https://github.com/maplibre/maplibre-react-native/pull/460))
|
|
12
|
+
fix: updated Mapbox callstack check for iOS custom headers to check for MapLibre instead [#461](https://github.com/maplibre/maplibre-react-native/pull/461)
|
|
13
|
+
|
|
9
14
|
## 10.0.0-alpha.17
|
|
10
15
|
|
|
11
16
|
fix: [add generic expo plugin to remove Duplicated Signature in Xcode 15/16](<[#453](https://github.com/maplibre/maplibre-react-native/pull/453)>)
|
|
@@ -20,7 +20,7 @@ interface MarkerViewProps extends ViewProps {
|
|
|
20
20
|
* Note this is only for custom annotations not the default pin view.
|
|
21
21
|
* Defaults to the center of the view.
|
|
22
22
|
*/
|
|
23
|
-
anchor
|
|
23
|
+
anchor?: {
|
|
24
24
|
/**
|
|
25
25
|
* `x` of anchor
|
|
26
26
|
*/
|
|
@@ -30,8 +30,8 @@ interface MarkerViewProps extends ViewProps {
|
|
|
30
30
|
*/
|
|
31
31
|
y: number;
|
|
32
32
|
};
|
|
33
|
-
allowOverlap
|
|
34
|
-
isSelected
|
|
33
|
+
allowOverlap?: boolean;
|
|
34
|
+
isSelected?: boolean;
|
|
35
35
|
/**
|
|
36
36
|
* Expects one child - can be container with multiple elements
|
|
37
37
|
*/
|
package/package.json
CHANGED