fix(core): update

This commit is contained in:
2023-11-29 17:20:32 +01:00
parent 6cfda1ebf3
commit d852186888
9 changed files with 1119 additions and 1293 deletions

View File

@ -0,0 +1,11 @@
import { html } from '@design.estate/dees-element';
export const demoFunc = () => html`
<dees-input-dropdown
.options=${[
{option: 'option 1', key: 'option1'},
{option: 'option 2', key: 'option2'},
{option: 'option 3', key: 'option3'}
]}
></dees-input-dropdown>
`