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.fs = new Date();
this.fx = null;
this.fn = null;
this.fw = null;
this.fv = null;
this.fq = false;
}
get_type() {
return "DateTimeCellInfo";
}
get dateTimeValue() {
return this.fs;
}
set dateTimeValue(a) {
this.fs = a;
this.g("DateTimeValue");
}
get formatStringOverride() {
return this.fx;
}
set formatStringOverride(a) {
this.fx = a;
this.g("FormatStringOverride");
}
get formatSpecifiers() {
return this.fn;
}
set formatSpecifiers(a) {
this.fn = a;
this.g("FormatSpecifiers");
}
get formatOverrideRef() {
return this.fw;
}
set formatOverrideRef(a) {
this.fw = a;
this.g("FormatOverrideRef");
}
get dateTimeFormat() {
return this.fv;
}
set dateTimeFormat(a) {
this.fv = a;
this.g("DateTimeFormat");
}
get isOffsetValue() {
return this.fq;
}
set isOffsetValue(a) {
this.fq = a;
this.g("IsOffsetValue");
}
}
DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$);
DateTimeCellInfoDescription.__marshalByValue1 = true;
DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel";
return DateTimeCellInfoDescription;
})();