import { LitElement, css, html } from "lit"; import { customElement, property } from "lit/decorators"; import "../../../components/ha-card"; import { SubscribeMixin } from "../../../mixins/subscribe-mixin"; import { haStyle } from "../../../resources/styles"; import { HomeAssistant } from "../../../types"; import "./ha-debug-connection-row"; @customElement("developer-tools-debug") class HaPanelDevDebug extends SubscribeMixin(LitElement) { @property({ attribute: false }) public hass!: HomeAssistant; @property({ type: Boolean }) public narrow!: boolean; protected render() { return html`
`; } static styles = [ haStyle, css` .content { padding: 28px 20px 16px; display: block; max-width: 600px; margin: 0 auto; } `, ]; } declare global { interface HTMLElementTagNameMap { "developer-tools-debug": HaPanelDevDebug; } }