@vaadin/map 25.3.0-alpha9 → 25.3.0-beta2
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/styles/vaadin-map-base-styles.js +2 -2
- 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.3.0-
|
|
3
|
+
"version": "25.3.0-beta2",
|
|
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-
|
|
39
|
-
"@vaadin/component-base": "25.3.0-
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "25.3.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.3.0-beta2",
|
|
39
|
+
"@vaadin/component-base": "25.3.0-beta2",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "25.3.0-beta2",
|
|
41
41
|
"lit": "^3.0.0",
|
|
42
|
-
"ol": "10.
|
|
42
|
+
"ol": "10.10.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@vaadin/aura": "25.3.0-
|
|
46
|
-
"@vaadin/chai-plugins": "25.3.0-
|
|
47
|
-
"@vaadin/test-runner-commands": "25.3.0-
|
|
45
|
+
"@vaadin/aura": "25.3.0-beta2",
|
|
46
|
+
"@vaadin/chai-plugins": "25.3.0-beta2",
|
|
47
|
+
"@vaadin/test-runner-commands": "25.3.0-beta2",
|
|
48
48
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "25.3.0-
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "25.3.0-beta2",
|
|
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": "
|
|
58
|
+
"gitHead": "d97ccbec217b60c39f3c8b2dd52473c79a48c8c1"
|
|
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/web-types.json
CHANGED