mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
e323cd1d79
Update shoelace to 2.9.0
14 lines
318 B
TypeScript
14 lines
318 B
TypeScript
import {Et2Select} from "../Et2Select";
|
|
import {Et2StaticSelectMixin, StaticOptions as so} from "../StaticOptions";
|
|
|
|
export class Et2SelectDay extends Et2StaticSelectMixin(Et2Select)
|
|
{
|
|
constructor()
|
|
{
|
|
super();
|
|
|
|
this._static_options = so.day(this, {});
|
|
}
|
|
}
|
|
|
|
customElements.define("et2-select-day", Et2SelectDay); |