// omni-pca side panel — stub until Phase C frontend lands. class OmniPanelPrograms extends HTMLElement { set hass(hass) { if (!this._rendered) { this.innerHTML = `

Omni Programs

Frontend bundle not yet installed. Phase C of the program viewer will populate this panel.

`; this._rendered = true; } } } customElements.define('omni-panel-programs', OmniPanelPrograms);