@vaadin/map 25.2.0-alpha10 → 25.2.0-alpha11
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 +10 -10
- package/src/vaadin-map-mixin.js +0 -6
- package/src/vaadin-map.d.ts +0 -4
- package/src/vaadin-map.js +0 -4
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
39
|
-
"@vaadin/component-base": "25.2.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.2.0-alpha11",
|
|
39
|
+
"@vaadin/component-base": "25.2.0-alpha11",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-alpha11",
|
|
41
41
|
"lit": "^3.0.0",
|
|
42
|
-
"ol": "10.6.
|
|
42
|
+
"ol": "10.6.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/aura": "25.2.0-
|
|
46
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
47
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
45
|
+
"@vaadin/aura": "25.2.0-alpha11",
|
|
46
|
+
"@vaadin/chai-plugins": "25.2.0-alpha11",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.2.0-alpha11",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-alpha11",
|
|
50
50
|
"sinon": "^21.0.2"
|
|
51
51
|
},
|
|
52
52
|
"cvdlName": "vaadin-map",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "fdc37e932709f95491a027aeb2090911cb7528c6"
|
|
59
59
|
}
|
package/src/vaadin-map-mixin.js
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -14,11 +13,6 @@ import OpenLayersMap from 'ol/Map.js';
|
|
|
14
13
|
import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
15
14
|
import { ResizeMixin } from '@vaadin/component-base/src/resize-mixin.js';
|
|
16
15
|
|
|
17
|
-
/**
|
|
18
|
-
* @polymerMixin
|
|
19
|
-
* @mixes ResizeMixin
|
|
20
|
-
* @mixes FocusMixin
|
|
21
|
-
*/
|
|
22
16
|
export const MapMixin = (superClass) =>
|
|
23
17
|
class extends FocusMixin(ResizeMixin(superClass)) {
|
|
24
18
|
constructor() {
|
package/src/vaadin-map.d.ts
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -46,9 +45,6 @@ import { MapMixin } from './vaadin-map-mixin.js';
|
|
|
46
45
|
* </script>
|
|
47
46
|
* ```
|
|
48
47
|
* @extends HTMLElement
|
|
49
|
-
* @mixes ThemableMixin
|
|
50
|
-
* @mixes ElementMixin
|
|
51
|
-
* @mixes MapMixin
|
|
52
48
|
*/
|
|
53
49
|
declare class Map extends MapMixin(ThemableMixin(ElementMixin(HTMLElement))) {}
|
|
54
50
|
|
package/src/vaadin-map.js
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
*
|
|
5
5
|
* This program is available under Vaadin Commercial License and Service Terms.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
8
7
|
* See https://vaadin.com/commercial-license-and-service-terms for the full
|
|
9
8
|
* license.
|
|
10
9
|
*/
|
|
@@ -53,9 +52,6 @@ import { MapMixin } from './vaadin-map-mixin.js';
|
|
|
53
52
|
*
|
|
54
53
|
* @customElement vaadin-map
|
|
55
54
|
* @extends HTMLElement
|
|
56
|
-
* @mixes MapMixin
|
|
57
|
-
* @mixes ThemableMixin
|
|
58
|
-
* @mixes ElementMixin
|
|
59
55
|
*/
|
|
60
56
|
class Map extends MapMixin(ThemableMixin(ElementMixin(PolylitMixin(LumoInjectionMixin(LitElement))))) {
|
|
61
57
|
static get is() {
|
package/web-types.json
CHANGED