@abi-software/flatmapvuer 0.2.4-beta-5 → 0.2.4-beta-6
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.common.js +4 -4
- package/dist/flatmapvuer.common.js.map +1 -1
- package/dist/flatmapvuer.umd.js +4 -4
- package/dist/flatmapvuer.umd.js.map +1 -1
- package/dist/flatmapvuer.umd.min.js.map +1 -1
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/src/App.vue +6 -6
- package/src/icons/mapicon-species-style.css +6 -6
package/package-lock.json
CHANGED
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -73,12 +73,12 @@ export default {
|
|
|
73
73
|
searchable: true,
|
|
74
74
|
pathControls: true,
|
|
75
75
|
minZoom: 4,
|
|
76
|
-
availableSpecies : {"Human":{taxo: "NCBITaxon:9606", iconClass:"
|
|
77
|
-
"Rat":{taxo: "NCBITaxon:10114", iconClass:"
|
|
78
|
-
"Mouse":{taxo: "NCBITaxon:10090", iconClass:"
|
|
76
|
+
availableSpecies : {"Human":{taxo: "NCBITaxon:9606", iconClass:"mapicon-icon_human", displayWarning:true},
|
|
77
|
+
"Rat":{taxo: "NCBITaxon:10114", iconClass:"mapicon-icon_rat", displayWarning:false},
|
|
78
|
+
"Mouse":{taxo: "NCBITaxon:10090", iconClass:"mapicon-icon_mouse", displayWarning:true},
|
|
79
79
|
"Kember":{taxo: "ABI:1000001", displayWarning:true},
|
|
80
|
-
"Pig":{taxo: "NCBITaxon:9823", iconClass:"
|
|
81
|
-
"Cat":{taxo: "NCBITaxon:9685", iconClass:"
|
|
80
|
+
"Pig":{taxo: "NCBITaxon:9823", iconClass:"mapicon-icon_pig", displayWarning:true},
|
|
81
|
+
"Cat":{taxo: "NCBITaxon:9685", iconClass:"mapicon-icon_cat", displayWarning:true},
|
|
82
82
|
"digestive tract":{taxo: "digestive tract", displayWarning:true}
|
|
83
83
|
},
|
|
84
84
|
tooltipContent: undefined,
|
|
@@ -91,7 +91,7 @@ export default {
|
|
|
91
91
|
initial: "digestive tract",
|
|
92
92
|
helpMode: false,
|
|
93
93
|
//flatmapAPI: "https://mapcore-demo.org/fccb/flatmap/"
|
|
94
|
-
flatmapAPI: "https://mapcore-demo.org/devel/flatmap/
|
|
94
|
+
flatmapAPI: "https://mapcore-demo.org/devel/flatmap/v1/"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
mounted: function() {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
font-display: block;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
[class^="icon
|
|
13
|
+
[class^="mapicon-icon"], [class*=" mapicon-icon"] {
|
|
14
14
|
/* use !important to prevent issues with browser extensions that change fonts */
|
|
15
15
|
font-family: 'mapicon-species' !important;
|
|
16
16
|
speak: never;
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
-moz-osx-font-smoothing: grayscale;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
.
|
|
28
|
+
.mapicon-icon_cat:before {
|
|
29
29
|
content: "\e904";
|
|
30
30
|
}
|
|
31
|
-
.
|
|
31
|
+
.mapicon-icon_rat:before {
|
|
32
32
|
content: "\e900";
|
|
33
33
|
}
|
|
34
|
-
.
|
|
34
|
+
.mapicon-icon_pig:before {
|
|
35
35
|
content: "\e901";
|
|
36
36
|
}
|
|
37
|
-
.
|
|
37
|
+
.mapicon-icon_mouse:before {
|
|
38
38
|
content: "\e902";
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.mapicon-icon_human:before {
|
|
41
41
|
content: "\e903";
|
|
42
42
|
}
|