@open-pioneer/scale-viewer 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -13
  2. package/package.json +11 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @open-pioneer/scale-viewer
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
@@ -66,17 +76,17 @@
66
76
  - 193068a: Deprecate the `mapId` property on React components.
67
77
  Use the `MapModel` directly instead to pass a reference to the map.
68
78
 
69
- Example:
79
+ Example:
70
80
 
71
- ```tsx
72
- // Default map for entire component tree
73
- <DefaultMapProvider map={mapModel}>
74
- <Toc />
75
- </DefaultMapProvider>
81
+ ```tsx
82
+ // Default map for entire component tree
83
+ <DefaultMapProvider map={mapModel}>
84
+ <Toc />
85
+ </DefaultMapProvider>
76
86
 
77
- // Map for specific component
78
- <Toc map={mapModel} />
79
- ```
87
+ // Map for specific component
88
+ <Toc map={mapModel} />
89
+ ```
80
90
 
81
91
  ### Patch Changes
82
92
 
@@ -95,9 +105,9 @@
95
105
  ### Minor Changes
96
106
 
97
107
  - 2fa8020: Update trails core package dependencies.
98
- - Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
99
- - Removes any obsolete references to `@chakra-ui/system`.
100
- This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
108
+ - Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
109
+ - Removes any obsolete references to `@chakra-ui/system`.
110
+ This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
101
111
 
102
112
  ### Patch Changes
103
113
 
@@ -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
- Note that configuring _neither_ a default _nor_ an explicit `map` or `mapId` will trigger a runtime error.
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/scale-viewer",
4
- "version": "1.4.0",
4
+ "version": "1.5.0-dev.20260910103330",
5
5
  "description": "This package provides a UI component to show the actual map scale to the user.",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -14,12 +14,16 @@
14
14
  "directory": "src/packages/scale-viewer"
15
15
  },
16
16
  "dependencies": {
17
- "@chakra-ui/react": "^3.36.1",
18
- "@open-pioneer/react-utils": "^4.7.0",
19
- "@open-pioneer/reactivity": "^4.7.0",
20
- "@open-pioneer/runtime": "^4.7.0",
21
- "react": "^19.2.8",
22
- "@open-pioneer/map": "1.4.0"
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/reactivity": "4.8.0-dev.20260910101405",
21
+ "@open-pioneer/runtime": "4.8.0-dev.20260910101405",
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",