Break circular dependency.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import './surround.js';
|
import './surround.js';
|
||||||
import './timeline';
|
import './timeline-core.js';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CSSResultGroup,
|
CSSResultGroup,
|
||||||
@@ -43,7 +43,7 @@ declare module 'view' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@customElement('frigate-card-surround-thumbnails')
|
@customElement('frigate-card-surround-thumbnails')
|
||||||
export class FrigateCardSurround extends LitElement {
|
export class FrigateCardSurroundThumbnails extends LitElement {
|
||||||
@property({ attribute: false })
|
@property({ attribute: false })
|
||||||
public hass?: ExtendedHomeAssistant;
|
public hass?: ExtendedHomeAssistant;
|
||||||
|
|
||||||
@@ -222,6 +222,6 @@ export class FrigateCardSurround extends LitElement {
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
'frigate-card-surround-thumbnails': FrigateCardSurround;
|
'frigate-card-surround-thumbnails': FrigateCardSurroundThumbnails;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
+9
-1247
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
import { HomeAssistant } from 'custom-card-helpers';
|
import { HomeAssistant } from 'custom-card-helpers';
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
import { localize } from '../localize/localize';
|
import { localize } from '../localize/localize';
|
||||||
import { CameraConfig, ExtendedHomeAssistant, FrigateCardError } from '../types';
|
import { ExtendedHomeAssistant, FrigateCardError } from '../types';
|
||||||
import { homeAssistantWSRequest } from './ha';
|
import { homeAssistantWSRequest } from './ha';
|
||||||
|
|
||||||
export const FRIGATE_ICON_SVG_PATH =
|
export const FRIGATE_ICON_SVG_PATH =
|
||||||
|
|||||||
Reference in New Issue
Block a user