@abi-software/flatmapvuer 1.7.1-beta.1 → 1.7.2
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 +1394 -1397
- package/dist/flatmapvuer.umd.cjs +26 -26
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +1 -8
- package/src/components/FlatmapVuer.vue +5 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
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.10",
|
|
47
|
-
"@abi-software/map-utilities": "^1.3.1
|
|
47
|
+
"@abi-software/map-utilities": "^1.3.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",
|
package/src/App.vue
CHANGED
|
@@ -245,45 +245,38 @@ export default {
|
|
|
245
245
|
taxo: 'NCBITaxon:9606',
|
|
246
246
|
biologicalSex: 'PATO:0000383',
|
|
247
247
|
iconClass: 'mapicon-icon_human',
|
|
248
|
-
displayWarning: true,
|
|
249
248
|
},
|
|
250
249
|
'Human Male': {
|
|
251
250
|
taxo: 'NCBITaxon:9606',
|
|
252
251
|
biologicalSex: 'PATO:0000384',
|
|
253
252
|
iconClass: 'mapicon-icon_human',
|
|
254
|
-
|
|
253
|
+
displayLatestChanges: true,
|
|
255
254
|
},
|
|
256
255
|
Rat: {
|
|
257
256
|
taxo: 'NCBITaxon:10114',
|
|
258
257
|
iconClass: 'mapicon-icon_rat',
|
|
259
|
-
displayWarning: true,
|
|
260
258
|
displayLatestChanges: true,
|
|
261
259
|
},
|
|
262
260
|
'Rat (NPO)': {
|
|
263
261
|
taxo: 'NCBITaxon:10116',
|
|
264
262
|
iconClass: 'mapicon-icon_rat',
|
|
265
|
-
displayWarning: true,
|
|
266
263
|
displayLatestChanges: true,
|
|
267
264
|
},
|
|
268
265
|
Mouse: {
|
|
269
266
|
taxo: 'NCBITaxon:10090',
|
|
270
267
|
iconClass: 'mapicon-icon_mouse',
|
|
271
|
-
displayWarning: true,
|
|
272
268
|
},
|
|
273
269
|
Kember: { taxo: 'ABI:1000001', displayWarning: true },
|
|
274
270
|
Pig: {
|
|
275
271
|
taxo: 'NCBITaxon:9823',
|
|
276
272
|
iconClass: 'mapicon-icon_pig',
|
|
277
|
-
displayWarning: true,
|
|
278
273
|
},
|
|
279
274
|
Cat: {
|
|
280
275
|
taxo: 'NCBITaxon:9685',
|
|
281
276
|
iconClass: 'mapicon-icon_cat',
|
|
282
|
-
displayWarning: true,
|
|
283
277
|
},
|
|
284
278
|
Vagus: {
|
|
285
279
|
taxo: 'UBERON:0001759',
|
|
286
|
-
displayWarning: true,
|
|
287
280
|
},
|
|
288
281
|
Sample: { taxo: 'NCBITaxon:1', displayWarning: true },
|
|
289
282
|
'Functional Connectivity': {
|
|
@@ -75,18 +75,17 @@ Please use `const` to assign meaningful names to them...
|
|
|
75
75
|
<template #reference>
|
|
76
76
|
<div
|
|
77
77
|
class="warning-icon"
|
|
78
|
-
v-if="displayWarning"
|
|
79
78
|
@mouseover="showTooltip(7)"
|
|
80
79
|
@mouseout="hideTooltip(7)"
|
|
81
80
|
>
|
|
82
|
-
<el-icon><el-icon-warning-filled /></el-icon>
|
|
81
|
+
<el-icon v-if="displayWarning || isLegacy"><el-icon-warning-filled /></el-icon>
|
|
83
82
|
<template v-if="isLegacy">
|
|
84
83
|
<span class="warning-text">Legacy Map</span>
|
|
85
84
|
<div class="latest-map-text" @click="viewLatestMap">
|
|
86
85
|
Click here for the latest map
|
|
87
86
|
</div>
|
|
88
87
|
</template>
|
|
89
|
-
<template v-else>
|
|
88
|
+
<template v-else-if="displayWarning">
|
|
90
89
|
<span class="warning-text">Beta</span>
|
|
91
90
|
</template>
|
|
92
91
|
</div>
|
|
@@ -114,16 +113,10 @@ Please use `const` to assign meaningful names to them...
|
|
|
114
113
|
</div>
|
|
115
114
|
</template>
|
|
116
115
|
<template #default>
|
|
117
|
-
<b>Connectivity
|
|
116
|
+
<b>Connectivity References</b>
|
|
118
117
|
<p>
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
</p>
|
|
122
|
-
<b>Interactive connectivity list and graph</b>
|
|
123
|
-
<p>
|
|
124
|
-
Corresponding features on the map can be located when
|
|
125
|
-
hovering or clicking on the features in the connecitivity
|
|
126
|
-
list and graph.
|
|
118
|
+
Connectivity references have been improved and available
|
|
119
|
+
in various formats.
|
|
127
120
|
</p>
|
|
128
121
|
<b>Improved state storing</b>
|
|
129
122
|
<p>
|