UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

309 lines (308 loc) 9.4 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 PropertyEditorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(PropertyEditorDescription, _super); function PropertyEditorDescription() { var _this = _super.call(this) || this; _this.k = null; _this.l = null; _this.ai = null; _this.ak = null; _this.w = 0; _this.ab = null; _this.u = 0; _this.ac = null; _this.ad = null; _this.aa = null; _this.af = null; _this.ag = null; _this.ae = null; _this.al = null; _this.ah = null; _this.o = false; _this.q = false; _this.p = false; _this.z = null; _this.am = null; _this.an = null; _this.aj = null; _this.y = null; return _this; } PropertyEditorDescription.prototype.get_type = function () { return "PropertyEditor"; }; Object.defineProperty(PropertyEditorDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "actualDataSource", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("ActualDataSource"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "properties", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("Properties"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "filterPlaceholderText", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("FilterPlaceholderText"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "searchInputType", { get: function () { return this.ak; }, set: function (a) { this.ak = a; this.j("SearchInputType"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "rowHeight", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("RowHeight"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "cellFontFamily", { get: function () { return this.ab; }, set: function (a) { this.ab = a; this.j("CellFontFamily"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "cellFontSize", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("CellFontSize"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "cellFontStyle", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.j("CellFontStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "cellFontWeight", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("CellFontWeight"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "baseTheme", { get: function () { return this.aa; }, set: function (a) { this.aa = a; this.j("BaseTheme"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "density", { get: function () { return this.af; }, set: function (a) { this.af = a; this.j("Density"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "descriptionContextRef", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("DescriptionContextRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "componentRendererRef", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("ComponentRendererRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "targetRef", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("TargetRef"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "descriptionType", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("DescriptionType"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "isHorizontal", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("IsHorizontal"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "isWrappingEnabled", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("IsWrappingEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "isIndirectModeEnabled", { get: function () { return this.p; }, set: function (a) { this.p = a; this.j("IsIndirectModeEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "backgroundColor", { get: function () { return this.z; }, set: function (a) { this.z = a; this.j("BackgroundColor"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "textColor", { get: function () { return this.am; }, set: function (a) { this.am = a; this.j("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "width", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("Width"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "height", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("Height"); }, enumerable: false, configurable: true }); Object.defineProperty(PropertyEditorDescription.prototype, "background", { get: function () { return this.y; }, set: function (a) { this.y = a; this.j("Background"); }, enumerable: false, configurable: true }); PropertyEditorDescription.$t = markType(PropertyEditorDescription, 'PropertyEditorDescription', Description.$); return PropertyEditorDescription; }(Description)); export { PropertyEditorDescription };