mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Let sl-button-group deals with blur and focus handling for our Et2DropDownButton widget
This commit is contained in:
parent
ecd262a093
commit
24570cd438
@ -189,6 +189,16 @@ export class Et2DropdownButton extends Et2widgetWithSelectMixin(Et2Button)
|
||||
{
|
||||
return this.shadowRoot.querySelector("sl-dropdown");
|
||||
}
|
||||
|
||||
blur()
|
||||
{
|
||||
this.shadowRoot.querySelector("sl-button-group")?.dispatchEvent(new Event('blur'));
|
||||
}
|
||||
|
||||
focus()
|
||||
{
|
||||
this.shadowRoot.querySelector("sl-button-group")?.dispatchEvent(new Event('focus'));
|
||||
}
|
||||
}
|
||||
|
||||
// @ts-ignore TypeScript is not recognizing that Et2Button is a LitElement
|
||||
|
Loading…
Reference in New Issue
Block a user