UNPKG

igniteui-react-core

Version:
285 lines (284 loc) 8.57 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var PropertyEditorPanelDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(PropertyEditorPanelDescription, _super); function PropertyEditorPanelDescription() { var _this = _super.call(this) || this; _this.h = null; _this.i = null; _this.v = 0; _this.ai = null; _this.r = 0; _this.z = null; _this.s = 0; _this.aa = null; _this.ab = null; _this.ad = null; _this.ac = null; _this.ag = null; _this.ae = null; _this.l = false; _this.n = false; _this.m = false; _this.y = null; _this.ah = null; _this.aj = null; _this.af = null; _this.x = null; return _this; } PropertyEditorPanelDescription.prototype.get_type = function () { return "PropertyEditorPanel"; }; Object.defineProperty(PropertyEditorPanelDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "actualDataSource", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("ActualDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "properties", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("Properties"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "rowHeight", { get: function () { return this.v; }, set: function (a) { this.v = a; this.g("RowHeight"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "updateMode", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.g("UpdateMode"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "actualRowHeight", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("ActualRowHeight"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "cellFontFamily", { get: function () { return this.z; }, set: function (a) { this.z = a; this.g("CellFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "cellFontSize", { get: function () { return this.s; }, set: function (a) { this.s = a; this.g("CellFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "cellFontStyle", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.g("CellFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "cellFontWeight", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.g("CellFontWeight"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "descriptionContextRef", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.g("DescriptionContextRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "componentRendererRef", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.g("ComponentRendererRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "targetRef", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.g("TargetRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "descriptionType", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.g("DescriptionType"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "isHorizontal", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("IsHorizontal"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "isWrappingEnabled", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("IsWrappingEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "isIndirectModeEnabled", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("IsIndirectModeEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "backgroundColor", { get: function () { return this.y; }, set: function (a) { this.y = a; this.g("BackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "textColor", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.g("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "width", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.g("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "height", { get: function () { return this.af; }, set: function (a) { this.af = a; this.g("Height"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorPanelDescription.prototype, "background", { get: function () { return this.x; }, set: function (a) { this.x = a; this.g("Background"); }, enumerable: false, configurable: true }); PropertyEditorPanelDescription.$t = markType(PropertyEditorPanelDescription, 'PropertyEditorPanelDescription', Description.$); return PropertyEditorPanelDescription; }(Description)); export { PropertyEditorPanelDescription };