@vaadin/map 23.1.2 → 23.2.0-alpha3

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.2",
3
+ "version": "23.2.0-alpha3",
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.1.2",
40
- "@vaadin/vaadin-license-checker": "^2.1.0",
41
- "@vaadin/vaadin-themable-mixin": "^23.1.2",
39
+ "@vaadin/component-base": "23.2.0-alpha3",
40
+ "@vaadin/vaadin-themable-mixin": "23.2.0-alpha3",
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": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
48
+ "gitHead": "06e5875be93ca50da2846dafc65a8531010c0576"
50
49
  }
@@ -3,7 +3,7 @@
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 OpenLayersMap from 'ol/Map.js';
6
+ import type OpenLayersMap from 'ol/Map.js';
7
7
  import { ElementMixin, FocusMixin, ResizeMixin } from '@vaadin/component-base';
8
8
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin';
9
9
 
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