igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
232 lines (231 loc) • 7.36 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 NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(NumericColumnDescription, _super);
function NumericColumnDescription() {
var _this = _super.call(this) || this;
_this.hm = null;
_this.ho = null;
_this.hn = null;
_this.hp = null;
_this.g9 = 0;
_this.ha = 0;
_this.hb = 0;
_this.g7 = false;
_this.hl = null;
_this.g0 = null;
_this.hk = null;
_this.hi = null;
_this.hg = null;
_this.g2 = null;
_this.g4 = null;
_this.hh = null;
_this.hj = null;
return _this;
}
NumericColumnDescription.prototype.get_type = function () {
return "NumericColumn";
};
Object.defineProperty(NumericColumnDescription.prototype, "negativePrefix", {
get: function () {
return this.hm;
},
set: function (a) {
this.hm = a;
this.j("NegativePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "positivePrefix", {
get: function () {
return this.ho;
},
set: function (a) {
this.ho = a;
this.j("PositivePrefix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "negativeSuffix", {
get: function () {
return this.hn;
},
set: function (a) {
this.hn = a;
this.j("NegativeSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "positiveSuffix", {
get: function () {
return this.hp;
},
set: function (a) {
this.hp = a;
this.j("PositiveSuffix");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "maxFractionDigits", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.j("MaxFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "minFractionDigits", {
get: function () {
return this.ha;
},
set: function (a) {
this.ha = a;
this.j("MinFractionDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "minIntegerDigits", {
get: function () {
return this.hb;
},
set: function (a) {
this.hb = a;
this.j("MinIntegerDigits");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "showGroupingSeparator", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.j("ShowGroupingSeparator");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "formatString", {
get: function () {
return this.hl;
},
set: function (a) {
this.hl = a;
this.j("FormatString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "formatSpecifiers", {
get: function () {
return this.g0;
},
set: function (a) {
this.g0 = a;
this.j("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "formatOverrideRef", {
get: function () {
return this.hk;
},
set: function (a) {
this.hk = a;
this.j("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "editorType", {
get: function () {
return this.hi;
},
set: function (a) {
this.hi = a;
this.j("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "editorDataSourceRef", {
get: function () {
return this.hg;
},
set: function (a) {
this.hg = a;
this.j("EditorDataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "dataSource", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.j("DataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "genericDataSource", {
get: function () {
return this.g4;
},
set: function (a) {
this.g4 = a;
this.j("GenericDataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "editorTextField", {
get: function () {
return this.hh;
},
set: function (a) {
this.hh = a;
this.j("EditorTextField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(NumericColumnDescription.prototype, "editorValueField", {
get: function () {
return this.hj;
},
set: function (a) {
this.hj = 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 };