@abi-software/flatmapvuer 1.13.0 → 1.13.1-simulation.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 +2717 -2403
- package/dist/flatmapvuer.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/FlatmapVuer.vue +1134 -648
- package/src/components/MultiFlatmapVuer.vue +2 -0
- package/src/components/index.js +17 -3
- package/src/services/flatmapKnowledge.js +1 -0
|
@@ -106,6 +106,7 @@
|
|
|
106
106
|
import { markRaw } from 'vue'
|
|
107
107
|
import EventBus from './EventBus'
|
|
108
108
|
import FlatmapVuer from './FlatmapVuer.vue'
|
|
109
|
+
import FlatmapError from './FlatmapError.vue'
|
|
109
110
|
import flatmap from '../services/flatmapLoader.js'
|
|
110
111
|
import {
|
|
111
112
|
ElCol as Col,
|
|
@@ -135,6 +136,7 @@ export default {
|
|
|
135
136
|
Select,
|
|
136
137
|
Popover,
|
|
137
138
|
FlatmapVuer,
|
|
139
|
+
FlatmapError,
|
|
138
140
|
},
|
|
139
141
|
created: function () {
|
|
140
142
|
this.loadMapManager();
|
package/src/components/index.js
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
// The Vue build version to load with the `import` command
|
|
2
2
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
3
|
-
import FlatmapVuer from
|
|
4
|
-
import MultiFlatmapVuer from
|
|
3
|
+
import FlatmapVuer from './FlatmapVuer.vue'
|
|
4
|
+
import MultiFlatmapVuer from './MultiFlatmapVuer.vue'
|
|
5
|
+
import { FlatmapQueries } from '../services/flatmapQueries.js'
|
|
6
|
+
import {
|
|
7
|
+
getKnowledgeSource,
|
|
8
|
+
getKnowledgeSourceFromProvenance,
|
|
9
|
+
loadAndStoreKnowledge,
|
|
10
|
+
} from '../services/flatmapKnowledge.js'
|
|
5
11
|
|
|
6
|
-
export {
|
|
12
|
+
export {
|
|
13
|
+
FlatmapQueries,
|
|
14
|
+
FlatmapVuer,
|
|
15
|
+
getKnowledgeSource,
|
|
16
|
+
getKnowledgeSourceFromProvenance,
|
|
17
|
+
loadAndStoreKnowledge,
|
|
18
|
+
MultiFlatmapVuer,
|
|
19
|
+
}
|
|
20
|
+
// export { FlatmapVuer, MultiFlatmapVuer };
|