igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
184 lines (183 loc) • 5.88 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.gr = false;
_this.go = null;
_this.g0 = null;
_this.g6 = null;
_this.g5 = null;
_this.g4 = null;
_this.g2 = null;
_this.g3 = null;
_this.gm = null;
_this.g1 = null;
_this.gs = false;
_this.gw = 0;
_this.gv = 0;
return _this;
}
EditorCellInfoDescription.prototype.get_type = function () {
return "EditorCellInfo";
};
Object.defineProperty(EditorCellInfoDescription.prototype, "isHidden", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("IsHidden");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editTarget", {
get: function () {
return this.go;
},
set: function (a) {
this.go = a;
this.j("EditTarget");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "dataType", {
get: function () {
return this.g0;
},
set: function (a) {
this.g0 = a;
this.j("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "errorMessage", {
get: function () {
return this.g6;
},
set: function (a) {
this.g6 = a;
this.j("ErrorMessage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editValueRef", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.j("EditValueRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorType", {
get: function () {
return this.g4;
},
set: function (a) {
this.g4 = a;
this.j("EditorType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorDataSourceRef", {
get: function () {
return this.g2;
},
set: function (a) {
this.g2 = a;
this.j("EditorDataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorTextField", {
get: function () {
return this.g3;
},
set: function (a) {
this.g3 = a;
this.j("EditorTextField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "editorValueField", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("EditorValueField");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "dateFormatString", {
get: function () {
return this.g1;
},
set: function (a) {
this.g1 = a;
this.j("DateFormatString");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "showTodayButton", {
get: function () {
return this.gs;
},
set: function (a) {
this.gs = a;
this.j("ShowTodayButton");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "targetRow", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.j("TargetRow");
},
enumerable: false,
configurable: true
});
Object.defineProperty(EditorCellInfoDescription.prototype, "targetColumn", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = 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 };