fix(elements/applauncher): add eco app launcher components, wifi/sound/battery menus, demos and new eco-screensaver; replace dees-screensaver (breaking API change)

This commit is contained in:
2026-01-06 09:11:35 +00:00
parent ad28073751
commit 9d07d4ca88
32 changed files with 2424 additions and 43 deletions

View File

@@ -0,0 +1,24 @@
import { html } from '@design.estate/dees-element';
export const demo = () => html`
<style>
.demo-container {
padding: 48px;
background: hsl(240 10% 4%);
min-height: 400px;
display: flex;
justify-content: center;
}
</style>
<div class="demo-container">
<eco-applauncher-batterymenu
open
.batteryLevel=${85}
.isCharging=${false}
.batterySaverEnabled=${false}
.timeRemaining=${'2h 30m remaining'}
@battery-saver-toggle=${(e: CustomEvent) => console.log('Battery saver:', e.detail)}
@settings-click=${() => console.log('Settings clicked')}
></eco-applauncher-batterymenu>
</div>
`;