igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
96 lines (95 loc) • 2.83 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { WebMaskInputBaseDescription } from "./WebMaskInputBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebDateTimeInputDescription = /*@__PURE__*/ (() => {
class WebDateTimeInputDescription extends WebMaskInputBaseDescription {
constructor() {
super();
this.av = null;
this.ap = new Date();
this.ao = new Date();
this.an = new Date();
this.au = null;
this.aj = null;
this.al = false;
this.aw = null;
this.at = null;
}
get_type() {
return "WebDateTimeInput";
}
get inputFormat() {
return this.av;
}
set inputFormat(a) {
this.av = a;
this.j("InputFormat");
}
get value() {
return this.ap;
}
set value(a) {
this.ap = a;
this.j("Value");
}
get min() {
return this.ao;
}
set min(a) {
this.ao = a;
this.j("Min");
}
get max() {
return this.an;
}
set max(a) {
this.an = a;
this.j("Max");
}
get displayFormat() {
return this.au;
}
set displayFormat(a) {
this.au = a;
this.j("DisplayFormat");
}
get spinDelta() {
return this.aj;
}
set spinDelta(a) {
this.aj = a;
this.j("SpinDelta");
}
get spinLoop() {
return this.al;
}
set spinLoop(a) {
this.al = a;
this.j("SpinLoop");
}
get locale() {
return this.aw;
}
set locale(a) {
this.aw = a;
this.j("Locale");
}
get changeRef() {
return this.at;
}
set changeRef(a) {
this.at = a;
this.j("ChangeRef");
}
}
WebDateTimeInputDescription.$t = markType(WebDateTimeInputDescription, 'WebDateTimeInputDescription', WebMaskInputBaseDescription.$);
return WebDateTimeInputDescription;
})();