Collapse automation/script editor sections by default (#13390)

This commit is contained in:
Paulus Schoutsen
2022-08-18 10:04:35 -04:00
committed by GitHub
parent d7b888f761
commit 47b820d28f
32 changed files with 1305 additions and 920 deletions

19
src/data/trigger.ts Normal file
View File

@@ -0,0 +1,19 @@
import type { Trigger } from "./automation";
export const TRIGGER_TYPES: Trigger["platform"][] = [
"calendar",
"device",
"event",
"state",
"geo_location",
"homeassistant",
"mqtt",
"numeric_state",
"sun",
"tag",
"template",
"time",
"time_pattern",
"webhook",
"zone",
];