@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.
@@ -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();
@@ -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 "./FlatmapVuer.vue";
4
- import MultiFlatmapVuer from "./MultiFlatmapVuer.vue";
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 { FlatmapVuer, MultiFlatmapVuer };
12
+ export {
13
+ FlatmapQueries,
14
+ FlatmapVuer,
15
+ getKnowledgeSource,
16
+ getKnowledgeSourceFromProvenance,
17
+ loadAndStoreKnowledge,
18
+ MultiFlatmapVuer,
19
+ }
20
+ // export { FlatmapVuer, MultiFlatmapVuer };
@@ -141,6 +141,7 @@ export {
141
141
  getReferenceConnectivitiesFromStorage,
142
142
  getReferenceConnectivitiesByAPI,
143
143
  loadAndStoreKnowledge,
144
+ getFlatmapKnowledge,
144
145
  getKnowledgeSource,
145
146
  getKnowledgeSourceFromProvenance,
146
147
  refreshFlatmapKnowledgeCache,