@open-pioneer/overview-map 1.4.0 → 1.5.0-dev.20260910103330
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 +23 -13
- package/package.json +11 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @open-pioneer/overview-map
|
|
2
2
|
|
|
3
|
+
## 1.5.0-dev.20260910103330
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f790fda: Update to Chakra 3.37.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 09ec7c7: Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 1.4.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -63,17 +73,17 @@
|
|
|
63
73
|
- 193068a: Deprecate the `mapId` property on React components.
|
|
64
74
|
Use the `MapModel` directly instead to pass a reference to the map.
|
|
65
75
|
|
|
66
|
-
|
|
76
|
+
Example:
|
|
67
77
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
78
|
+
```tsx
|
|
79
|
+
// Default map for entire component tree
|
|
80
|
+
<DefaultMapProvider map={mapModel}>
|
|
81
|
+
<Toc />
|
|
82
|
+
</DefaultMapProvider>
|
|
73
83
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
84
|
+
// Map for specific component
|
|
85
|
+
<Toc map={mapModel} />
|
|
86
|
+
```
|
|
77
87
|
|
|
78
88
|
### Patch Changes
|
|
79
89
|
|
|
@@ -96,9 +106,9 @@
|
|
|
96
106
|
### Minor Changes
|
|
97
107
|
|
|
98
108
|
- 2fa8020: Update trails core package dependencies.
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
109
|
+
- Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
|
|
110
|
+
- Removes any obsolete references to `@chakra-ui/system`.
|
|
111
|
+
This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
|
|
102
112
|
|
|
103
113
|
### Patch Changes
|
|
104
114
|
|
|
@@ -116,7 +126,7 @@
|
|
|
116
126
|
- 583f1d6: The `mapId` or `map` properties are now optional on individual components.
|
|
117
127
|
You can use the `DefaultMapProvider` to configure an implicit default value.
|
|
118
128
|
|
|
119
|
-
|
|
129
|
+
Note that configuring _neither_ a default _nor_ an explicit `map` or `mapId` will trigger a runtime error.
|
|
120
130
|
|
|
121
131
|
- 583f1d6: All UI components in this project now accept the `mapId` (a `string`) _or_ the `map` (a `MapModel`) directly.
|
|
122
132
|
- a8b3449: Switch to a new versioning strategy.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@open-pioneer/overview-map",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0-dev.20260910103330",
|
|
5
5
|
"description": "This package offers a UI component with which an overview map can be integrated.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"open-pioneer-trails"
|
|
@@ -14,12 +14,16 @@
|
|
|
14
14
|
"directory": "src/packages/overview-map"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@chakra-ui/react": "^3.
|
|
18
|
-
"@open-pioneer/
|
|
19
|
-
"@open-pioneer/
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
17
|
+
"@chakra-ui/react": "^3.37.0",
|
|
18
|
+
"@open-pioneer/map": "1.5.0-dev.20260910103330",
|
|
19
|
+
"@open-pioneer/react-utils": "4.8.0-dev.20260910101405",
|
|
20
|
+
"@open-pioneer/runtime": "4.8.0-dev.20260910101405",
|
|
21
|
+
"ol": "^10.10.0",
|
|
22
|
+
"react": "^19.2.8"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"directory": "dist",
|
|
26
|
+
"linkDirectory": false
|
|
23
27
|
},
|
|
24
28
|
"exports": {
|
|
25
29
|
"./package.json": "./package.json",
|