@vaadin/map 25.0.0-alpha20 → 25.0.0-alpha21
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-alpha21",
|
|
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-alpha21",
|
|
38
|
+
"@vaadin/component-base": "25.0.0-alpha21",
|
|
39
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha21",
|
|
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-alpha21",
|
|
45
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha21",
|
|
46
46
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha21",
|
|
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": "8fb9e9710c01449edf623a1aaac4655cdc11a933"
|
|
56
56
|
}
|
|
@@ -265,7 +265,7 @@ export const mapStyles = css`
|
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
.ol-compass:empty::before {
|
|
268
|
-
mask
|
|
268
|
+
mask: var(--_vaadin-icon-arrow-up) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
271
|
.ol-full-screen {
|
|
@@ -273,11 +273,11 @@ export const mapStyles = css`
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
.ol-full-screen button:empty::before {
|
|
276
|
-
mask
|
|
276
|
+
mask: var(--_vaadin-icon-fullscreen) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
.ol-full-screen .ol-full-screen-true:empty::before {
|
|
280
|
-
mask
|
|
280
|
+
mask: var(--_vaadin-icon-cross) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
.ol-overviewmap {
|
|
@@ -333,7 +333,8 @@ export const mapStyles = css`
|
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
.ol-overviewmap button span:empty::before {
|
|
336
|
-
mask
|
|
336
|
+
mask: var(--vaadin-map-icon-overview-map-collapse, var(--_vaadin-icon-chevron-down)) 50% /
|
|
337
|
+
var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
337
338
|
}
|
|
338
339
|
|
|
339
340
|
.ol-overviewmap.ol-collapsed button {
|
|
@@ -355,11 +356,12 @@ export const mapStyles = css`
|
|
|
355
356
|
}
|
|
356
357
|
|
|
357
358
|
.ol-zoom-in:empty::before {
|
|
358
|
-
mask
|
|
359
|
+
mask: var(--vaadin-map-icon-zoom-in, var(--_vaadin-icon-plus)) 50% / var(--vaadin-icon-visual-size, 100%) no-repeat;
|
|
359
360
|
}
|
|
360
361
|
|
|
361
362
|
.ol-zoom-out:empty::before {
|
|
362
|
-
mask
|
|
363
|
+
mask: var(--vaadin-map-icon-zoom-out, var(--_vaadin-icon-minus)) 50% / var(--vaadin-icon-visual-size, 100%)
|
|
364
|
+
no-repeat;
|
|
363
365
|
}
|
|
364
366
|
|
|
365
367
|
.ol-zoom button.ol-zoom-in {
|
package/web-types.json
CHANGED