mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
e323cd1d79
Update shoelace to 2.9.0
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
import {Et2SelectNumber} from "./Et2SelectNumber";
|
|
|
|
export class Et2SelectPercent extends Et2SelectNumber
|
|
{
|
|
constructor()
|
|
{
|
|
super();
|
|
this.min = 0;
|
|
this.max = 100;
|
|
this.interval = 10;
|
|
this.suffix = "%%";
|
|
}
|
|
}
|
|
|
|
customElements.define("et2-select-percent", Et2SelectPercent); |