@summeruse/ol 0.1.1-beta.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 +26 -0
- package/dist/index.js +348 -352
- package/es/components/ol-map/props.d.ts +1 -0
- package/es/components/ol-map/props.mjs +7 -2
- package/es/composables/useGraticule/index.d.ts +4 -1
- package/es/composables/useGraticule/index.mjs +25 -26
- package/es/index.mjs +64 -63
- package/es/utils/layer/index.d.ts +1 -11
- package/lib/components/ol-map/props.d.ts +1 -0
- package/lib/components/ol-map/props.js +1 -1
- package/lib/composables/useGraticule/index.d.ts +4 -1
- package/lib/composables/useGraticule/index.js +1 -1
- package/lib/index.js +1 -1
- package/lib/utils/layer/index.d.ts +1 -11
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @summeruse/ol
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c26ae5a: 重构 useGraticule 以支持更灵活的样式配置
|
|
8
|
+
- e651b52: 添加经纬度标签样式支持
|
|
9
|
+
- b0985c6: 添加 useOlMap 函数以简化地图实例的注入
|
|
10
|
+
- 9b9aeed: 移除`T_MAP_TYPE`类型的定义,改为从`@summeruse/common`导入
|
|
11
|
+
- Updated dependencies [8619680]
|
|
12
|
+
- @summeruse/common@0.0.1
|
|
13
|
+
|
|
14
|
+
## 0.1.1-beta.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [8619680]
|
|
19
|
+
- @summeruse/common@0.0.1-beta.0
|
|
20
|
+
- b0985c6: 添加 useOlMap 函数以简化地图实例的注入
|
|
21
|
+
- 9b9aeed: 移除`T_MAP_TYPE`类型的定义,改为从`@summeruse/common`导入
|
|
22
|
+
|
|
23
|
+
## 0.1.1-beta.1
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- e651b52: 添加经纬度标签样式支持
|
|
28
|
+
|
|
3
29
|
## 0.1.1-beta.0
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|