mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-14 12:56:37 +00:00
break theme picker out of lovelace (#12140)
This commit is contained in:
parent
b080bca9ce
commit
a44b8981e1
@ -6,7 +6,6 @@ import type {
|
|||||||
LocationSelector,
|
LocationSelector,
|
||||||
LocationSelectorValue,
|
LocationSelectorValue,
|
||||||
} from "../../data/selector";
|
} from "../../data/selector";
|
||||||
import "../../panels/lovelace/components/hui-theme-select-editor";
|
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
import type { MarkerLocation } from "../map/ha-locations-editor";
|
import type { MarkerLocation } from "../map/ha-locations-editor";
|
||||||
import "../map/ha-locations-editor";
|
import "../map/ha-locations-editor";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import "../../panels/lovelace/components/hui-theme-select-editor";
|
import "../ha-theme-picker";
|
||||||
import { html, LitElement } from "lit";
|
import { html, LitElement } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
@ -18,11 +18,11 @@ export class HaThemeSelector extends LitElement {
|
|||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
return html`
|
return html`
|
||||||
<hui-theme-select-editor
|
<ha-theme-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
.label=${this.label}
|
.label=${this.label}
|
||||||
></hui-theme-select-editor>
|
></ha-theme-picker>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,13 @@ import "@material/mwc-button";
|
|||||||
import "@material/mwc-list/mwc-list-item";
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { fireEvent } from "../../../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
import { stopPropagation } from "../common/dom/stop_propagation";
|
||||||
import "../../../components/ha-select";
|
import "./ha-select";
|
||||||
import { HomeAssistant } from "../../../types";
|
import { HomeAssistant } from "../types";
|
||||||
|
|
||||||
@customElement("hui-theme-select-editor")
|
@customElement("ha-theme-picker")
|
||||||
export class HuiThemeSelectEditor extends LitElement {
|
export class HaThemePicker extends LitElement {
|
||||||
@property() public value?: string;
|
@property() public value?: string;
|
||||||
|
|
||||||
@property() public label?: string;
|
@property() public label?: string;
|
||||||
@ -19,11 +19,7 @@ export class HuiThemeSelectEditor extends LitElement {
|
|||||||
return html`
|
return html`
|
||||||
<ha-select
|
<ha-select
|
||||||
.label=${this.label ||
|
.label=${this.label ||
|
||||||
`${this.hass!.localize(
|
this.hass!.localize("ui.components.theme_picker.theme")}
|
||||||
"ui.panel.lovelace.editor.card.generic.theme"
|
|
||||||
)} (${this.hass!.localize(
|
|
||||||
"ui.panel.lovelace.editor.card.config.optional"
|
|
||||||
)})`}
|
|
||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
@selected=${this._changed}
|
@selected=${this._changed}
|
||||||
@closed=${stopPropagation}
|
@closed=${stopPropagation}
|
||||||
@ -32,7 +28,7 @@ export class HuiThemeSelectEditor extends LitElement {
|
|||||||
>
|
>
|
||||||
<mwc-list-item value="remove"
|
<mwc-list-item value="remove"
|
||||||
>${this.hass!.localize(
|
>${this.hass!.localize(
|
||||||
"ui.panel.lovelace.editor.card.generic.no_theme"
|
"ui.components.theme_picker.no_theme"
|
||||||
)}</mwc-list-item
|
)}</mwc-list-item
|
||||||
>
|
>
|
||||||
${Object.keys(this.hass!.themes.themes)
|
${Object.keys(this.hass!.themes.themes)
|
||||||
@ -64,6 +60,6 @@ export class HuiThemeSelectEditor extends LitElement {
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"hui-theme-select-editor": HuiThemeSelectEditor;
|
"ha-theme-picker": HaThemePicker;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -23,7 +23,6 @@ export const configElementStyle = css`
|
|||||||
.suffix {
|
.suffix {
|
||||||
margin: 0 8px;
|
margin: 0 8px;
|
||||||
}
|
}
|
||||||
hui-theme-select-editor,
|
|
||||||
hui-action-editor,
|
hui-action-editor,
|
||||||
ha-select,
|
ha-select,
|
||||||
ha-textfield,
|
ha-textfield,
|
||||||
|
@ -99,6 +99,14 @@ export class HuiAlarmPanelCardEditor
|
|||||||
return this.hass!.localize(`ui.panel.lovelace.editor.card.generic.name`);
|
return this.hass!.localize(`ui.panel.lovelace.editor.card.generic.name`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.alarm-panel.${
|
`ui.panel.lovelace.editor.card.alarm-panel.${
|
||||||
schema.name === "states" ? "available_states" : schema.name
|
schema.name === "states" ? "available_states" : schema.name
|
||||||
|
@ -69,6 +69,12 @@ export class HuiAreaCardEditor
|
|||||||
|
|
||||||
private _computeLabelCallback = (schema: HaFormSchema) => {
|
private _computeLabelCallback = (schema: HaFormSchema) => {
|
||||||
switch (schema.name) {
|
switch (schema.name) {
|
||||||
|
case "theme":
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
case "area":
|
case "area":
|
||||||
return this.hass!.localize("ui.panel.lovelace.editor.card.area.name");
|
return this.hass!.localize("ui.panel.lovelace.editor.card.area.name");
|
||||||
case "navigation_path":
|
case "navigation_path":
|
||||||
|
@ -200,6 +200,14 @@ export class HuiButtonCardEditor
|
|||||||
)}`;
|
)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -121,6 +121,14 @@ export class HuiCalendarCardEditor
|
|||||||
return this.hass!.localize("ui.panel.lovelace.editor.card.generic.title");
|
return this.hass!.localize("ui.panel.lovelace.editor.card.generic.title");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.calendar.${schema.name}`
|
`ui.panel.lovelace.editor.card.calendar.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -31,7 +31,7 @@ import "../../../../components/ha-icon";
|
|||||||
import "../../../../components/ha-switch";
|
import "../../../../components/ha-switch";
|
||||||
import type { HomeAssistant } from "../../../../types";
|
import type { HomeAssistant } from "../../../../types";
|
||||||
import type { EntitiesCardConfig } from "../../cards/types";
|
import type { EntitiesCardConfig } from "../../cards/types";
|
||||||
import "../../components/hui-theme-select-editor";
|
import "../../../../components/ha-theme-picker";
|
||||||
import { TIMESTAMP_RENDERING_FORMATS } from "../../components/types";
|
import { TIMESTAMP_RENDERING_FORMATS } from "../../components/types";
|
||||||
import type { LovelaceRowConfig } from "../../entity-rows/types";
|
import type { LovelaceRowConfig } from "../../entity-rows/types";
|
||||||
import { headerFooterConfigStructs } from "../../header-footer/structs";
|
import { headerFooterConfigStructs } from "../../header-footer/structs";
|
||||||
@ -265,12 +265,17 @@ export class HuiEntitiesCardEditor
|
|||||||
.configValue=${"title"}
|
.configValue=${"title"}
|
||||||
@input=${this._valueChanged}
|
@input=${this._valueChanged}
|
||||||
></ha-textfield>
|
></ha-textfield>
|
||||||
<hui-theme-select-editor
|
<ha-theme-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.value=${this._theme}
|
.value=${this._theme}
|
||||||
|
.label=${`${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`}
|
||||||
.configValue=${"theme"}
|
.configValue=${"theme"}
|
||||||
@value-changed=${this._valueChanged}
|
@value-changed=${this._valueChanged}
|
||||||
></hui-theme-select-editor>
|
></ha-theme-picker>
|
||||||
<div class="side-by-side">
|
<div class="side-by-side">
|
||||||
<ha-formfield
|
<ha-formfield
|
||||||
.label=${this.hass.localize(
|
.label=${this.hass.localize(
|
||||||
|
@ -112,6 +112,14 @@ export class HuiEntityCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -172,6 +172,12 @@ export class HuiGaugeCardEditor
|
|||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
"ui.panel.lovelace.editor.card.gauge.needle_gauge"
|
"ui.panel.lovelace.editor.card.gauge.needle_gauge"
|
||||||
);
|
);
|
||||||
|
case "theme":
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
this.hass!.localize(
|
this.hass!.localize(
|
||||||
|
@ -117,11 +117,23 @@ export class HuiGlanceCardEditor
|
|||||||
fireEvent(this, "config-changed", { config });
|
fireEvent(this, "config-changed", { config });
|
||||||
}
|
}
|
||||||
|
|
||||||
private _computeLabelCallback = (schema: HaFormSchema) =>
|
private _computeLabelCallback = (schema: HaFormSchema) => {
|
||||||
this.hass!.localize(
|
if (schema.name === "theme") {
|
||||||
`ui.panel.lovelace.editor.card.glance.${schema.name}`
|
return `${this.hass!.localize(
|
||||||
) ||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
this.hass!.localize(`ui.panel.lovelace.editor.card.generic.${schema.name}`);
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.glance.${schema.name}`
|
||||||
|
) ||
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
@ -75,6 +75,14 @@ export class HuiHumidifierCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -179,6 +179,14 @@ export class HuiLightCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -96,11 +96,24 @@ export class HuiLogbookCardEditor
|
|||||||
fireEvent(this, "config-changed", { config: ev.detail.value });
|
fireEvent(this, "config-changed", { config: ev.detail.value });
|
||||||
}
|
}
|
||||||
|
|
||||||
private _computeLabelCallback = (schema: HaFormSchema) =>
|
private _computeLabelCallback = (schema: HaFormSchema) => {
|
||||||
this.hass!.localize(
|
if (schema.name === "theme") {
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
return `${this.hass!.localize(
|
||||||
) ||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
this.hass!.localize(`ui.panel.lovelace.editor.card.logbook.${schema.name}`);
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
) ||
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.logbook.${schema.name}`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
@ -58,13 +58,23 @@ export class HuiMarkdownCardEditor
|
|||||||
fireEvent(this, "config-changed", { config: ev.detail.value });
|
fireEvent(this, "config-changed", { config: ev.detail.value });
|
||||||
}
|
}
|
||||||
|
|
||||||
private _computeLabelCallback = (schema: HaFormSchema) =>
|
private _computeLabelCallback = (schema: HaFormSchema) => {
|
||||||
this.hass!.localize(
|
if (schema.name === "theme") {
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
return `${this.hass!.localize(
|
||||||
) ||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
this.hass!.localize(
|
)} (${this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.markdown.${schema.name}`
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
) ||
|
||||||
|
this.hass!.localize(
|
||||||
|
`ui.panel.lovelace.editor.card.markdown.${schema.name}`
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
|
@ -5,7 +5,7 @@ import { fireEvent } from "../../../../common/dom/fire_event";
|
|||||||
import "../../../../components/entity/ha-entity-picker";
|
import "../../../../components/entity/ha-entity-picker";
|
||||||
import { HomeAssistant } from "../../../../types";
|
import { HomeAssistant } from "../../../../types";
|
||||||
import { MediaControlCardConfig } from "../../cards/types";
|
import { MediaControlCardConfig } from "../../cards/types";
|
||||||
import "../../components/hui-theme-select-editor";
|
import "../../../../components/ha-theme-picker";
|
||||||
import { LovelaceCardEditor } from "../../types";
|
import { LovelaceCardEditor } from "../../types";
|
||||||
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
||||||
import { EditorTarget, EntitiesEditorEvent } from "../types";
|
import { EditorTarget, EntitiesEditorEvent } from "../types";
|
||||||
@ -62,12 +62,17 @@ export class HuiMediaControlCardEditor
|
|||||||
@change=${this._valueChanged}
|
@change=${this._valueChanged}
|
||||||
allow-custom-entity
|
allow-custom-entity
|
||||||
></ha-entity-picker>
|
></ha-entity-picker>
|
||||||
<hui-theme-select-editor
|
<ha-theme-picker
|
||||||
|
.label=${`${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`}
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.value=${this._theme}
|
.value=${this._theme}
|
||||||
.configValue=${"theme"}
|
.configValue=${"theme"}
|
||||||
@value-changed=${this._valueChanged}
|
@value-changed=${this._valueChanged}
|
||||||
></hui-theme-select-editor>
|
></ha-theme-picker>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ import { ActionConfig } from "../../../../data/lovelace";
|
|||||||
import { HomeAssistant } from "../../../../types";
|
import { HomeAssistant } from "../../../../types";
|
||||||
import { PictureCardConfig } from "../../cards/types";
|
import { PictureCardConfig } from "../../cards/types";
|
||||||
import "../../components/hui-action-editor";
|
import "../../components/hui-action-editor";
|
||||||
import "../../components/hui-theme-select-editor";
|
import "../../../../components/ha-theme-picker";
|
||||||
import { LovelaceCardEditor } from "../../types";
|
import { LovelaceCardEditor } from "../../types";
|
||||||
import { actionConfigStruct } from "../structs/action-struct";
|
import { actionConfigStruct } from "../structs/action-struct";
|
||||||
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
||||||
@ -72,12 +72,17 @@ export class HuiPictureCardEditor
|
|||||||
.configValue=${"image"}
|
.configValue=${"image"}
|
||||||
@input=${this._valueChanged}
|
@input=${this._valueChanged}
|
||||||
></ha-textfield>
|
></ha-textfield>
|
||||||
<hui-theme-select-editor
|
<ha-theme-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.value=${this._theme}
|
.value=${this._theme}
|
||||||
|
.label=${`${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`}
|
||||||
.configValue=${"theme"}
|
.configValue=${"theme"}
|
||||||
@value-changed=${this._valueChanged}
|
@value-changed=${this._valueChanged}
|
||||||
></hui-theme-select-editor>
|
></ha-theme-picker>
|
||||||
<hui-action-editor
|
<hui-action-editor
|
||||||
.label="${this.hass.localize(
|
.label="${this.hass.localize(
|
||||||
"ui.panel.lovelace.editor.card.generic.tap_action"
|
"ui.panel.lovelace.editor.card.generic.tap_action"
|
||||||
|
@ -170,6 +170,14 @@ export class HuiPictureEntityCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
this.hass!.localize(
|
this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
@ -165,6 +165,14 @@ export class HuiPictureGlanceCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
this.hass!.localize(
|
this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
@ -64,7 +64,13 @@ export class HuiPlantStatusCardEditor
|
|||||||
"ui.panel.lovelace.editor.card.generic.entity"
|
"ui.panel.lovelace.editor.card.generic.entity"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -153,6 +153,14 @@ export class HuiSensorCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
if (schema.name === "detail") {
|
if (schema.name === "detail") {
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
"ui.panel.lovelace.editor.card.sensor.show_more_detail"
|
"ui.panel.lovelace.editor.card.sensor.show_more_detail"
|
||||||
|
@ -6,7 +6,7 @@ import { isComponentLoaded } from "../../../../common/config/is_component_loaded
|
|||||||
import { fireEvent } from "../../../../common/dom/fire_event";
|
import { fireEvent } from "../../../../common/dom/fire_event";
|
||||||
import { HomeAssistant } from "../../../../types";
|
import { HomeAssistant } from "../../../../types";
|
||||||
import { ShoppingListCardConfig } from "../../cards/types";
|
import { ShoppingListCardConfig } from "../../cards/types";
|
||||||
import "../../components/hui-theme-select-editor";
|
import "../../../../components/ha-theme-picker";
|
||||||
import { LovelaceCardEditor } from "../../types";
|
import { LovelaceCardEditor } from "../../types";
|
||||||
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
||||||
import { EditorTarget, EntitiesEditorEvent } from "../types";
|
import { EditorTarget, EntitiesEditorEvent } from "../types";
|
||||||
@ -67,12 +67,17 @@ export class HuiShoppingListEditor
|
|||||||
.configValue=${"title"}
|
.configValue=${"title"}
|
||||||
@input=${this._valueChanged}
|
@input=${this._valueChanged}
|
||||||
></ha-textfield>
|
></ha-textfield>
|
||||||
<hui-theme-select-editor
|
<ha-theme-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.value=${this._theme}
|
.value=${this._theme}
|
||||||
.configValue=${"theme"}
|
.configValue=${"theme"}
|
||||||
|
.label=${`${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`}
|
||||||
@value-changed=${this._valueChanged}
|
@value-changed=${this._valueChanged}
|
||||||
></hui-theme-select-editor>
|
></ha-theme-picker>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
@ -71,6 +71,14 @@ export class HuiThermostatCardEditor
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return this.hass!.localize(
|
return this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
);
|
);
|
||||||
|
@ -184,6 +184,14 @@ export class HuiWeatherForecastCardEditor
|
|||||||
)})`;
|
)})`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (schema.name === "theme") {
|
||||||
|
return `${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.generic.theme"
|
||||||
|
)} (${this.hass!.localize(
|
||||||
|
"ui.panel.lovelace.editor.card.config.optional"
|
||||||
|
)})`;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
this.hass!.localize(
|
this.hass!.localize(
|
||||||
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
`ui.panel.lovelace.editor.card.generic.${schema.name}`
|
||||||
|
@ -401,6 +401,10 @@
|
|||||||
"add_device_id": "Choose device",
|
"add_device_id": "Choose device",
|
||||||
"add_entity_id": "Choose entity"
|
"add_entity_id": "Choose entity"
|
||||||
},
|
},
|
||||||
|
"theme-picker": {
|
||||||
|
"theme": "Theme",
|
||||||
|
"no_theme": "No theme"
|
||||||
|
},
|
||||||
"user-picker": {
|
"user-picker": {
|
||||||
"no_user": "No user",
|
"no_user": "No user",
|
||||||
"add_user": "Add user",
|
"add_user": "Add user",
|
||||||
@ -3458,7 +3462,6 @@
|
|||||||
"tap_action": "Tap Action",
|
"tap_action": "Tap Action",
|
||||||
"title": "Title",
|
"title": "Title",
|
||||||
"theme": "Theme",
|
"theme": "Theme",
|
||||||
"no_theme": "No theme",
|
|
||||||
"unit": "Unit",
|
"unit": "Unit",
|
||||||
"url": "URL",
|
"url": "URL",
|
||||||
"state": "State",
|
"state": "State",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user