@vaadin/map 24.6.0 → 24.7.0-alpha2
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/src/vaadin-map.js +0 -4
- 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.7.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,15 +36,15 @@
|
|
|
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.7.0-alpha2",
|
|
40
|
+
"@vaadin/component-base": "24.7.0-alpha2",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.7.0-alpha2",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.7.0-alpha2",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.7.0-alpha2",
|
|
44
44
|
"ol": "6.13.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/chai-plugins": "
|
|
47
|
+
"@vaadin/chai-plugins": "24.7.0-alpha2",
|
|
48
48
|
"@vaadin/testing-helpers": "^1.0.0",
|
|
49
49
|
"sinon": "^18.0.0"
|
|
50
50
|
},
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"web-types.json",
|
|
54
54
|
"web-types.lit.json"
|
|
55
55
|
],
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "e2523f9b4abc5a9586fb758166f823dc40c399dd"
|
|
57
57
|
}
|
package/src/vaadin-map.js
CHANGED
|
@@ -114,8 +114,6 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
114
114
|
.ol-unselectable {
|
|
115
115
|
-webkit-touch-callout: none;
|
|
116
116
|
-webkit-user-select: none;
|
|
117
|
-
-moz-user-select: none;
|
|
118
|
-
-ms-user-select: none;
|
|
119
117
|
user-select: none;
|
|
120
118
|
-webkit-tap-highlight-color: transparent;
|
|
121
119
|
}
|
|
@@ -127,8 +125,6 @@ class Map extends ResizeMixin(FocusMixin(ElementMixin(ThemableMixin(PolymerEleme
|
|
|
127
125
|
.ol-selectable {
|
|
128
126
|
-webkit-touch-callout: default;
|
|
129
127
|
-webkit-user-select: text;
|
|
130
|
-
-moz-user-select: text;
|
|
131
|
-
-ms-user-select: text;
|
|
132
128
|
user-select: text;
|
|
133
129
|
}
|
|
134
130
|
|
package/web-types.json
CHANGED