@vaadin/map 25.3.0-dev.3a3c2d7d2a → 25.3.0-rc1

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.
@@ -91,6 +91,15 @@
91
91
  }
92
92
  }
93
93
  ],
94
+ "attributes": [
95
+ {
96
+ "type": {
97
+ "text": "string"
98
+ },
99
+ "description": "The theme variants to apply to the component.",
100
+ "name": "theme"
101
+ }
102
+ ],
94
103
  "mixins": [
95
104
  {
96
105
  "name": "MapMixin",
@@ -119,7 +128,6 @@
119
128
  },
120
129
  "tagName": "vaadin-map",
121
130
  "customElement": true,
122
- "attributes": [],
123
131
  "events": []
124
132
  }
125
133
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/map",
3
- "version": "25.3.0-dev.3a3c2d7d2a",
3
+ "version": "25.3.0-rc1",
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.3.0-dev.3a3c2d7d2a",
39
- "@vaadin/component-base": "25.3.0-dev.3a3c2d7d2a",
40
- "@vaadin/vaadin-themable-mixin": "25.3.0-dev.3a3c2d7d2a",
38
+ "@vaadin/a11y-base": "25.3.0-rc1",
39
+ "@vaadin/component-base": "25.3.0-rc1",
40
+ "@vaadin/vaadin-themable-mixin": "25.3.0-rc1",
41
41
  "lit": "^3.0.0",
42
- "ol": "10.6.1"
42
+ "ol": "10.10.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@vaadin/aura": "25.3.0-dev.3a3c2d7d2a",
46
- "@vaadin/chai-plugins": "25.3.0-dev.3a3c2d7d2a",
47
- "@vaadin/test-runner-commands": "25.3.0-dev.3a3c2d7d2a",
45
+ "@vaadin/aura": "25.3.0-rc1",
46
+ "@vaadin/chai-plugins": "25.3.0-rc1",
47
+ "@vaadin/test-runner-commands": "25.3.0-rc1",
48
48
  "@vaadin/testing-helpers": "^2.0.0",
49
- "@vaadin/vaadin-lumo-styles": "25.3.0-dev.3a3c2d7d2a",
49
+ "@vaadin/vaadin-lumo-styles": "25.3.0-rc1",
50
50
  "sinon": "^22.0.0"
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": "ac506ca7800c23e05da55863c56bcedf12812d37"
58
+ "gitHead": "d4809590b2f61bd607e376ab3dec84f4bfb059a7"
59
59
  }
@@ -239,7 +239,7 @@ export const mapStyles = css`
239
239
  .ol-attribution.ol-uncollapsible {
240
240
  margin-inline-end: calc(var(--vaadin-map-controls-inset, 4px) * -1);
241
241
  margin-block-end: calc(var(--vaadin-map-controls-inset, 4px) * -1);
242
- border-radius: var(--vaadin-radius) 0 0 0;
242
+ border-radius: var(--vaadin-radius-m) 0 0 0;
243
243
  }
244
244
 
245
245
  .ol-attribution button span:empty::before {
@@ -302,7 +302,7 @@ export const mapStyles = css`
302
302
  width: 160px;
303
303
  margin: 4px;
304
304
  border: 0;
305
- border-radius: var(--vaadin-button-border-radius, var(--vaadin-radius));
305
+ border-radius: var(--vaadin-button-border-radius, var(--vaadin-radius-m));
306
306
  }
307
307
 
308
308
  .ol-overviewmap:not(.ol-uncollapsible) .ol-overviewmap-map {
package/src/vaadin-map.js CHANGED
@@ -50,6 +50,7 @@ import { MapMixin } from './vaadin-map-mixin.js';
50
50
  * </script>
51
51
  * ```
52
52
  *
53
+ * @attr {string} theme - The theme variants to apply to the component.
53
54
  * @customElement vaadin-map
54
55
  * @extends HTMLElement
55
56
  */
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.3.0-dev.3a3c2d7d2a",
4
+ "version": "25.3.0-rc1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -15,9 +15,7 @@
15
15
  "description": "The theme variants to apply to the component.",
16
16
  "value": {
17
17
  "type": [
18
- "string",
19
- "null",
20
- "undefined"
18
+ "string"
21
19
  ]
22
20
  }
23
21
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/map",
4
- "version": "25.3.0-dev.3a3c2d7d2a",
4
+ "version": "25.3.0-rc1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {