import { html } from '@design.estate/dees-element'; import type { IAudioDevice } from './eco-applauncher-soundmenu.js'; const mockDevices: IAudioDevice[] = [ { id: 'speakers', name: 'Built-in Speakers', type: 'speaker' }, { id: 'headphones', name: 'AirPods Pro', type: 'bluetooth' }, { id: 'hdmi', name: 'LG Monitor', type: 'hdmi' }, ]; export const demo = () => html`
console.log('Volume:', e.detail)} @mute-toggle=${(e: CustomEvent) => console.log('Mute:', e.detail)} @device-select=${(e: CustomEvent) => console.log('Device:', e.detail)} @settings-click=${() => console.log('Settings clicked')} >
`;