igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.5 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DateTimeCellInfoDescription = /*@__PURE__*/ (() => {
class DateTimeCellInfoDescription extends CellInfoDescription {
constructor() {
super();
this.gr = new Date();
this.gw = null;
this.gm = null;
this.gv = null;
this.gu = null;
this.gp = false;
}
get_type() {
return "DateTimeCellInfo";
}
get dateTimeValue() {
return this.gr;
}
set dateTimeValue(a) {
this.gr = a;
this.j("DateTimeValue");
}
get formatStringOverride() {
return this.gw;
}
set formatStringOverride(a) {
this.gw = a;
this.j("FormatStringOverride");
}
get formatSpecifiers() {
return this.gm;
}
set formatSpecifiers(a) {
this.gm = a;
this.j("FormatSpecifiers");
}
get formatOverrideRef() {
return this.gv;
}
set formatOverrideRef(a) {
this.gv = a;
this.j("FormatOverrideRef");
}
get dateTimeFormat() {
return this.gu;
}
set dateTimeFormat(a) {
this.gu = a;
this.j("DateTimeFormat");
}
get isOffsetValue() {
return this.gp;
}
set isOffsetValue(a) {
this.gp = a;
this.j("IsOffsetValue");
}
}
DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$);
DateTimeCellInfoDescription.__marshalByValue1 = true;
DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel";
return DateTimeCellInfoDescription;
})();