UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

172 lines (171 loc) 5.63 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.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; return _this; } DateTimeColumnDescription.prototype.get_type = function () { return "DateTimeColumn"; }; Object.defineProperty(DateTimeColumnDescription.prototype, "dateTimeFormat", { get: function () { return this.ha; }, set: function (a) { this.ha = a; this.j("DateTimeFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatString", { get: function () { return this.hh; }, set: function (a) { this.hh = a; this.j("FormatString"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorFormatString", { get: function () { return this.hc; }, set: function (a) { this.hc = a; this.j("EditorFormatString"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatSpecifiers", { get: function () { return this.g0; }, set: function (a) { this.g0 = a; this.j("FormatSpecifiers"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "formatOverrideRef", { get: function () { return this.hg; }, set: function (a) { this.hg = a; this.j("FormatOverrideRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "showTodayButton", { get: function () { return this.g7; }, set: function (a) { this.g7 = a; this.j("ShowTodayButton"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorType", { get: function () { return this.he; }, set: function (a) { this.he = a; this.j("EditorType"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSourceRef", { get: function () { return this.hb; }, set: function (a) { this.hb = a; this.j("EditorDataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "dataSource", { get: function () { return this.g2; }, set: function (a) { this.g2 = a; this.j("DataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "genericDataSource", { get: function () { return this.g4; }, set: function (a) { this.g4 = a; this.j("GenericDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorTextField", { get: function () { return this.hd; }, set: function (a) { this.hd = a; this.j("EditorTextField"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeColumnDescription.prototype, "editorValueField", { get: function () { return this.hf; }, set: function (a) { this.hf = 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 };