egroupware/api/js/etemplate/Et2Date/Et2DateTimeOnlyReadonly.ts
2022-02-24 19:44:30 +02:00

27 lines
717 B
TypeScript

/**
* EGroupware eTemplate2 - Readonly date+time WebComponent
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api
* @link https://www.egroupware.org
* @author Nathan Gray
*/
import {formatTime, parseDateTime} from "./Et2Date";
import {Et2DateReadonly} from "./Et2DateReadonly";
/**
* This is a stripped-down read-only widget used in nextmatch
*/
export class Et2DateTimeOnlyReadonly extends Et2DateReadonly
{
constructor()
{
super();
this.parser = parseDateTime;
this.formatter = formatTime;
}
}
// @ts-ignore TypeScript is not recognizing that Et2Date is a LitElement
customElements.define("et2-date-timeonly_ro", Et2DateTimeOnlyReadonly);