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
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { HomeAssistant } from '@types';
|
|
1
|
+
import { HomeAssistant, HaMapEntity, HaMapPaths, ThemeMode } from '@types';
|
|
2
2
|
import { LitElement, PropertyValues, CSSResultGroup } from 'lit';
|
|
3
|
-
import { HaMapEntity, HaMapPaths, ThemeMode } from 'types/config';
|
|
4
3
|
import '../components/emc-entity-marker';
|
|
5
4
|
export declare class EmcMap extends LitElement {
|
|
6
5
|
hass: HomeAssistant;
|
|
@@ -14,7 +14,7 @@ export declare const STYLE_OPTIONS: {
|
|
|
14
14
|
label: string;
|
|
15
15
|
}[];
|
|
16
16
|
export declare const DEFAULT_HOURS_TO_SHOW = 0;
|
|
17
|
-
export declare const DEFAULT_ZOOM =
|
|
17
|
+
export declare const DEFAULT_ZOOM = 14;
|
|
18
18
|
export declare const singleMapConfingSchema: import("memoize-one").MemoizedFn<(localize: LocalizeFunc) => readonly [{
|
|
19
19
|
readonly name: "";
|
|
20
20
|
readonly type: "expandable";
|