@abi-software/flatmapvuer 1.10.3-beta.2 → 1.10.3-beta.3
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 +478 -478
- package/dist/flatmapvuer.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/FlatmapVuer.vue +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "1.10.3-beta.
|
|
3
|
+
"version": "1.10.3-beta.3",
|
|
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.6.1-beta.
|
|
47
|
+
"@abi-software/map-utilities": "^1.6.1-beta.2",
|
|
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",
|
|
@@ -3013,9 +3013,10 @@ export default {
|
|
|
3013
3013
|
}
|
|
3014
3014
|
}
|
|
3015
3015
|
})
|
|
3016
|
-
const
|
|
3017
|
-
const
|
|
3018
|
-
const
|
|
3016
|
+
const knowledgeSource = this.mapImp.knowledgeSource;
|
|
3017
|
+
const originItems = await extractOriginItems(this.flatmapAPI, knowledgeSource, flatmapKnowledge);
|
|
3018
|
+
const viaItems = await extractViaItems(this.flatmapAPI, knowledgeSource, flatmapKnowledge);
|
|
3019
|
+
const destinationItems = await extractDestinationItems(this.flatmapAPI, knowledgeSource, flatmapKnowledge);
|
|
3019
3020
|
|
|
3020
3021
|
const transformItem = (facet, item) => {
|
|
3021
3022
|
const key = JSON.stringify(item.key);
|