UNPKG

igniteui-react-core

Version:
114 lines (113 loc) 3.47 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 { DataGridColumnDescription } from "./DataGridColumnDescription"; import { markType } from "./type"; /** * @hidden */ export let DateTimeColumnDescription = /*@__PURE__*/ (() => { class DateTimeColumnDescription extends DataGridColumnDescription { get_type() { return "DateTimeColumn"; } constructor() { super(); this.gb = null; this.gi = null; this.gd = null; this.f3 = null; this.gh = null; this.f8 = false; this.gf = null; this.gc = null; this.f5 = null; this.ge = null; this.gg = null; } get dateTimeFormat() { return this.gb; } set dateTimeFormat(a) { this.gb = a; this.g("DateTimeFormat"); } get formatString() { return this.gi; } set formatString(a) { this.gi = a; this.g("FormatString"); } get editorFormatString() { return this.gd; } set editorFormatString(a) { this.gd = a; this.g("EditorFormatString"); } get formatSpecifiers() { return this.f3; } set formatSpecifiers(a) { this.f3 = a; this.g("FormatSpecifiers"); } get formatOverrideRef() { return this.gh; } set formatOverrideRef(a) { this.gh = a; this.g("FormatOverrideRef"); } get showTodayButton() { return this.f8; } set showTodayButton(a) { this.f8 = a; this.g("ShowTodayButton"); } get editorType() { return this.gf; } set editorType(a) { this.gf = a; this.g("EditorType"); } get editorDataSourceRef() { return this.gc; } set editorDataSourceRef(a) { this.gc = a; this.g("EditorDataSourceRef"); } get editorDataSource() { return this.f5; } set editorDataSource(a) { this.f5 = a; this.g("EditorDataSource"); } get editorTextField() { return this.ge; } set editorTextField(a) { this.ge = a; this.g("EditorTextField"); } get editorValueField() { return this.gg; } set editorValueField(a) { this.gg = a; this.g("EditorValueField"); } } DateTimeColumnDescription.$t = /*@__PURE__*/ markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$); DateTimeColumnDescription.__canMarshalByValue1 = true; DateTimeColumnDescription.__marshalByValueAlias1 = "DateTimeColumn"; return DateTimeColumnDescription; })();