UNPKG

igniteui-react-core

Version:
122 lines (121 loc) 3.66 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.i6 = null; this.jd = null; this.i8 = null; this.iw = null; this.jc = null; this.i3 = false; this.ja = null; this.i7 = null; this.iy = null; this.i0 = null; this.i9 = null; this.jb = null; } get dateTimeFormat() { return this.i6; } set dateTimeFormat(a) { this.i6 = a; this.j("DateTimeFormat"); } get formatString() { return this.jd; } set formatString(a) { this.jd = a; this.j("FormatString"); } get editorFormatString() { return this.i8; } set editorFormatString(a) { this.i8 = a; this.j("EditorFormatString"); } get formatSpecifiers() { return this.iw; } set formatSpecifiers(a) { this.iw = a; this.j("FormatSpecifiers"); } get formatOverrideRef() { return this.jc; } set formatOverrideRef(a) { this.jc = a; this.j("FormatOverrideRef"); } get showTodayButton() { return this.i3; } set showTodayButton(a) { this.i3 = a; this.j("ShowTodayButton"); } get editorType() { return this.ja; } set editorType(a) { this.ja = a; this.j("EditorType"); } get editorDataSourceRef() { return this.i7; } set editorDataSourceRef(a) { this.i7 = a; this.j("EditorDataSourceRef"); } get dataSource() { return this.iy; } set dataSource(a) { this.iy = a; this.j("DataSource"); } get genericDataSource() { return this.i0; } set genericDataSource(a) { this.i0 = a; this.j("GenericDataSource"); } get editorTextField() { return this.i9; } set editorTextField(a) { this.i9 = a; this.j("EditorTextField"); } get editorValueField() { return this.jb; } set editorValueField(a) { this.jb = a; this.j("EditorValueField"); } } DateTimeColumnDescription.$t = /*@__PURE__*/ markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$); DateTimeColumnDescription.__canMarshalByValue1 = true; DateTimeColumnDescription.__marshalByValueAlias1 = "DateTimeColumn"; return DateTimeColumnDescription; })();