UNPKG

igniteui-react-core

Version:
100 lines (99 loc) 3.44 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ var DateTimeCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DateTimeCellInfoDescription, _super); function DateTimeCellInfoDescription() { var _this = _super.call(this) || this; _this.gx = new Date(); _this.g2 = null; _this.gs = null; _this.g1 = null; _this.g0 = null; _this.gv = false; return _this; } DateTimeCellInfoDescription.prototype.get_type = function () { return "DateTimeCellInfo"; }; Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeValue", { get: function () { return this.gx; }, set: function (a) { this.gx = a; this.j("DateTimeValue"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatStringOverride", { get: function () { return this.g2; }, set: function (a) { this.g2 = a; this.j("FormatStringOverride"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatSpecifiers", { get: function () { return this.gs; }, set: function (a) { this.gs = a; this.j("FormatSpecifiers"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatOverrideRef", { get: function () { return this.g1; }, set: function (a) { this.g1 = a; this.j("FormatOverrideRef"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeFormat", { get: function () { return this.g0; }, set: function (a) { this.g0 = a; this.j("DateTimeFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(DateTimeCellInfoDescription.prototype, "isOffsetValue", { get: function () { return this.gv; }, set: function (a) { this.gv = a; this.j("IsOffsetValue"); }, enumerable: false, configurable: true }); DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$); DateTimeCellInfoDescription.__marshalByValue1 = true; DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel"; return DateTimeCellInfoDescription; }(CellInfoDescription)); export { DateTimeCellInfoDescription };