@vaadin/map 24.2.3 → 24.3.0-alpha10
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 +8 -8
- package/theme/lumo/vaadin-map-styles.js +5 -3
- 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": "24.
|
|
3
|
+
"version": "24.3.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,16 +36,16 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/a11y-base": "
|
|
40
|
-
"@vaadin/component-base": "
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
42
|
-
"@vaadin/vaadin-material-styles": "
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
39
|
+
"@vaadin/a11y-base": "24.3.0-alpha10",
|
|
40
|
+
"@vaadin/component-base": "24.3.0-alpha10",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.3.0-alpha10",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.3.0-alpha10",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.3.0-alpha10",
|
|
44
44
|
"ol": "6.13.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@esm-bundle/chai": "^4.3.4",
|
|
48
|
-
"@vaadin/testing-helpers": "^0.
|
|
48
|
+
"@vaadin/testing-helpers": "^0.6.0",
|
|
49
49
|
"sinon": "^13.0.2"
|
|
50
50
|
},
|
|
51
51
|
"cvdlName": "vaadin-map",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "0271523d93fe5df0425ff64206886614f3c6f401"
|
|
57
57
|
}
|
|
@@ -30,6 +30,8 @@ registerStyles(
|
|
|
30
30
|
--vaadin-map-icon-overview-map-expand: var(--lumo-icons-angle-up);
|
|
31
31
|
--vaadin-map-icon-close: var(--lumo-icons-cross);
|
|
32
32
|
--vaadin-map-icon-attribution-collapse: var(--lumo-icons-angle-right);
|
|
33
|
+
--_focus-ring-color: var(--vaadin-focus-ring-color, var(--lumo-primary-color-50pct));
|
|
34
|
+
--_focus-ring-width: var(--vaadin-focus-ring-width, 2px);
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
:host(:not([theme~='borderless'])) {
|
|
@@ -48,7 +50,7 @@ registerStyles(
|
|
|
48
50
|
}
|
|
49
51
|
|
|
50
52
|
:host([focus-ring]) {
|
|
51
|
-
box-shadow: 0 0 0
|
|
53
|
+
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
|
|
52
54
|
}
|
|
53
55
|
|
|
54
56
|
.ol-control,
|
|
@@ -106,13 +108,13 @@ registerStyles(
|
|
|
106
108
|
@supports not selector(:focus-visible) {
|
|
107
109
|
.ol-control button:focus {
|
|
108
110
|
outline: none;
|
|
109
|
-
box-shadow: 0 0 0
|
|
111
|
+
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
|
|
110
112
|
}
|
|
111
113
|
}
|
|
112
114
|
|
|
113
115
|
.ol-control button:focus-visible {
|
|
114
116
|
outline: none;
|
|
115
|
-
box-shadow: 0 0 0
|
|
117
|
+
box-shadow: 0 0 0 var(--_focus-ring-width) var(--_focus-ring-color);
|
|
116
118
|
}
|
|
117
119
|
|
|
118
120
|
.ol-zoom {
|
package/web-types.json
CHANGED