fix(core): update

This commit is contained in:
2023-09-13 01:37:02 +02:00
parent c76d364071
commit 494e8b7e26
11 changed files with 215 additions and 18 deletions

View File

@ -0,0 +1,22 @@
import { html } from '@design.estate/dees-element';
import { DeesModal } from './dees-modal.js';
export const demoFunc = () => html`
<dees-button @click=${() => {
DeesModal.createAndShow({
heading: 'This is a heading',
content: html`
<dees-form>
<dees-input-text
.label=${'Username'}
>
</dees-input-text>
<dees-input-text
.label=${'Password'}
>
</dees-input-text>
</dees-form>
`
});
}}>open modal</dees-button>
`