igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
159 lines (158 loc) • 5.21 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 { __extends } from "tslib";
import { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DateTimeColumnDescription, _super);
function DateTimeColumnDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
DateTimeColumnDescription.prototype.get_type = function () {
return "DateTimeColumn";
};
Object.defineProperty(DateTimeColumnDescription.prototype, "dateTimeFormat", {
get: function () {
return this.fl;
},
set: function (a) {
this.fl = a;
this.e("DateTimeFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "formatString", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.e("FormatString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorFormatString", {
get: function () {
return this.fn;
},
set: function (a) {
this.fn = a;
this.e("EditorFormatString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "formatSpecifiers", {
get: function () {
return this.fe;
},
set: function (a) {
this.fe = a;
this.e("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "formatOverrideRef", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.e("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "showTodayButton", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.e("ShowTodayButton");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorType", {
get: function () {
return this.fp;
},
set: function (a) {
this.fp = a;
this.e("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSourceRef", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.e("EditorDataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSource", {
get: function () {
return this.fg;
},
set: function (a) {
this.fg = a;
this.e("EditorDataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorTextField", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.e("EditorTextField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeColumnDescription.prototype, "editorValueField", {
get: function () {
return this.fq;
},
set: function (a) {
this.fq = a;
this.e("EditorValueField");
},
enumerable: false,
configurable: true
});
DateTimeColumnDescription.$t = markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$);
DateTimeColumnDescription.__canMarshalByValue1 = true;
return DateTimeColumnDescription;
}(DataGridColumnDescription));
export { DateTimeColumnDescription };