@open-pioneer/selection 0.1.0 → 0.1.1
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 +8 -0
- package/api.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @open-pioneer/selection
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 611ddb9: Export interface `BaseFeature` from Map API and use it correctly in base packages `selection` and `search`.
|
|
8
|
+
- Updated dependencies [611ddb9]
|
|
9
|
+
- @open-pioneer/map@0.3.1
|
|
10
|
+
|
|
3
11
|
## 0.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { Geometry } from "ol/geom";
|
|
|
2
2
|
import type { Projection } from "ol/proj";
|
|
3
3
|
import type { Extent } from "ol/extent";
|
|
4
4
|
import type { EventSource, Resource } from "@open-pioneer/core";
|
|
5
|
-
import { BaseFeature } from "@open-pioneer/map
|
|
5
|
+
import { BaseFeature } from "@open-pioneer/map";
|
|
6
6
|
import { DeclaredService } from "@open-pioneer/runtime";
|
|
7
7
|
import VectorLayer from "ol/layer/Vector";
|
|
8
8
|
import VectorSource from "ol/source/Vector";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@open-pioneer/selection",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"@open-pioneer/chakra-integration": "^1.1.1",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"chakra-react-select": "^4.7.6",
|
|
14
14
|
"@chakra-ui/icons": "^2.1.1",
|
|
15
15
|
"react-icons": "^4.12.0",
|
|
16
|
-
"@open-pioneer/map": "^0.3.
|
|
16
|
+
"@open-pioneer/map": "^0.3.1",
|
|
17
17
|
"@open-pioneer/notifier": "^0.3.0",
|
|
18
18
|
"@open-pioneer/react-utils": "^0.2.1"
|
|
19
19
|
},
|