@vaadin/map 25.0.0-alpha5 → 25.0.0-alpha7

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-alpha5",
3
+ "version": "25.0.0-alpha7",
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-alpha5",
39
- "@vaadin/component-base": "25.0.0-alpha5",
40
- "@vaadin/vaadin-lumo-styles": "25.0.0-alpha5",
41
- "@vaadin/vaadin-themable-mixin": "25.0.0-alpha5",
38
+ "@vaadin/a11y-base": "25.0.0-alpha7",
39
+ "@vaadin/component-base": "25.0.0-alpha7",
40
+ "@vaadin/vaadin-lumo-styles": "25.0.0-alpha7",
41
+ "@vaadin/vaadin-themable-mixin": "25.0.0-alpha7",
42
42
  "lit": "^3.0.0",
43
43
  "ol": "10.6.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/chai-plugins": "25.0.0-alpha5",
47
- "@vaadin/test-runner-commands": "25.0.0-alpha5",
46
+ "@vaadin/chai-plugins": "25.0.0-alpha7",
47
+ "@vaadin/test-runner-commands": "25.0.0-alpha7",
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": "7dc87bb2a3cae81ed53259fa10b58f990d50c6fd"
56
+ "gitHead": "87f72707ce6866892f8be5782fa0da008e87dcbc"
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,7 +12,7 @@ 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 { CSSInjectionMixin } from '@vaadin/vaadin-themable-mixin/css-injection-mixin.js';
15
+ import { LumoInjectionMixin } from '@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js';
16
16
  import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
17
17
  import { mapStyles } from './styles/vaadin-map-core-styles.js';
18
18
  import { MapMixin } from './vaadin-map-mixin.js';
@@ -57,7 +57,7 @@ import { MapMixin } from './vaadin-map-mixin.js';
57
57
  * @mixes ThemableMixin
58
58
  * @mixes ElementMixin
59
59
  */
60
- class Map extends MapMixin(ThemableMixin(ElementMixin(CSSInjectionMixin(PolylitMixin(LitElement))))) {
60
+ class Map extends MapMixin(ThemableMixin(ElementMixin(LumoInjectionMixin(PolylitMixin(LitElement))))) {
61
61
  static get is() {
62
62
  return 'vaadin-map';
63
63
  }
@@ -34,12 +34,12 @@ registerStyles(
34
34
  --_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
35
35
  }
36
36
 
37
- :host(:not([theme~='borderless'])) {
37
+ :host(:not([theme~='no-border'])) {
38
38
  border-radius: var(--lumo-border-radius-l);
39
39
  position: relative;
40
40
  }
41
41
 
42
- :host(:not([theme~='borderless']))::before {
42
+ :host(:not([theme~='no-border']))::before {
43
43
  content: '';
44
44
  position: absolute;
45
45
  inset: 0;
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-alpha5",
4
+ "version": "25.0.0-alpha7",
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-alpha5",
4
+ "version": "25.0.0-alpha7",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {