igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
211 lines (210 loc) • 5.83 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let PropertyEditorDescription = /*@__PURE__*/ (() => {
class PropertyEditorDescription extends Description {
constructor() {
super();
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;
}
get_type() {
return "PropertyEditor";
}
get type() {
return this.get_type();
}
get actualDataSource() {
return this.k;
}
set actualDataSource(a) {
this.k = a;
this.j("ActualDataSource");
}
get properties() {
return this.l;
}
set properties(a) {
this.l = a;
this.j("Properties");
}
get filterPlaceholderText() {
return this.ai;
}
set filterPlaceholderText(a) {
this.ai = a;
this.j("FilterPlaceholderText");
}
get searchInputType() {
return this.ak;
}
set searchInputType(a) {
this.ak = a;
this.j("SearchInputType");
}
get rowHeight() {
return this.w;
}
set rowHeight(a) {
this.w = a;
this.j("RowHeight");
}
get cellFontFamily() {
return this.ab;
}
set cellFontFamily(a) {
this.ab = a;
this.j("CellFontFamily");
}
get cellFontSize() {
return this.u;
}
set cellFontSize(a) {
this.u = a;
this.j("CellFontSize");
}
get cellFontStyle() {
return this.ac;
}
set cellFontStyle(a) {
this.ac = a;
this.j("CellFontStyle");
}
get cellFontWeight() {
return this.ad;
}
set cellFontWeight(a) {
this.ad = a;
this.j("CellFontWeight");
}
get baseTheme() {
return this.aa;
}
set baseTheme(a) {
this.aa = a;
this.j("BaseTheme");
}
get density() {
return this.af;
}
set density(a) {
this.af = a;
this.j("Density");
}
get descriptionContextRef() {
return this.ag;
}
set descriptionContextRef(a) {
this.ag = a;
this.j("DescriptionContextRef");
}
get componentRendererRef() {
return this.ae;
}
set componentRendererRef(a) {
this.ae = a;
this.j("ComponentRendererRef");
}
get targetRef() {
return this.al;
}
set targetRef(a) {
this.al = a;
this.j("TargetRef");
}
get descriptionType() {
return this.ah;
}
set descriptionType(a) {
this.ah = a;
this.j("DescriptionType");
}
get isHorizontal() {
return this.o;
}
set isHorizontal(a) {
this.o = a;
this.j("IsHorizontal");
}
get isWrappingEnabled() {
return this.q;
}
set isWrappingEnabled(a) {
this.q = a;
this.j("IsWrappingEnabled");
}
get isIndirectModeEnabled() {
return this.p;
}
set isIndirectModeEnabled(a) {
this.p = a;
this.j("IsIndirectModeEnabled");
}
get backgroundColor() {
return this.z;
}
set backgroundColor(a) {
this.z = a;
this.j("BackgroundColor");
}
get textColor() {
return this.am;
}
set textColor(a) {
this.am = a;
this.j("TextColor");
}
get width() {
return this.an;
}
set width(a) {
this.an = a;
this.j("Width");
}
get height() {
return this.aj;
}
set height(a) {
this.aj = a;
this.j("Height");
}
get background() {
return this.y;
}
set background(a) {
this.y = a;
this.j("Background");
}
}
PropertyEditorDescription.$t = markType(PropertyEditorDescription, 'PropertyEditorDescription', Description.$);
return PropertyEditorDescription;
})();