@vaadin/map 25.0.0-beta7 → 25.0.0
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",
|
|
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",
|
|
38
|
+
"@vaadin/component-base": "~25.0.0",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "~25.0.0",
|
|
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",
|
|
45
|
+
"@vaadin/test-runner-commands": "~25.0.0",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "~25.0.0",
|
|
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": "c979f7ca278b6412095176ada230eb07eb4456bf"
|
|
56
56
|
}
|
|
@@ -274,7 +274,8 @@ export const mapStyles = css`
|
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
.ol-compass:empty::before {
|
|
277
|
-
mask: var(--_vaadin-icon-arrow-up) 50% / var(--vaadin-icon-visual-size, 100%)
|
|
277
|
+
mask: var(--vaadin-map-icon-compass, var(--_vaadin-icon-arrow-up)) 50% / var(--vaadin-icon-visual-size, 100%)
|
|
278
|
+
no-repeat;
|
|
278
279
|
}
|
|
279
280
|
|
|
280
281
|
.ol-full-screen {
|
|
@@ -282,11 +283,12 @@ export const mapStyles = css`
|
|
|
282
283
|
}
|
|
283
284
|
|
|
284
285
|
.ol-full-screen button:empty::before {
|
|
285
|
-
mask: var(--_vaadin-icon-fullscreen) 50% / var(--vaadin-icon-visual-size, 100%)
|
|
286
|
+
mask: var(--vaadin-map-icon-fullscreen, var(--_vaadin-icon-fullscreen)) 50% / var(--vaadin-icon-visual-size, 100%)
|
|
287
|
+
no-repeat;
|
|
286
288
|
}
|
|
287
289
|
|
|
288
290
|
.ol-full-screen .ol-full-screen-true:empty::before {
|
|
289
|
-
mask: var(--_vaadin-icon-cross) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
291
|
+
mask: var(--vaadin-map-icon-close, var(--_vaadin-icon-cross)) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
290
292
|
}
|
|
291
293
|
|
|
292
294
|
.ol-overviewmap {
|
package/web-types.json
CHANGED