@dative-gpi/foundation-shared-components 0.0.201 → 0.0.203
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/components/map/FSMap.vue +3 -1
- package/package.json +4 -4
package/components/map/FSMap.vue
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
v-bind="$attrs"
|
|
5
5
|
>
|
|
6
6
|
<FSCol
|
|
7
|
+
v-if="L"
|
|
7
8
|
class="fs-map"
|
|
8
9
|
width="fill"
|
|
9
10
|
>
|
|
@@ -96,7 +97,7 @@
|
|
|
96
97
|
<script lang="ts">
|
|
97
98
|
import { computed, defineComponent, onMounted, type PropType, ref, watch } from "vue";
|
|
98
99
|
|
|
99
|
-
import
|
|
100
|
+
import * as L from "leaflet";
|
|
100
101
|
import "leaflet.markercluster";
|
|
101
102
|
|
|
102
103
|
import { useTranslations as useTranslationsProvider } from "@dative-gpi/bones-ui/composables";
|
|
@@ -448,6 +449,7 @@ export default defineComponent({
|
|
|
448
449
|
});
|
|
449
450
|
|
|
450
451
|
return {
|
|
452
|
+
L,
|
|
451
453
|
innerSelectedLayer,
|
|
452
454
|
editingLocation,
|
|
453
455
|
innerModelValue,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.203",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "0.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "0.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "0.0.203",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "0.0.203"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^0.0.75",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "c458860cdad7dff7f9512dddaffe26e60418f880"
|
|
39
39
|
}
|