UNPKG

igniteui-react-core

Version:
172 lines (171 loc) 5.46 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 { __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.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; return _this; } DateTimeColumnDescription.prototype.get_type = function () { return "DateTimeColumn"; }; Object.defineProperty(DateTimeColumnDescription.prototype, "dateTimeFormat", { get: function () { return this.i6; }, set: function (a) { this.i6 = a; this.j("DateTimeFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatString", { get: function () { return this.jd; }, set: function (a) { this.jd = a; this.j("FormatString"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorFormatString", { get: function () { return this.i8; }, set: function (a) { this.i8 = a; this.j("EditorFormatString"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatSpecifiers", { get: function () { return this.iw; }, set: function (a) { this.iw = a; this.j("FormatSpecifiers"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatOverrideRef", { get: function () { return this.jc; }, set: function (a) { this.jc = a; this.j("FormatOverrideRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "showTodayButton", { get: function () { return this.i3; }, set: function (a) { this.i3 = a; this.j("ShowTodayButton"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorType", { get: function () { return this.ja; }, set: function (a) { this.ja = a; this.j("EditorType"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSourceRef", { get: function () { return this.i7; }, set: function (a) { this.i7 = a; this.j("EditorDataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "dataSource", { get: function () { return this.iy; }, set: function (a) { this.iy = a; this.j("DataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "genericDataSource", { get: function () { return this.i0; }, set: function (a) { this.i0 = a; this.j("GenericDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorTextField", { get: function () { return this.i9; }, set: function (a) { this.i9 = a; this.j("EditorTextField"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorValueField", { get: function () { return this.jb; }, set: function (a) { this.jb = a; this.j("EditorValueField"); }, enumerable: false, configurable: true }); DateTimeColumnDescription.$t = markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$); DateTimeColumnDescription.__canMarshalByValue1 = true; DateTimeColumnDescription.__marshalByValueAlias1 = "DateTimeColumn"; return DateTimeColumnDescription; }(DataGridColumnDescription)); export { DateTimeColumnDescription };