@abi-software/flatmapvuer 1.6.2-beta.0 → 1.6.2-beta.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.6.2-beta.
|
|
3
|
+
"version": "1.6.2-beta.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/*",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@abi-software/flatmap-viewer": "^3.2.8",
|
|
47
|
-
"@abi-software/map-utilities": "^1.2.2-beta.
|
|
47
|
+
"@abi-software/map-utilities": "^1.2.2-beta.1",
|
|
48
48
|
"@abi-software/sparc-annotation": "0.3.2",
|
|
49
49
|
"@abi-software/svg-sprite": "^1.0.1",
|
|
50
50
|
"@element-plus/icons-vue": "^2.3.1",
|
|
@@ -750,6 +750,7 @@ export default {
|
|
|
750
750
|
if (this.annotationSidebar) this.$emit("annotation-close")
|
|
751
751
|
this.closeTooltip()
|
|
752
752
|
this.annotationEventCallback({}, { type: 'aborted' })
|
|
753
|
+
this.initialiseDrawing()
|
|
753
754
|
},
|
|
754
755
|
/**
|
|
755
756
|
* @public
|
|
@@ -951,6 +952,7 @@ export default {
|
|
|
951
952
|
if (this.annotationEntry.type === 'deleted') {
|
|
952
953
|
if (this.annotationSidebar) this.$emit("annotation-close")
|
|
953
954
|
this.closeTooltip()
|
|
955
|
+
// Only delete need, keep the annotation tooltip/sidebar open if created/updated
|
|
954
956
|
this.annotationEntry = {}
|
|
955
957
|
}
|
|
956
958
|
this.addAnnotationFeature()
|
package/src/store/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { defineStore } from 'pinia'
|
|
|
8
8
|
export const useMainStore = defineStore('main', {
|
|
9
9
|
state: () => ({
|
|
10
10
|
userProfile: {
|
|
11
|
-
token: '
|
|
11
|
+
token: ''
|
|
12
12
|
},
|
|
13
13
|
}),
|
|
14
14
|
getters: {
|