@vaadin/map 23.2.0-alpha2 → 23.2.0-dev.48e5e3967
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 +4 -5
- package/src/vaadin-map.js +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "23.2.0-
|
|
3
|
+
"version": "23.2.0-dev.48e5e3967",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,9 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "23.2.0-
|
|
40
|
-
"@vaadin/vaadin-
|
|
41
|
-
"@vaadin/vaadin-themable-mixin": "23.2.0-alpha2",
|
|
39
|
+
"@vaadin/component-base": "23.2.0-dev.48e5e3967",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "23.2.0-dev.48e5e3967",
|
|
42
41
|
"ol": "6.13.0"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
@@ -46,5 +45,5 @@
|
|
|
46
45
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
47
46
|
"sinon": "^13.0.2"
|
|
48
47
|
},
|
|
49
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "961bc4ae5b707c3c02f12b99819b3c12c9b478aa"
|
|
50
49
|
}
|
package/src/vaadin-map.js
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
* Copyright (c) 2022 - 2022 Vaadin Ltd.
|
|
4
4
|
* This program is available under Commercial Vaadin Developer License 4.0, available at https://vaadin.com/license/cvdl-4.0.
|
|
5
5
|
*/
|
|
6
|
-
import '@vaadin/vaadin-license-checker/vaadin-license-checker.js';
|
|
7
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
8
7
|
import { defaults as defaultControls } from 'ol/control';
|
|
9
8
|
import { defaults as defaultInteractions } from 'ol/interaction';
|
|
@@ -380,17 +379,6 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
380
379
|
return 'vaadin-map';
|
|
381
380
|
}
|
|
382
381
|
|
|
383
|
-
/** @protected */
|
|
384
|
-
static _finalizeClass() {
|
|
385
|
-
super._finalizeClass();
|
|
386
|
-
|
|
387
|
-
const devModeCallback = window.Vaadin.developmentModeCallback;
|
|
388
|
-
const licenseChecker = devModeCallback && devModeCallback['vaadin-license-checker'];
|
|
389
|
-
if (typeof licenseChecker === 'function') {
|
|
390
|
-
licenseChecker(Map);
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
|
|
394
382
|
/**
|
|
395
383
|
* The internal OpenLayers map instance used to configure the map.
|
|
396
384
|
* See the OpenLayers [API](https://openlayers.org/en/latest/apidoc/) and
|