+ ${this.hass.localize("domain.configurator")}
+
+
+ ${this.hass.localize(
+ "ui.notification_drawer.click_to_configure",
+ "entity",
+ this.notification.attributes.friendly_name
+ )}
+
+
+ ${this.hass.localize(
+ `state.configurator.${this.notification.state}`
+ )}
+
+ `;
+ }
+
+ private _handleClick(): void {
+ fireEvent(this, "hass-more-info", {
+ entityId: this.notification!.entity_id,
+ });
+ }
+}
+
+declare global {
+ interface HTMLElementTagNameMap {
+ "hui-configurator-notification-item": HuiConfiguratorNotificationItem;
+ }
+}