@abi-software/flatmapvuer 1.2.0 → 1.3.1-beta.0

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.2.0",
3
+ "version": "1.3.1-beta.0",
4
4
  "license": "Apache-2.0",
5
5
  "files": [
6
6
  "dist/*",
@@ -43,7 +43,8 @@
43
43
  "./src/*": "./src/*"
44
44
  },
45
45
  "dependencies": {
46
- "@abi-software/flatmap-viewer": "^2.9.4",
46
+ "@abi-software/flatmap-viewer": "2.9.5",
47
+ "@abi-software/map-utilities": "1.0.0",
47
48
  "@abi-software/sparc-annotation": "0.3.1",
48
49
  "@abi-software/svg-sprite": "1.0.0",
49
50
  "@element-plus/icons-vue": "^2.3.1",
package/src/App.vue CHANGED
@@ -95,11 +95,9 @@
95
95
  </template>
96
96
 
97
97
  <script>
98
+ /* eslint-disable no-alert, no-console */
98
99
  import { shallowRef } from 'vue';
99
100
  import { Setting as ElIconSetting } from '@element-plus/icons-vue'
100
- /* eslint-disable no-alert, no-console */
101
- import MultiFlatmapVuer from './components/MultiFlatmapVuer.vue'
102
- import HelpModeDialog from './components/HelpModeDialog.vue';
103
101
  import {
104
102
  ElAutocomplete as Autocomplete,
105
103
  ElButton as Button,
@@ -108,6 +106,9 @@ import {
108
106
  ElRow as Row,
109
107
  } from 'element-plus'
110
108
  import './icons/mapicon-species-style.css'
109
+ import MultiFlatmapVuer from './components/MultiFlatmapVuer.vue'
110
+ import { HelpModeDialog } from '@abi-software/map-utilities'
111
+ import '@abi-software/map-utilities/dist/style.css'
111
112
 
112
113
  export default {
113
114
  name: 'app',
@@ -118,6 +119,7 @@ export default {
118
119
  ElIconSetting,
119
120
  Popover,
120
121
  Row,
122
+ MultiFlatmapVuer,
121
123
  HelpModeDialog,
122
124
  },
123
125
  methods: {
@@ -298,9 +300,6 @@ export default {
298
300
  }
299
301
  }
300
302
  },
301
- components: {
302
- MultiFlatmapVuer,
303
- },
304
303
  }
305
304
  </script>
306
305