UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

122 lines (121 loc) 3.77 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 { constructor() { super(); this.ha = null; this.hh = null; this.hc = null; this.g0 = null; this.hg = null; this.g7 = false; this.he = null; this.hb = null; this.g2 = null; this.g4 = null; this.hd = null; this.hf = null; } get_type() { return "DateTimeColumn"; } get dateTimeFormat() { return this.ha; } set dateTimeFormat(a) { this.ha = a; this.j("DateTimeFormat"); } get formatString() { return this.hh; } set formatString(a) { this.hh = a; this.j("FormatString"); } get editorFormatString() { return this.hc; } set editorFormatString(a) { this.hc = a; this.j("EditorFormatString"); } get formatSpecifiers() { return this.g0; } set formatSpecifiers(a) { this.g0 = a; this.j("FormatSpecifiers"); } get formatOverrideRef() { return this.hg; } set formatOverrideRef(a) { this.hg = a; this.j("FormatOverrideRef"); } get showTodayButton() { return this.g7; } set showTodayButton(a) { this.g7 = a; this.j("ShowTodayButton"); } get editorType() { return this.he; } set editorType(a) { this.he = a; this.j("EditorType"); } get editorDataSourceRef() { return this.hb; } set editorDataSourceRef(a) { this.hb = a; this.j("EditorDataSourceRef"); } get dataSource() { return this.g2; } set dataSource(a) { this.g2 = a; this.j("DataSource"); } get genericDataSource() { return this.g4; } set genericDataSource(a) { this.g4 = a; this.j("GenericDataSource"); } get editorTextField() { return this.hd; } set editorTextField(a) { this.hd = a; this.j("EditorTextField"); } get editorValueField() { return this.hf; } set editorValueField(a) { this.hf = a; this.j("EditorValueField"); } } DateTimeColumnDescription.$t = markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$); DateTimeColumnDescription.__canMarshalByValue1 = true; DateTimeColumnDescription.__marshalByValueAlias1 = "DateTimeColumn"; return DateTimeColumnDescription; })();