@vaadin/map 25.0.0-beta2 → 25.0.0-beta4
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-beta4",
|
|
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-beta4",
|
|
38
|
+
"@vaadin/component-base": "25.0.0-beta4",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-beta4",
|
|
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-beta4",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.0.0-beta4",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-beta4",
|
|
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": "707c30af7ed0afacc13c0afb27d047b043160d1f"
|
|
56
56
|
}
|
|
@@ -151,11 +151,20 @@ export const mapStyles = css`
|
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.ol-scale-bar-inner {
|
|
154
|
+
display: flex;
|
|
154
155
|
border: 1px solid rgba(0, 0, 0, 0.5);
|
|
155
156
|
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
|
|
156
157
|
overflow: hidden;
|
|
157
158
|
}
|
|
158
159
|
|
|
160
|
+
.ol-scale-singlebar-even {
|
|
161
|
+
background: #000;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.ol-scale-singlebar-odd {
|
|
165
|
+
background: #fff;
|
|
166
|
+
}
|
|
167
|
+
|
|
159
168
|
.ol-scale-step-marker {
|
|
160
169
|
display: none;
|
|
161
170
|
}
|
package/src/vaadin-map.js
CHANGED
|
@@ -71,9 +71,7 @@ class Map extends MapMixin(ThemableMixin(ElementMixin(PolylitMixin(LumoInjection
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
static get lumoInjector() {
|
|
74
|
-
return {
|
|
75
|
-
includeBaseStyles: true,
|
|
76
|
-
};
|
|
74
|
+
return { ...super.lumoInjector, includeBaseStyles: true };
|
|
77
75
|
}
|
|
78
76
|
|
|
79
77
|
/** @protected */
|
package/web-types.json
CHANGED