@abi-software/flatmapvuer 1.2.0 → 1.3.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/dist/flatmapvuer.js +25050 -28716
- package/dist/flatmapvuer.umd.cjs +164 -164
- package/dist/style.css +1 -1
- package/package.json +3 -2
- package/src/App.vue +5 -6
- package/src/components/FlatmapVuer.vue +203 -100
- package/src/components/MultiFlatmapVuer.vue +17 -1
- package/src/components/index.js +3 -5
- package/src/components.d.ts +0 -18
- package/src/services/flatmapQueries.js +6 -5
- package/vite.config.js +3 -2
- package/src/components/AnnotationTool.vue +0 -501
- package/src/components/ConnectionDialog.vue +0 -134
- package/src/components/DrawTool.vue +0 -502
- package/src/components/ExternalResourceCard.vue +0 -109
- package/src/components/HelpModeDialog.vue +0 -360
- package/src/components/ProvenancePopup.vue +0 -530
- package/src/components/Tooltip.vue +0 -50
- package/src/components/TreeControls.vue +0 -236
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.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": "
|
|
46
|
+
"@abi-software/flatmap-viewer": "2.9.5",
|
|
47
|
+
"@abi-software/map-utilities": "^0.0.0-beta.4",
|
|
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
|
|