@abi-software/mapintegratedvuer 1.8.0-beta.1 → 1.8.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/dist/{ContentMixin-B9DtqhYT.js → ContentMixin-B6ksmSI0.js} +3 -2
- package/dist/{Flatmap-BMowLXfS.js → Flatmap-Ce3adujt.js} +3 -3
- package/dist/{Iframe-fNcVYbXe.js → Iframe-WmhTsLfk.js} +2 -2
- package/dist/{MultiFlatmap-DuKi1y2A.js → MultiFlatmap-CLNa86Sb.js} +5 -5
- package/dist/{Plot-3jlnqIiS.js → Plot-BP630SDM.js} +2 -2
- package/dist/{Scaffold-Brboi1Ah.js → Scaffold-TI5Js8Ng.js} +7199 -7143
- package/dist/{Simulation-BPEbHrzv.js → Simulation-Brt2mtu-.js} +2 -2
- package/dist/{index-B_H6BPK_.js → index-Cu0QP-QR.js} +9789 -9775
- package/dist/mapintegratedvuer.js +1 -1
- package/dist/mapintegratedvuer.umd.cjs +450 -447
- package/dist/{style-Bt2YbWCx.js → style-C19uNkHx.js} +12011 -11992
- package/dist/style.css +1 -1
- package/package.json +5 -5
- package/src/components/DialogToolbarContent.vue +4 -0
- package/src/mixins/ContentMixin.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
3
|
-
"version": "1.8.
|
3
|
+
"version": "1.8.1-beta.0",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vite --host --force",
|
@@ -50,11 +50,11 @@
|
|
50
50
|
"*.js"
|
51
51
|
],
|
52
52
|
"dependencies": {
|
53
|
-
"@abi-software/flatmapvuer": "^1.8.
|
54
|
-
"@abi-software/map-side-bar": "^2.7.
|
55
|
-
"@abi-software/map-utilities": "^1.4.
|
53
|
+
"@abi-software/flatmapvuer": "^1.8.1-beta.0",
|
54
|
+
"@abi-software/map-side-bar": "^2.7.2-beta.0",
|
55
|
+
"@abi-software/map-utilities": "^1.4.1-beta.0",
|
56
56
|
"@abi-software/plotvuer": "^1.0.3",
|
57
|
-
"@abi-software/scaffoldvuer": "^1.8.
|
57
|
+
"@abi-software/scaffoldvuer": "^1.8.1-beta.0",
|
58
58
|
"@abi-software/simulationvuer": "1.0.1",
|
59
59
|
"@abi-software/sparc-annotation": "0.3.2",
|
60
60
|
"@abi-software/svg-sprite": "^1.0.1",
|
@@ -465,6 +465,9 @@ export default {
|
|
465
465
|
top:2px;
|
466
466
|
left: calc(50% - 60px);
|
467
467
|
position: absolute;
|
468
|
+
display: flex;
|
469
|
+
align-items: center;
|
470
|
+
|
468
471
|
.sync-help {
|
469
472
|
left:5px;
|
470
473
|
stroke: $app-primary-color;
|
@@ -478,6 +481,7 @@ export default {
|
|
478
481
|
border: 1px solid rgb(220, 223, 230);
|
479
482
|
vertical-align: super;
|
480
483
|
height: 28px;
|
484
|
+
box-sizing: border-box;
|
481
485
|
}
|
482
486
|
|
483
487
|
.sync-help {
|
@@ -248,7 +248,7 @@ export default {
|
|
248
248
|
return fetch(`${this.apiLocation}get-related-terms/${id}`)
|
249
249
|
.then(response => response.json())
|
250
250
|
.then(data => {
|
251
|
-
if (data.uberon
|
251
|
+
if (data.uberon?.array.length > 0) {
|
252
252
|
name =
|
253
253
|
data.uberon.array[0].name.charAt(0).toUpperCase() +
|
254
254
|
data.uberon.array[0].name.slice(1);
|