extra-map-card 1.5.1 → 1.6.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/dist/components/emc-map.d.ts +1 -2
- package/dist/components/index.d.ts +4 -0
- package/dist/constants/map-schema.d.ts +1 -1
- package/dist/extra-map-card-bundle.js +108 -92
- package/dist/extra-map-card.d.ts +3 -1
- package/dist/extra-map-editor.d.ts +3 -8
- package/dist/index.d.ts +3 -5
- package/dist/index.js +108 -92
- package/dist/types/index.d.ts +1 -0
- package/dist/utilities/map-utils.d.ts +1 -3
- package/dist/utilities/process-config-entities.d.ts +1 -1
- package/package.json +4 -1
package/dist/extra-map-card.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { HomeAssistant, LovelaceCard, LovelaceCardEditor, LovelaceGridOptions } from '@types';
|
|
2
2
|
import { LitElement, TemplateResult, nothing, PropertyValues } from 'lit';
|
|
3
3
|
import { ExtraMapCardConfig } from 'types/config';
|
|
4
|
-
import './components/emc-map';
|
|
5
4
|
import { EmcMap } from './components/emc-map';
|
|
5
|
+
import './components/emc-map';
|
|
6
|
+
import './components/emc-sub-entity-editor';
|
|
7
|
+
import './components/emc-entity-editor';
|
|
6
8
|
export declare class ExtraMapCard extends LitElement implements LovelaceCard {
|
|
7
9
|
static getConfigElement(): Promise<LovelaceCardEditor>;
|
|
8
10
|
hass: HomeAssistant;
|
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { HomeAssistant, LovelaceCardEditor } from '@types';
|
|
2
2
|
import { LitElement, nothing } from 'lit';
|
|
3
|
+
import { ExtraMapCardConfig } from 'types/config';
|
|
4
|
+
import './components/emc-map';
|
|
3
5
|
import './components/emc-sub-entity-editor';
|
|
4
6
|
import './components/emc-entity-editor';
|
|
5
|
-
export interface EntitiesEditorEvent extends CustomEvent {
|
|
6
|
-
detail: {
|
|
7
|
-
entities?: MapEntityConfig[];
|
|
8
|
-
item?: any;
|
|
9
|
-
};
|
|
10
|
-
target: EventTarget | null;
|
|
11
|
-
}
|
|
12
7
|
export declare class ExtraMapEditor extends LitElement implements LovelaceCardEditor {
|
|
13
8
|
hass?: HomeAssistant;
|
|
14
9
|
private _config?;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
export * from './extra-map-card';
|
|
2
|
+
export * from './extra-map-editor';
|
|
3
|
+
export * from './components/index';
|
|
4
|
+
export * from './types/index';
|
|
2
5
|
export * from './utilities/index';
|
|
3
|
-
export * from './types';
|
|
4
|
-
export * from './components/emc-map';
|
|
5
|
-
export * from './constants/map-schema';
|
|
6
|
-
export * from './components/emc-entity-editor';
|
|
7
|
-
export * from './components/emc-sub-entity-editor';
|