extra-map-card 1.7.2-beta.0 → 1.7.3-beta.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/dist/components/emc-map.d.ts +1 -2
- package/dist/extra-map-card-bundle.js +36 -26
- package/dist/extra-map-card.d.ts +2 -0
- package/dist/index.js +36 -26
- package/package.json +1 -1
package/dist/extra-map-card.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { LitElement, TemplateResult, nothing, PropertyValues } from 'lit';
|
|
|
3
3
|
import { ExtraMapCardConfig } from 'types/config';
|
|
4
4
|
import './components/emc-map';
|
|
5
5
|
import './extra-map-editor';
|
|
6
|
+
import { EmcMap } from './components/emc-map';
|
|
6
7
|
export declare class ExtraMapCard extends LitElement implements LovelaceCard {
|
|
7
8
|
static getConfigElement(): Promise<LovelaceCardEditor>;
|
|
8
9
|
hass: HomeAssistant;
|
|
@@ -18,6 +19,7 @@ export declare class ExtraMapCard extends LitElement implements LovelaceCard {
|
|
|
18
19
|
private _subscribed?;
|
|
19
20
|
private _stateHistory?;
|
|
20
21
|
private _error?;
|
|
22
|
+
_mapTiler: EmcMap;
|
|
21
23
|
constructor();
|
|
22
24
|
private _getAllEntities;
|
|
23
25
|
static getStubConfig(hass: HomeAssistant, entities: string[], entitiesFallback: string[]): ExtraMapCardConfig;
|