dees-catalog/ts_web/elements/dees-modal.demo.ts

22 lines
543 B
TypeScript
Raw Normal View History

2023-09-12 23:37:02 +00:00
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>
`