@community-release/nx-ui 0.0.13 → 0.0.15

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/README.md CHANGED
@@ -2,3 +2,4 @@
2
2
 
3
3
  Nuxt UI library
4
4
 
5
+ Not for production use yet.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "ui",
3
3
  "configKey": "ui",
4
- "version": "0.0.13"
4
+ "version": "0.0.15"
5
5
  }
@@ -10,7 +10,6 @@
10
10
  </template>
11
11
 
12
12
  <script setup>
13
- import openlayers from './openlayers/index.vue';
14
13
  import { watch, computed, defineAsyncComponent } from 'vue';
15
14
  import { useMapStore } from './store';
16
15
  import comProps from '#build/ui.map.mjs';
@@ -18,9 +17,6 @@ import comProps from '#build/ui.map.mjs';
18
17
  // Data
19
18
  const store = useMapStore();
20
19
  const emit = defineEmits('initialized');
21
- const engines = {
22
- openlayers
23
- };
24
20
 
25
21
  const props = defineProps({
26
22
  engine: {
@@ -92,8 +88,7 @@ watch(() => props.disabledMarkers, (v) => {
92
88
  }, {immediate: true});
93
89
 
94
90
  const mapEngine = computed(() => {
95
- return engines[props.engine];
96
- //return defineAsyncComponent(() => import(`./${props.engine}/index.vue`));
91
+ return defineAsyncComponent(() => import(`./${props.engine}/index.vue`));
97
92
  });
98
93
  </script>
99
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@community-release/nx-ui",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "description": "nx-ui - Nuxt UI library",
5
5
  "repository": {
6
6
  "type": "git",