igniteui-react-core
Version:
Ignite UI React Core.
184 lines (183 loc) • 5.7 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var EditorCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(EditorCellInfoDescription, _super);
function EditorCellInfoDescription() {
var _this = _super.call(this) || this;
_this.gx = false;
_this.gu = null;
_this.g6 = null;
_this.hc = null;
_this.hb = null;
_this.ha = null;
_this.g8 = null;
_this.g9 = null;
_this.gs = null;
_this.g7 = null;
_this.gy = false;
_this.g2 = 0;
_this.g1 = 0;
return _this;
}
EditorCellInfoDescription.prototype.get_type = function () {
return "EditorCellInfo";
};
Object.defineProperty(EditorCellInfoDescription.prototype, "isHidden", {
get: function () {
return this.gx;
},
set: function (a) {
this.gx = a;
this.j("IsHidden");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editTarget", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.j("EditTarget");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "dataType", {
get: function () {
return this.g6;
},
set: function (a) {
this.g6 = a;
this.j("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "errorMessage", {
get: function () {
return this.hc;
},
set: function (a) {
this.hc = a;
this.j("ErrorMessage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editValueRef", {
get: function () {
return this.hb;
},
set: function (a) {
this.hb = a;
this.j("EditValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorType", {
get: function () {
return this.ha;
},
set: function (a) {
this.ha = a;
this.j("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorDataSourceRef", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.j("EditorDataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorTextField", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.j("EditorTextField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorValueField", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("EditorValueField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "dateFormatString", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.j("DateFormatString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "showTodayButton", {
get: function () {
return this.gy;
},
set: function (a) {
this.gy = a;
this.j("ShowTodayButton");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "targetRow", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.j("TargetRow");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "targetColumn", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.j("TargetColumn");
},
enumerable: false,
configurable: true
});
EditorCellInfoDescription.$t = markType(EditorCellInfoDescription, 'EditorCellInfoDescription', CellInfoDescription.$);
EditorCellInfoDescription.__marshalByValue1 = true;
EditorCellInfoDescription.__marshalByValueAlias1 = "EditorCellModel";
return EditorCellInfoDescription;
}(CellInfoDescription));
export { EditorCellInfoDescription };