igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
113 lines (112 loc) • 3.49 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 { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DateTimeColumnDescription = /*@__PURE__*/ (() => {
class DateTimeColumnDescription extends DataGridColumnDescription {
constructor() {
super();
this.fl = null;
this.fs = null;
this.fn = null;
this.fe = null;
this.fr = null;
this.fj = false;
this.fp = null;
this.fm = null;
this.fg = null;
this.fo = null;
this.fq = null;
}
get_type() {
return "DateTimeColumn";
}
get dateTimeFormat() {
return this.fl;
}
set dateTimeFormat(a) {
this.fl = a;
this.e("DateTimeFormat");
}
get formatString() {
return this.fs;
}
set formatString(a) {
this.fs = a;
this.e("FormatString");
}
get editorFormatString() {
return this.fn;
}
set editorFormatString(a) {
this.fn = a;
this.e("EditorFormatString");
}
get formatSpecifiers() {
return this.fe;
}
set formatSpecifiers(a) {
this.fe = a;
this.e("FormatSpecifiers");
}
get formatOverrideRef() {
return this.fr;
}
set formatOverrideRef(a) {
this.fr = a;
this.e("FormatOverrideRef");
}
get showTodayButton() {
return this.fj;
}
set showTodayButton(a) {
this.fj = a;
this.e("ShowTodayButton");
}
get editorType() {
return this.fp;
}
set editorType(a) {
this.fp = a;
this.e("EditorType");
}
get editorDataSourceRef() {
return this.fm;
}
set editorDataSourceRef(a) {
this.fm = a;
this.e("EditorDataSourceRef");
}
get editorDataSource() {
return this.fg;
}
set editorDataSource(a) {
this.fg = a;
this.e("EditorDataSource");
}
get editorTextField() {
return this.fo;
}
set editorTextField(a) {
this.fo = a;
this.e("EditorTextField");
}
get editorValueField() {
return this.fq;
}
set editorValueField(a) {
this.fq = a;
this.e("EditorValueField");
}
}
DateTimeColumnDescription.$t = markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$);
DateTimeColumnDescription.__canMarshalByValue1 = true;
return DateTimeColumnDescription;
})();