igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
96 lines (95 loc) • 2.86 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.as = null;
this.am = new Date();
this.al = new Date();
this.ak = new Date();
this.ar = null;
this.ag = null;
this.ai = false;
this.at = null;
this.aq = null;
}
get_type() {
return "WebDateTimeInput";
}
get inputFormat() {
return this.as;
}
set inputFormat(a) {
this.as = a;
this.e("InputFormat");
}
get value() {
return this.am;
}
set value(a) {
this.am = a;
this.e("Value");
}
get minValue() {
return this.al;
}
set minValue(a) {
this.al = a;
this.e("MinValue");
}
get maxValue() {
return this.ak;
}
set maxValue(a) {
this.ak = a;
this.e("MaxValue");
}
get displayFormat() {
return this.ar;
}
set displayFormat(a) {
this.ar = a;
this.e("DisplayFormat");
}
get spinDelta() {
return this.ag;
}
set spinDelta(a) {
this.ag = a;
this.e("SpinDelta");
}
get spinLoop() {
return this.ai;
}
set spinLoop(a) {
this.ai = a;
this.e("SpinLoop");
}
get locale() {
return this.at;
}
set locale(a) {
this.at = a;
this.e("Locale");
}
get changeRef() {
return this.aq;
}
set changeRef(a) {
this.aq = a;
this.e("ChangeRef");
}
}
WebDateTimeInputDescription.$t = markType(WebDateTimeInputDescription, 'WebDateTimeInputDescription', WebMaskInputBaseDescription.$);
return WebDateTimeInputDescription;
})();