@open-pioneer/map 1.3.0-dev.20260225104836 → 1.3.0-dev.20260225133423

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,6 +1,6 @@
1
1
  # @open-pioneer/map
2
2
 
3
- ## 1.3.0-dev.20260225104836
3
+ ## 1.3.0-dev.20260225133423
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,6 +9,7 @@
9
9
  - 2ceb1ca: MapModel: implement new `loading` property.
10
10
  This property is `true` if the map is currently loading any resources, `false` otherwise.
11
11
  The property is based on OpenLayers `loadstart` and `loadend` events (see [Documentation](https://openlayers.org/en/latest/apidoc/module-ol_MapEvent-MapEvent.html#event:loadstart)).
12
+ - 73453af: Update OpenLayers to 10.8.0
12
13
  - fcbd505: Sanitize HTML used for layer attributions.
13
14
  - d54ccfd: Update to Chakra UI 3.32.0
14
15
  - 2ceb1ca: MapContainer: allow configuration of `rootProps` and `containerProps`.
@@ -16,7 +16,11 @@ export declare class Highlights {
16
16
  /**
17
17
  * Returns the layer used for highlights.
18
18
  */
19
- getLayer(): VectorLayer<VectorSource<Feature<Geometry>>, Feature<Geometry>>;
19
+ getLayer(): VectorLayer<VectorSource<Feature<Geometry, {
20
+ [x: string]: any;
21
+ }>>, Feature<Geometry, {
22
+ [x: string]: any;
23
+ }>>;
20
24
  /**
21
25
  * This method removes all highlights before destroying the class
22
26
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@open-pioneer/map",
4
- "version": "1.3.0-dev.20260225104836",
4
+ "version": "1.3.0-dev.20260225133423",
5
5
  "description": "This package integrates OpenLayers maps into an open pioneer trails application.",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -18,12 +18,12 @@
18
18
  "@conterra/reactivity-core": "^0.8.1",
19
19
  "@conterra/reactivity-events": "^0.8.1",
20
20
  "@esri/arcgis-html-sanitizer": "^4.1.0",
21
- "@open-pioneer/core": "4.5.0-dev.20260211105402",
22
- "@open-pioneer/http": "4.5.0-dev.20260211105402",
23
- "@open-pioneer/react-utils": "4.5.0-dev.20260211105402",
24
- "@open-pioneer/reactivity": "4.5.0-dev.20260211105402",
25
- "@open-pioneer/runtime": "4.5.0-dev.20260211105402",
26
- "ol": "^10.7.0",
21
+ "@open-pioneer/core": "4.5.0-dev.20260225121659",
22
+ "@open-pioneer/http": "4.5.0-dev.20260225121659",
23
+ "@open-pioneer/react-utils": "4.5.0-dev.20260225121659",
24
+ "@open-pioneer/reactivity": "4.5.0-dev.20260225121659",
25
+ "@open-pioneer/runtime": "4.5.0-dev.20260225121659",
26
+ "ol": "^10.8.0",
27
27
  "proj4": "^2.20.2",
28
28
  "react-dom": "^19.2.4",
29
29
  "react-use": "^17.6.0",