@abi-software/flatmapvuer 1.13.1-simulation.6 → 1.13.2-demo.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 +2578 -2897
- package/dist/flatmapvuer.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +0 -14
- package/src/assets/styles.scss +0 -12
- package/src/components/FlatmapVuer.vue +676 -1175
- package/src/components/MultiFlatmapVuer.vue +14 -2
- package/src/components/index.js +3 -17
- package/src/services/flatmapKnowledge.js +0 -1
- package/src/services/flatmapLoader.js +1 -1
- package/src/services/apsTestData.js +0 -40
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.2-demo.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/*",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"./src/*": "./src/*"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@abi-software/map-utilities": "1.8.
|
|
47
|
+
"@abi-software/map-utilities": "^1.8.2-demo.0",
|
|
48
48
|
"@abi-software/sparc-annotation": "0.3.2",
|
|
49
49
|
"@abi-software/svg-sprite": "1.0.3",
|
|
50
50
|
"@element-plus/icons-vue": "^2.3.1",
|
package/src/App.vue
CHANGED
|
@@ -80,7 +80,6 @@
|
|
|
80
80
|
:enableOpenMapUI="true"
|
|
81
81
|
:flatmapAPI="flatmapAPI"
|
|
82
82
|
:disableUI="disableUI"
|
|
83
|
-
:sparcAPI="sparcAPI"
|
|
84
83
|
@open-pubmed-url="onOpenPubmedUrl"
|
|
85
84
|
@pathway-selection-changed="onPathwaySelectionChanged"
|
|
86
85
|
@flatmapChanged="onFlatmapChanged"
|
|
@@ -232,15 +231,6 @@ export default {
|
|
|
232
231
|
}
|
|
233
232
|
},
|
|
234
233
|
},
|
|
235
|
-
computed : {
|
|
236
|
-
testDataLocation() {
|
|
237
|
-
return import.meta.env.VITE_TEST_DATA_LOCATION
|
|
238
|
-
|
|
239
|
-
},
|
|
240
|
-
sparcAPI() {
|
|
241
|
-
return import.meta.env.VITE_API_LOCATION
|
|
242
|
-
},
|
|
243
|
-
},
|
|
244
234
|
provide() {
|
|
245
235
|
return {
|
|
246
236
|
$annotator: this.annotator,
|
|
@@ -300,10 +290,6 @@ export default {
|
|
|
300
290
|
"taxo": "NCBITaxon:1",
|
|
301
291
|
"displayWarning": true
|
|
302
292
|
},
|
|
303
|
-
FC: {
|
|
304
|
-
taxo: 'FC',
|
|
305
|
-
uuid: "7720709d-683c-5def-a1e5-8d7c3b0784f7",
|
|
306
|
-
},
|
|
307
293
|
},
|
|
308
294
|
tooltipContent: undefined,
|
|
309
295
|
tStyle: {
|
package/src/assets/styles.scss
CHANGED
|
@@ -3,15 +3,3 @@
|
|
|
3
3
|
@import url('https://fonts.googleapis.com/css?family=Asap:400,400i,500,600,700&display=swap');
|
|
4
4
|
|
|
5
5
|
$--color-primary: $app-primary-color !default;
|
|
6
|
-
|
|
7
|
-
.flatmap-dropdown {
|
|
8
|
-
min-width: 160px !important;
|
|
9
|
-
.el-select-dropdown__item {
|
|
10
|
-
white-space: nowrap;
|
|
11
|
-
text-align: left;
|
|
12
|
-
&.is-selected {
|
|
13
|
-
color: $app-primary-color;
|
|
14
|
-
font-weight: normal;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|