@open-pioneer/spatial-bookmarks 0.9.0 → 0.10.0-dev.20250324141112

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
@@ -1,5 +1,29 @@
1
1
  # @open-pioneer/spatial-bookmarks
2
2
 
3
+ ## 0.10.0-dev.20250324141112
4
+
5
+ ### Minor Changes
6
+
7
+ - 193068a: Deprecate the `mapId` property on React components.
8
+ Use the `MapModel` directly instead to pass a reference to the map.
9
+
10
+ Example:
11
+
12
+ ```tsx
13
+ // Default map for entire component tree
14
+ <DefaultMapProvider map={mapModel}>
15
+ <Toc />
16
+ </DefaultMapProvider>
17
+
18
+ // Map for specific component
19
+ <Toc map={mapModel} />
20
+ ```
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [193068a]
25
+ - @open-pioneer/map@0.10.0-dev.20250324141112
26
+
3
27
  ## 0.9.0
4
28
 
5
29
  ### Minor Changes
package/README.md CHANGED
@@ -7,10 +7,12 @@ Users can also delete individual bookmarks directly from the list.
7
7
 
8
8
  ## Usage
9
9
 
10
- To integrate the spatial bookmarks component in your app, insert the following snippet and reference a map ID:
10
+ To integrate the spatial bookmarks component in your app, insert the following snippet (and reference a map):
11
11
 
12
12
  ```tsx
13
- <SpatialBookmarks mapId={MAP_ID} />
13
+ <SpatialBookmarks
14
+ map={map}
15
+ /> /* instead of passing the map, the `DefaultMapProvider` can alternatively be used */
14
16
  ```
15
17
 
16
18
  ## License
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@open-pioneer/spatial-bookmarks",
4
- "version": "0.9.0",
4
+ "version": "0.10.0-dev.20250324141112",
5
5
  "description": "This package provides a UI component that allows the user to store, manage, and easily navigate between different map extents by creating bookmarks.",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -27,7 +27,7 @@
27
27
  "@conterra/reactivity-core": "^0.4.3",
28
28
  "@open-pioneer/reactivity": "^3.0.0",
29
29
  "uuid": "^11.1.0",
30
- "@open-pioneer/map": "^0.9.0"
30
+ "@open-pioneer/map": "^0.10.0-dev.20250324141112"
31
31
  },
32
32
  "exports": {
33
33
  "./package.json": "./package.json",