v0.1.16
Fix
Sidebar disappears on mobile after navigating to the panel
Two root causes:
-
**
:hosthad noheight/overflowdeclaration — the panel content expanded the outer page height instead of scrolling within its own area. On mobile this caused the page to scroll, pushing HA's topbar (containing the hamburger/sidebar button) off screen. -
documentclick listener was never removed — the handler added to close the autocomplete dropdown was attached todocumenton each navigation but never cleaned up. It now uses a bound method removed viadisconnectedCallback.