@abi-software/flatmapvuer 1.6.1-beta.0 → 1.6.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/dist/flatmapvuer.js +5299 -5292
- package/dist/flatmapvuer.umd.cjs +70 -70
- package/dist/style.css +1 -1
- package/package.json +5 -5
- package/src/components/FlatmapVuer.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.6.1
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/*",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"url": "https://github.com/ABI-Software/flatmapvuer.git"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"serve": "vite --host",
|
|
17
|
+
"serve": "vite --host --force",
|
|
18
18
|
"build-bundle": "vite build",
|
|
19
19
|
"build-static": "vite build -c vite.static-build.js",
|
|
20
20
|
"test": "cypress run --component",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"./src/*": "./src/*"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@abi-software/flatmap-viewer": "^3.2.
|
|
47
|
-
"@abi-software/map-utilities": "^1.2.
|
|
48
|
-
"@abi-software/sparc-annotation": "0.3.
|
|
46
|
+
"@abi-software/flatmap-viewer": "^3.2.6",
|
|
47
|
+
"@abi-software/map-utilities": "^1.2.1",
|
|
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",
|
|
51
51
|
"css-element-queries": "^1.2.2",
|
|
@@ -1776,7 +1776,7 @@ export default {
|
|
|
1776
1776
|
* @arg {Object} `payload`
|
|
1777
1777
|
*/
|
|
1778
1778
|
showConnectivityTooltips: function (payload) {
|
|
1779
|
-
const { connectivityInfo, data
|
|
1779
|
+
const { connectivityInfo, data } = payload;
|
|
1780
1780
|
const featuresToHighlight = [];
|
|
1781
1781
|
const connectivityData = [];
|
|
1782
1782
|
const filteredConnectivityData = [];
|
|
@@ -1830,7 +1830,7 @@ export default {
|
|
|
1830
1830
|
}
|
|
1831
1831
|
|
|
1832
1832
|
// Emit error message for connectivity graph
|
|
1833
|
-
if (errorData.length
|
|
1833
|
+
if (errorData.length) {
|
|
1834
1834
|
this.emitConnectivityGraphError(errorData);
|
|
1835
1835
|
}
|
|
1836
1836
|
|