@vaadin/map 24.0.0 → 24.1.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/README.md +1 -1
- package/package.json +7 -6
- package/src/vaadin-map.d.ts +3 -1
- package/src/vaadin-map.js +1 -1
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ A component for displaying web maps.
|
|
|
13
13
|
<vaadin-map></vaadin-map>
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
[<img src="https://raw.githubusercontent.com/vaadin/web-components/
|
|
16
|
+
[<img src="https://raw.githubusercontent.com/vaadin/web-components/main/packages/map/screenshot.png" width="636" alt="Screenshot of vaadin-map">](https://vaadin.com/docs/latest/components/map)
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/map",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.1.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/
|
|
40
|
-
"@vaadin/
|
|
41
|
-
"@vaadin/vaadin-
|
|
42
|
-
"@vaadin/vaadin-
|
|
39
|
+
"@vaadin/a11y-base": "24.1.0-alpha2",
|
|
40
|
+
"@vaadin/component-base": "24.1.0-alpha2",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.1.0-alpha2",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.1.0-alpha2",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.1.0-alpha2",
|
|
43
44
|
"ol": "6.13.0"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
@@ -52,5 +53,5 @@
|
|
|
52
53
|
"web-types.json",
|
|
53
54
|
"web-types.lit.json"
|
|
54
55
|
],
|
|
55
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "9e3ee2557109030f2aba59e17a84e4e121d699c0"
|
|
56
57
|
}
|
package/src/vaadin-map.d.ts
CHANGED
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
* license.
|
|
10
10
|
*/
|
|
11
11
|
import type OpenLayersMap from 'ol/Map.js';
|
|
12
|
-
import {
|
|
12
|
+
import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
13
|
+
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
14
|
+
import { ResizeMixin } from '@vaadin/component-base/src/resize-mixin.js';
|
|
13
15
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin';
|
|
14
16
|
|
|
15
17
|
/**
|
package/src/vaadin-map.js
CHANGED
|
@@ -12,8 +12,8 @@ import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
|
12
12
|
import { defaults as defaultControls } from 'ol/control';
|
|
13
13
|
import { defaults as defaultInteractions } from 'ol/interaction';
|
|
14
14
|
import OpenLayersMap from 'ol/Map.js';
|
|
15
|
+
import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
15
16
|
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
|
|
16
|
-
import { FocusMixin } from '@vaadin/component-base/src/focus-mixin.js';
|
|
17
17
|
import { ResizeMixin } from '@vaadin/component-base/src/resize-mixin.js';
|
|
18
18
|
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
|
19
19
|
|
package/web-types.json
CHANGED