@sedoo/unidoo 0.1.19 → 0.1.21
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/unidoo/unidoo.common.js +3 -3
- package/dist/unidoo/unidoo.common.js.map +1 -1
- package/dist/unidoo/unidoo.umd.js +3 -3
- package/dist/unidoo/unidoo.umd.js.map +1 -1
- package/dist/unidoo/unidoo.umd.min.js +3 -3
- package/dist/unidoo/unidoo.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/UnidooMapGeoFeatures.vue +2 -2
- package/src/plugin.js +2 -3
package/package.json
CHANGED
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
export default {
|
|
53
|
-
name: '
|
|
53
|
+
name: 'unidoo-map-geo-features',
|
|
54
54
|
components: {},
|
|
55
55
|
data() {
|
|
56
56
|
return {
|
|
@@ -74,7 +74,7 @@ export default {
|
|
|
74
74
|
props: {
|
|
75
75
|
title: {
|
|
76
76
|
type: String,
|
|
77
|
-
default: '
|
|
77
|
+
default: 'Component Unidoo MapGeoFeatures',
|
|
78
78
|
},
|
|
79
79
|
colorTitle: {
|
|
80
80
|
type: String,
|
package/src/plugin.js
CHANGED
|
@@ -23,10 +23,9 @@ function install(Vue) {
|
|
|
23
23
|
// Globally register the component
|
|
24
24
|
Vue.component(componentName, componentConfig.default || componentConfig);
|
|
25
25
|
// Use Vue.customElement to enable the be able to use the component UnidooMapGeoFeatures as a custom element in WordPress
|
|
26
|
-
if (componentName === "
|
|
27
|
-
const kebabCaseComponentName = "unidoo-map-geo-features";
|
|
26
|
+
if (componentName === "unidoo-map-geo-features") {
|
|
28
27
|
Vue.customElement(
|
|
29
|
-
|
|
28
|
+
componentName,
|
|
30
29
|
componentConfig.default || componentConfig
|
|
31
30
|
);
|
|
32
31
|
}
|