fix(core): update
This commit is contained in:
@@ -29,7 +29,7 @@ export class DeesFormSubmit extends DeesElement {
|
||||
public text: string;
|
||||
|
||||
@property({
|
||||
type: String
|
||||
type: String,
|
||||
})
|
||||
public status: 'normal' | 'pending' | 'success' | 'error' = 'normal';
|
||||
|
||||
@@ -41,7 +41,12 @@ export class DeesFormSubmit extends DeesElement {
|
||||
|
||||
public render() {
|
||||
return html`
|
||||
<dees-button status=${this.status} @click=${this.submit} .disabled=${this.disabled} .text=${this.text ? this.text : this.textContent}>
|
||||
<dees-button
|
||||
status=${this.status}
|
||||
@click=${this.submit}
|
||||
.disabled=${this.disabled}
|
||||
.text=${this.text ? this.text : this.textContent}
|
||||
>
|
||||
</dees-button>
|
||||
`;
|
||||
}
|
||||
@@ -53,4 +58,12 @@ export class DeesFormSubmit extends DeesElement {
|
||||
const parentElement: DeesForm = this.parentElement as DeesForm;
|
||||
parentElement.gatherAndDispatch();
|
||||
}
|
||||
|
||||
public async focus() {
|
||||
const domtools = await this.domtoolsPromise;
|
||||
if (!this.disabled) {
|
||||
domtools.convenience.smartdelay.delayFor(0);
|
||||
this.submit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user