mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 19:09:48 +00:00
Change Data Entry Flow loading step description logic + cleanups (#9558)
* Change Data Entry Flow loading step description logic + cleanups Fixes #6251 * Lint * Address comment
This commit is contained in:
@@ -79,8 +79,21 @@ export interface FlowConfig {
|
||||
hass: HomeAssistant,
|
||||
step: DataEntryFlowStepProgress
|
||||
): TemplateResult | "";
|
||||
|
||||
renderLoadingDescription(
|
||||
hass: HomeAssistant,
|
||||
loadingReason: LoadingReason,
|
||||
handler?: string,
|
||||
step?: DataEntryFlowStep | null
|
||||
): string;
|
||||
}
|
||||
|
||||
export type LoadingReason =
|
||||
| "loading_handlers"
|
||||
| "loading_flow"
|
||||
| "loading_step"
|
||||
| "loading_devices_areas";
|
||||
|
||||
export interface DataEntryFlowDialogParams {
|
||||
startFlowHandler?: string;
|
||||
continueFlowId?: string;
|
||||
|
||||
Reference in New Issue
Block a user