@mapsindoors/map-template 1.17.0 → 1.17.1
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 +4 -4
- package/dist/mapsindoors-webcomponent.es.js +49607 -2
- package/package.json +1 -1
- package/dist/combo-box-item.entry-1661239b.mjs +0 -12
- package/dist/mi-card_2.entry-03b59654.mjs +0 -23
- package/dist/mi-chip.entry-73240ce7.mjs +0 -16
- package/dist/mi-column.entry-ecdc4b58.mjs +0 -18
- package/dist/mi-combo-box.entry-0125ca72.mjs +0 -260
- package/dist/mi-data-table.entry-1295e9c8.mjs +0 -213
- package/dist/mi-distance_2.entry-57fa711a.mjs +0 -54
- package/dist/mi-dropdown-item.entry-97e6700c.mjs +0 -12
- package/dist/mi-dropdown.entry-46e42f89.mjs +0 -296
- package/dist/mi-floor-selector.entry-bcff4715.mjs +0 -112
- package/dist/mi-keyboard.entry-39a7abc7.mjs +0 -2960
- package/dist/mi-list-item-category.entry-c44ff712.mjs +0 -36
- package/dist/mi-list-item-location.entry-c555ad05.mjs +0 -134
- package/dist/mi-list.entry-f43c3984.mjs +0 -39
- package/dist/mi-location-booking.entry-b5d22929.mjs +0 -4863
- package/dist/mi-location-info.entry-845e1d9f.mjs +0 -29
- package/dist/mi-map-googlemaps.entry-9d22da25.mjs +0 -396
- package/dist/mi-map-mapbox.entry-c0d1d1ca.mjs +0 -298
- package/dist/mi-metric-card.entry-43337ef9.mjs +0 -26
- package/dist/mi-my-position.entry-1341862b.mjs +0 -1396
- package/dist/mi-notification.entry-3fafed6e.mjs +0 -81
- package/dist/mi-route-instructions-heading.entry-e394444b.mjs +0 -72
- package/dist/mi-route-instructions-maneuver-legacy.entry-ba040c96.mjs +0 -73
- package/dist/mi-route-instructions-maneuver.entry-b2c0e3bd.mjs +0 -73
- package/dist/mi-route-instructions-step-legacy.entry-e89095a2.mjs +0 -199
- package/dist/mi-route-instructions-step.entry-00eda3a5.mjs +0 -234
- package/dist/mi-route-instructions.entry-e9ddc518.mjs +0 -140
- package/dist/mi-scroll-buttons.entry-a8217dd5.mjs +0 -46
- package/dist/mi-search.entry-7fe3b1c4.mjs +0 -240
- package/dist/mi-share-sms.entry-673aa041.mjs +0 -53
- package/dist/mi-step-switcher.entry-9569c012.mjs +0 -24
- package/dist/mi-tab-panel.entry-97268db9.mjs +0 -19
- package/dist/mi-tab.entry-95ac3515.mjs +0 -11
- package/dist/mi-tabs.entry-200621d5.mjs +0 -34
- package/dist/mi-time.entry-312b124d.mjs +0 -43
- package/dist/webcomponent-7931b9da.mjs +0 -36749
package/README.md
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
Install the package:
|
|
8
8
|
|
|
9
|
-
`npm install @mapsindoors/map-template`
|
|
9
|
+
`npm install @mapsindoors/map-template@stable`
|
|
10
10
|
|
|
11
11
|
In your script:
|
|
12
12
|
|
|
13
13
|
```javascript
|
|
14
|
-
import MapsIndoorsMap from '@mapsindoors/map-template
|
|
14
|
+
import MapsIndoorsMap from '@mapsindoors/map-template/dist/mapsindoors-webcomponent.es.js';
|
|
15
15
|
window.customElements.define('mapsindoors-map', MapsIndoorsMap);
|
|
16
16
|
```
|
|
17
17
|
|
|
@@ -86,12 +86,12 @@ Use query parameters to configure the Web Component by setting the `supports-url
|
|
|
86
86
|
|
|
87
87
|
Install the package:
|
|
88
88
|
|
|
89
|
-
`npm install @mapsindoors/map-template`
|
|
89
|
+
`npm install @mapsindoors/map-template@stable`
|
|
90
90
|
|
|
91
91
|
Use the `MapsIndoorsMap` component in a React component:
|
|
92
92
|
|
|
93
93
|
```javascript
|
|
94
|
-
import MapsIndoorsMap from '@mapsindoors/map-template
|
|
94
|
+
import MapsIndoorsMap from '@mapsindoors/map-template/dist/mapsindoors-react.es.js';
|
|
95
95
|
|
|
96
96
|
// Somewhere in your JSX:
|
|
97
97
|
<div style={{
|