UNPKG

igniteui-react-core

Version:
211 lines (210 loc) 5.62 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let PropertyEditorDescription = /*@__PURE__*/ (() => { class PropertyEditorDescription extends Description { get_type() { return "PropertyEditor"; } get type() { return this.get_type(); } constructor() { super(); this.h = null; this.i = null; this.af = null; this.ah = null; this.t = 0; this.y = null; this.r = 0; this.z = null; this.aa = null; this.x = null; this.ac = null; this.ad = null; this.ab = null; this.ai = null; this.ae = null; this.l = false; this.n = false; this.m = false; this.w = null; this.aj = null; this.ak = null; this.ag = null; this.v = null; } get actualDataSource() { return this.h; } set actualDataSource(a) { this.h = a; this.g("ActualDataSource"); } get properties() { return this.i; } set properties(a) { this.i = a; this.g("Properties"); } get filterPlaceholderText() { return this.af; } set filterPlaceholderText(a) { this.af = a; this.g("FilterPlaceholderText"); } get searchInputType() { return this.ah; } set searchInputType(a) { this.ah = a; this.g("SearchInputType"); } get rowHeight() { return this.t; } set rowHeight(a) { this.t = a; this.g("RowHeight"); } get cellFontFamily() { return this.y; } set cellFontFamily(a) { this.y = a; this.g("CellFontFamily"); } get cellFontSize() { return this.r; } set cellFontSize(a) { this.r = a; this.g("CellFontSize"); } get cellFontStyle() { return this.z; } set cellFontStyle(a) { this.z = a; this.g("CellFontStyle"); } get cellFontWeight() { return this.aa; } set cellFontWeight(a) { this.aa = a; this.g("CellFontWeight"); } get baseTheme() { return this.x; } set baseTheme(a) { this.x = a; this.g("BaseTheme"); } get density() { return this.ac; } set density(a) { this.ac = a; this.g("Density"); } get descriptionContextRef() { return this.ad; } set descriptionContextRef(a) { this.ad = a; this.g("DescriptionContextRef"); } get componentRendererRef() { return this.ab; } set componentRendererRef(a) { this.ab = a; this.g("ComponentRendererRef"); } get targetRef() { return this.ai; } set targetRef(a) { this.ai = a; this.g("TargetRef"); } get descriptionType() { return this.ae; } set descriptionType(a) { this.ae = a; this.g("DescriptionType"); } get isHorizontal() { return this.l; } set isHorizontal(a) { this.l = a; this.g("IsHorizontal"); } get isWrappingEnabled() { return this.n; } set isWrappingEnabled(a) { this.n = a; this.g("IsWrappingEnabled"); } get isIndirectModeEnabled() { return this.m; } set isIndirectModeEnabled(a) { this.m = a; this.g("IsIndirectModeEnabled"); } get backgroundColor() { return this.w; } set backgroundColor(a) { this.w = a; this.g("BackgroundColor"); } get textColor() { return this.aj; } set textColor(a) { this.aj = a; this.g("TextColor"); } get width() { return this.ak; } set width(a) { this.ak = a; this.g("Width"); } get height() { return this.ag; } set height(a) { this.ag = a; this.g("Height"); } get background() { return this.v; } set background(a) { this.v = a; this.g("Background"); } } PropertyEditorDescription.$t = /*@__PURE__*/ markType(PropertyEditorDescription, 'PropertyEditorDescription', Description.$); return PropertyEditorDescription; })();