UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 2.5 kB
/* 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.fo = new Date(); this.ft = null; this.fj = null; this.fs = null; this.fr = null; this.fm = false; } get_type() { return "DateTimeCellInfo"; } get dateTimeValue() { return this.fo; } set dateTimeValue(a) { this.fo = a; this.e("DateTimeValue"); } get formatStringOverride() { return this.ft; } set formatStringOverride(a) { this.ft = a; this.e("FormatStringOverride"); } get formatSpecifiers() { return this.fj; } set formatSpecifiers(a) { this.fj = a; this.e("FormatSpecifiers"); } get formatOverrideRef() { return this.fs; } set formatOverrideRef(a) { this.fs = a; this.e("FormatOverrideRef"); } get dateTimeFormat() { return this.fr; } set dateTimeFormat(a) { this.fr = a; this.e("DateTimeFormat"); } get isOffsetValue() { return this.fm; } set isOffsetValue(a) { this.fm = a; this.e("IsOffsetValue"); } } DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$); DateTimeCellInfoDescription.__marshalByValue1 = true; DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel"; return DateTimeCellInfoDescription; })();