@vaadin/map 25.0.0-alpha4 → 25.0.0-alpha6

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": "25.0.0-alpha4",
3
+ "version": "25.0.0-alpha6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,16 +35,16 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.0.0-alpha4",
39
- "@vaadin/component-base": "25.0.0-alpha4",
40
- "@vaadin/vaadin-lumo-styles": "25.0.0-alpha4",
41
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha4",
38
+ "@vaadin/a11y-base": "25.0.0-alpha6",
39
+ "@vaadin/component-base": "25.0.0-alpha6",
40
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha6",
41
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha6",
42
42
  "lit": "^3.0.0",
43
- "ol": "6.13.0"
43
+ "ol": "10.6.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/chai-plugins": "25.0.0-alpha4",
47
- "@vaadin/test-runner-commands": "25.0.0-alpha4",
46
+ "@vaadin/chai-plugins": "25.0.0-alpha6",
47
+ "@vaadin/test-runner-commands": "25.0.0-alpha6",
48
48
  "@vaadin/testing-helpers": "^2.0.0",
49
49
  "sinon": "^18.0.0"
50
50
  },
@@ -53,5 +53,5 @@
53
53
  "web-types.json",
54
54
  "web-types.lit.json"
55
55
  ],
56
- "gitHead": "ce4421f0daf26027b863b91787a474e4cc264344"
56
+ "gitHead": "cd1d084198d2b326c58d44bb39fa4845b71ce551"
57
57
  }
@@ -169,7 +169,7 @@ export const mapStyles = css`
169
169
  }
170
170
 
171
171
  .ol-control button {
172
- -webkit-appearance: none;
172
+ appearance: none;
173
173
  border: 0;
174
174
  margin: 0;
175
175
  padding: 0;
package/src/vaadin-map.js CHANGED
@@ -12,8 +12,9 @@ import { html, LitElement } from 'lit';
12
12
  import { defineCustomElement } from '@vaadin/component-base/src/define.js';
13
13
  import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
14
14
  import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
15
+ import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
15
16
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
16
- import { mapStyles } from './styles/vaadin-map-styles.js';
17
+ import { mapStyles } from './styles/vaadin-map-core-styles.js';
17
18
  import { MapMixin } from './vaadin-map-mixin.js';
18
19
 
19
20
  /**
@@ -56,7 +57,7 @@ import { MapMixin } from './vaadin-map-mixin.js';
56
57
  * @mixes ThemableMixin
57
58
  * @mixes ElementMixin
58
59
  */
59
- class Map extends MapMixin(ThemableMixin(ElementMixin(PolylitMixin(LitElement)))) {
60
+ class Map extends MapMixin(ThemableMixin(ElementMixin(LumoInjectionMixin(PolylitMixin(LitElement))))) {
60
61
  static get is() {
61
62
  return 'vaadin-map';
62
63
  }
@@ -107,13 +107,6 @@ registerStyles(
107
107
  background: var(--lumo-base-color) linear-gradient(var(--lumo-contrast-5pct), var(--lumo-contrast-5pct));
108
108
  }
109
109
 
110
- @supports not selector(:focus-visible) {
111
- .ol-control button:focus {
112
- outline: none;
113
- box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
114
- }
115
- }
116
-
117
110
  .ol-control button:focus-visible {
118
111
  outline: none;
119
112
  box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/map",
4
- "version": "25.0.0-alpha4",
4
+ "version": "25.0.0-alpha6",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/map",
4
- "version": "25.0.0-alpha4",
4
+ "version": "25.0.0-alpha6",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {