mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 11:23:54 +01:00
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
|
import {Et2Select} from "../Et2Select";
|
||
|
import {Et2StaticSelectMixin, StaticOptions} from "../StaticOptions";
|
||
|
|
||
|
export class Et2SelectAccess extends Et2StaticSelectMixin(Et2Select)
|
||
|
{
|
||
|
constructor()
|
||
|
{
|
||
|
super();
|
||
|
|
||
|
this._static_options = StaticOptions.access(this);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
customElements.define("et2-select-access", Et2SelectAccess);
|