@vaadin/map 23.1.0-alpha2 → 23.1.0-beta1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "23.1.0-
|
|
3
|
+
"version": "23.1.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@polymer/polymer": "^3.0.0",
|
|
38
|
-
"@vaadin/component-base": "23.1.0-
|
|
38
|
+
"@vaadin/component-base": "23.1.0-beta1",
|
|
39
39
|
"@vaadin/vaadin-license-checker": "^2.1.0",
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "23.1.0-
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "23.1.0-beta1",
|
|
41
41
|
"ol": "6.13.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@esm-bundle/chai": "^4.3.4",
|
|
45
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
46
|
-
"sinon": "^
|
|
46
|
+
"sinon": "^13.0.2"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
|
|
49
49
|
}
|
package/src/vaadin-map.js
CHANGED
|
@@ -409,11 +409,11 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
409
409
|
// correctly display icons through pseudo-element
|
|
410
410
|
controls: defaultControls({
|
|
411
411
|
rotate: false,
|
|
412
|
-
zoomOptions: { zoomInLabel: '', zoomOutLabel: '' }
|
|
412
|
+
zoomOptions: { zoomInLabel: '', zoomOutLabel: '' },
|
|
413
413
|
}),
|
|
414
414
|
// Override default interactions to allow mouse-wheel zoom + drag-pan when not focused
|
|
415
415
|
interactions: defaultInteractions({ onFocusOnly: false }),
|
|
416
|
-
target: this._mapTarget
|
|
416
|
+
target: this._mapTarget,
|
|
417
417
|
};
|
|
418
418
|
this._configuration = new OpenLayersMap(options);
|
|
419
419
|
}
|
|
@@ -472,7 +472,7 @@ if (isEnabled()) {
|
|
|
472
472
|
customElements.define(Map.is, Map);
|
|
473
473
|
} else {
|
|
474
474
|
console.warn(
|
|
475
|
-
'WARNING: The map component is currently an experimental feature and needs to be explicitly enabled. To enable the component, `import "@vaadin/map/enable.js"` *before* importing the map module itself.'
|
|
475
|
+
'WARNING: The map component is currently an experimental feature and needs to be explicitly enabled. To enable the component, `import "@vaadin/map/enable.js"` *before* importing the map module itself.',
|
|
476
476
|
);
|
|
477
477
|
}
|
|
478
478
|
|