UNPKG

igniteui-react-core

Version:
244 lines (243 loc) 7.45 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 NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NumericColumnDescription, _super); function NumericColumnDescription() { var _this = _super.call(this) || this; _this.jk = null; _this.jm = null; _this.jl = null; _this.jn = null; _this.i7 = 0; _this.i8 = 0; _this.i9 = 0; _this.i3 = false; _this.i4 = false; _this.jj = null; _this.iw = null; _this.ji = null; _this.jg = null; _this.je = null; _this.iy = null; _this.i0 = null; _this.jf = null; _this.jh = null; return _this; } NumericColumnDescription.prototype.get_type = function () { return "NumericColumn"; }; Object.defineProperty(NumericColumnDescription.prototype, "negativePrefix", { get: function () { return this.jk; }, set: function (a) { this.jk = a; this.j("NegativePrefix"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "positivePrefix", { get: function () { return this.jm; }, set: function (a) { this.jm = a; this.j("PositivePrefix"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "negativeSuffix", { get: function () { return this.jl; }, set: function (a) { this.jl = a; this.j("NegativeSuffix"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "positiveSuffix", { get: function () { return this.jn; }, set: function (a) { this.jn = a; this.j("PositiveSuffix"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "maxFractionDigits", { get: function () { return this.i7; }, set: function (a) { this.i7 = a; this.j("MaxFractionDigits"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "minFractionDigits", { get: function () { return this.i8; }, set: function (a) { this.i8 = a; this.j("MinFractionDigits"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "minIntegerDigits", { get: function () { return this.i9; }, set: function (a) { this.i9 = a; this.j("MinIntegerDigits"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "isPercent", { get: function () { return this.i3; }, set: function (a) { this.i3 = a; this.j("IsPercent"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "showGroupingSeparator", { get: function () { return this.i4; }, set: function (a) { this.i4 = a; this.j("ShowGroupingSeparator"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "formatString", { get: function () { return this.jj; }, set: function (a) { this.jj = a; this.j("FormatString"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "formatSpecifiers", { get: function () { return this.iw; }, set: function (a) { this.iw = a; this.j("FormatSpecifiers"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "formatOverrideRef", { get: function () { return this.ji; }, set: function (a) { this.ji = a; this.j("FormatOverrideRef"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "editorType", { get: function () { return this.jg; }, set: function (a) { this.jg = a; this.j("EditorType"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "editorDataSourceRef", { get: function () { return this.je; }, set: function (a) { this.je = a; this.j("EditorDataSourceRef"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "dataSource", { get: function () { return this.iy; }, set: function (a) { this.iy = a; this.j("DataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "genericDataSource", { get: function () { return this.i0; }, set: function (a) { this.i0 = a; this.j("GenericDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "editorTextField", { get: function () { return this.jf; }, set: function (a) { this.jf = a; this.j("EditorTextField"); }, enumerable: false, configurable: true }); Object.defineProperty(NumericColumnDescription.prototype, "editorValueField", { get: function () { return this.jh; }, set: function (a) { this.jh = a; this.j("EditorValueField"); }, enumerable: false, configurable: true }); NumericColumnDescription.$t = markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$); NumericColumnDescription.__canMarshalByValue1 = true; NumericColumnDescription.__marshalByValueAlias1 = "NumericColumn"; return NumericColumnDescription; }(DataGridColumnDescription)); export { NumericColumnDescription };