@open-pioneer/map-ui-components 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 +28 -18
  2. package/package.json +8 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @open-pioneer/map-ui-components
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
@@ -58,9 +68,9 @@
58
68
  - 66179bc: Update to core-packages v4.0.0
59
69
  - 738390e: **Breaking:** Rename `<ToolButton />` props for consistency with Chakra naming conventions:
60
70
 
61
- - `isLoading` (old) --> `loading` (new)
62
- - `isActive` (old) --> `active` (new)
63
- - `isDisabled` (old) --> `disabled` (new)
71
+ - `isLoading` (old) --> `loading` (new)
72
+ - `isActive` (old) --> `active` (new)
73
+ - `isDisabled` (old) --> `disabled` (new)
64
74
 
65
75
  - 738390e: Update to Chakra v3
66
76
 
@@ -68,16 +78,16 @@
68
78
 
69
79
  - 9376a74: Ensure that icons and other decorative elements are hidden from the screen reader using the `aria-hidden="true"` attribute.
70
80
 
71
- The easiest way to do that is to wrap icons into chakra's `<Icon />` component, for example:
81
+ The easiest way to do that is to wrap icons into chakra's `<Icon />` component, for example:
72
82
 
73
- ```tsx
74
- import { Icon } from "@chakra-ui/react";
75
- import { FiX } from "react-icons/fi";
83
+ ```tsx
84
+ import { Icon } from "@chakra-ui/react";
85
+ import { FiX } from "react-icons/fi";
76
86
 
77
- <Icon>
78
- <FiX />
79
- </Icon>;
80
- ```
87
+ <Icon>
88
+ <FiX />
89
+ </Icon>;
90
+ ```
81
91
 
82
92
  ## 0.10.0
83
93
 
@@ -98,9 +108,9 @@
98
108
  ### Minor Changes
99
109
 
100
110
  - 2fa8020: Update trails core package dependencies.
101
- - Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
102
- - Removes any obsolete references to `@chakra-ui/system`.
103
- This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
111
+ - Also updates Chakra UI to the latest 2.x version and Chakra React Select to version 5.
112
+ - Removes any obsolete references to `@chakra-ui/system`.
113
+ This dependency seems to be no longer required and may lead to duplicate packages in your dependency tree.
104
114
 
105
115
  ### Patch Changes
106
116
 
@@ -132,11 +142,11 @@
132
142
  - 2090e72: Initial release.
133
143
  The purpose of this package is to develop UI components that are closely related to the map.
134
144
 
135
- The package `@open-pioneer/react-utils` has been moved into the [core-packages repository](https://github.com/open-pioneer/trails-core-packages/tree/main/src/packages/react-utils).
136
- Most contents of the package have been moved as well, if they can be used independently from the map.
145
+ The package `@open-pioneer/react-utils` has been moved into the [core-packages repository](https://github.com/open-pioneer/trails-core-packages/tree/main/src/packages/react-utils).
146
+ Most contents of the package have been moved as well, if they can be used independently from the map.
137
147
 
138
- The component `ToolButton` has been moved into _this_ package instead.
139
- See also the [release notes](https://github.com/open-pioneer/trails-core-packages/releases/tag/%40open-pioneer%2Freact-utils%401.0.0) of `@open-pioneer/react-utils`.
148
+ The component `ToolButton` has been moved into _this_ package instead.
149
+ See also the [release notes](https://github.com/open-pioneer/trails-core-packages/releases/tag/%40open-pioneer%2Freact-utils%401.0.0) of `@open-pioneer/react-utils`.
140
150
 
141
151
  ### Patch Changes
142
152
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@open-pioneer/map-ui-components",
4
- "version": "1.4.0",
4
+ "version": "1.5.0-dev.20260910103330",
5
5
  "description": "Contains ui components that can used together with the map",
6
6
  "keywords": [
7
7
  "open-pioneer-trails"
@@ -14,11 +14,15 @@
14
14
  "directory": "src/packages/map-ui-components"
15
15
  },
16
16
  "dependencies": {
17
- "@chakra-ui/react": "^3.36.1",
18
- "@open-pioneer/chakra-snippets": "^4.7.0",
19
- "@open-pioneer/react-utils": "^4.7.0",
17
+ "@chakra-ui/react": "^3.37.0",
18
+ "@open-pioneer/chakra-snippets": "4.8.0-dev.20260910101405",
19
+ "@open-pioneer/react-utils": "4.8.0-dev.20260910101405",
20
20
  "react": "^19.2.8"
21
21
  },
22
+ "publishConfig": {
23
+ "directory": "dist",
24
+ "linkDirectory": false
25
+ },
22
26
  "exports": {
23
27
  "./package.json": "./package.json",
24
28
  ".": {