${this.title}
${this.minimizable
? html``
: null}
${this.maximizable
? html``
: null}
${this.closable
? html``
: null}
${this.resizable
? html`
this.startResize('t', e)}
>
this.startResize('b', e)}
>
this.startResize('r', e)}
>
this.startResize('l', e)}
>
this.startResize('tr', e)}
>
this.startResize('tl', e)}
>
this.startResize('br', e)}
>
this.startResize('bl', e)}
>
`
: null}
`
}
}
declare global {
interface HTMLElementTagNameMap {
'window-form-element': WindowFormElement;
}
interface WindowFormElementEventMap extends WindowFormEventMap {}
}