@vaadin/map 25.0.0-alpha19 → 25.0.0-alpha20
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-
|
|
3
|
+
"version": "25.0.0-alpha20",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
38
|
-
"@vaadin/component-base": "25.0.0-
|
|
39
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/a11y-base": "25.0.0-alpha20",
|
|
38
|
+
"@vaadin/component-base": "25.0.0-alpha20",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha20",
|
|
40
40
|
"lit": "^3.0.0",
|
|
41
41
|
"ol": "10.6.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
45
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
44
|
+
"@vaadin/chai-plugins": "25.0.0-alpha20",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha20",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha20",
|
|
48
48
|
"sinon": "^21.0.0"
|
|
49
49
|
},
|
|
50
50
|
"cvdlName": "vaadin-map",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c948aae591a30b432f3784000d4677674cae56e0"
|
|
56
56
|
}
|
|
@@ -37,7 +37,7 @@ export const mapStyles = css`
|
|
|
37
37
|
content: '';
|
|
38
38
|
position: absolute;
|
|
39
39
|
inset: 0;
|
|
40
|
-
border: 1px solid var(--vaadin-map-border-color, var(--vaadin-border-color-
|
|
40
|
+
border: 1px solid var(--vaadin-map-border-color, var(--vaadin-border-color-secondary));
|
|
41
41
|
border-radius: inherit;
|
|
42
42
|
z-index: 1;
|
|
43
43
|
pointer-events: none;
|
|
@@ -247,7 +247,7 @@ export const mapStyles = css`
|
|
|
247
247
|
gap: 1em;
|
|
248
248
|
list-style: none;
|
|
249
249
|
margin: 0;
|
|
250
|
-
color: var(--vaadin-map-attribution-color, var(--vaadin-color-
|
|
250
|
+
color: var(--vaadin-map-attribution-color, var(--vaadin-text-color-secondary));
|
|
251
251
|
padding: var(--vaadin-padding-container);
|
|
252
252
|
font-size: 0.8em;
|
|
253
253
|
}
|
|
@@ -399,7 +399,7 @@ export const mapStyles = css`
|
|
|
399
399
|
}
|
|
400
400
|
|
|
401
401
|
.ol-control button:hover {
|
|
402
|
-
color: var(--vaadin-map-control-color-hover, var(--vaadin-color));
|
|
402
|
+
color: var(--vaadin-map-control-color-hover, var(--vaadin-text-color));
|
|
403
403
|
}
|
|
404
404
|
|
|
405
405
|
.ol-control button:focus-visible {
|
package/web-types.json
CHANGED