1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Add input boolean more info (#15675)

* Add input boolean more info

* Fix typings
This commit is contained in:
Paul Bottein
2023-03-02 11:11:43 +01:00
committed by GitHub
parent 15394516af
commit 000e2ef7fc
5 changed files with 63 additions and 5 deletions

View File

@@ -16,7 +16,12 @@ export const EDITABLE_DOMAINS_WITH_ID = ["scene", "automation"];
* */
export const EDITABLE_DOMAINS_WITH_UNIQUE_ID = ["script"];
/** Domains with with new more info design. */
export const DOMAINS_WITH_NEW_MORE_INFO = ["light", "siren", "switch"];
export const DOMAINS_WITH_NEW_MORE_INFO = [
"input_boolean",
"light",
"siren",
"switch",
];
/** Domains with separate more info dialog. */
export const DOMAINS_WITH_MORE_INFO = [
"alarm_control_panel",
@@ -29,6 +34,7 @@ export const DOMAINS_WITH_MORE_INFO = [
"fan",
"group",
"humidifier",
"input_boolean",
"input_datetime",
"light",
"lock",