igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
243 lines (242 loc) • 6.75 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 CheckboxListDescription = /*@__PURE__*/ (() => {
class CheckboxListDescription extends Description {
constructor() {
super();
this.f = null;
this.g = null;
this.ab = null;
this.aa = null;
this.al = null;
this.ad = null;
this.ah = null;
this.r = 0;
this.w = null;
this.p = 0;
this.x = null;
this.y = null;
this.ae = null;
this.v = null;
this.ac = null;
this.ag = null;
this.af = null;
this.ai = null;
this.aj = null;
this.t = null;
this.l = false;
this.u = null;
this.am = null;
this.k = false;
this.j = false;
this.z = null;
this.ak = null;
}
get_type() {
return "CheckboxList";
}
get type() {
return this.get_type();
}
get keys() {
return this.f;
}
set keys(a) {
this.f = a;
this.e("Keys");
}
get primaryKey() {
return this.g;
}
set primaryKey(a) {
this.g = a;
this.e("PrimaryKey");
}
get dataSourceRef() {
return this.ab;
}
set dataSourceRef(a) {
this.ab = a;
this.e("DataSourceRef");
}
get dataMemberPath() {
return this.aa;
}
set dataMemberPath(a) {
this.aa = a;
this.e("DataMemberPath");
}
get selectedMemberPath() {
return this.al;
}
set selectedMemberPath(a) {
this.al = a;
this.e("SelectedMemberPath");
}
get filterPlaceholderText() {
return this.ad;
}
set filterPlaceholderText(a) {
this.ad = a;
this.e("FilterPlaceholderText");
}
get searchInputType() {
return this.ah;
}
set searchInputType(a) {
this.ah = a;
this.e("SearchInputType");
}
get rowHeight() {
return this.r;
}
set rowHeight(a) {
this.r = a;
this.e("RowHeight");
}
get cellFontFamily() {
return this.w;
}
set cellFontFamily(a) {
this.w = a;
this.e("CellFontFamily");
}
get cellFontSize() {
return this.p;
}
set cellFontSize(a) {
this.p = a;
this.e("CellFontSize");
}
get cellFontStyle() {
return this.x;
}
set cellFontStyle(a) {
this.x = a;
this.e("CellFontStyle");
}
get cellFontWeight() {
return this.y;
}
set cellFontWeight(a) {
this.y = a;
this.e("CellFontWeight");
}
get indexType() {
return this.ae;
}
set indexType(a) {
this.ae = a;
this.e("IndexType");
}
get baseTheme() {
return this.v;
}
set baseTheme(a) {
this.v = a;
this.e("BaseTheme");
}
get density() {
return this.ac;
}
set density(a) {
this.ac = a;
this.e("Density");
}
get scrollbarStyle() {
return this.ag;
}
set scrollbarStyle(a) {
this.ag = a;
this.e("ScrollbarStyle");
}
get scrollbarBackground() {
return this.af;
}
set scrollbarBackground(a) {
this.af = a;
this.e("ScrollbarBackground");
}
get selectAllCaption() {
return this.ai;
}
set selectAllCaption(a) {
this.ai = a;
this.e("SelectAllCaption");
}
get selectAllCaptionTextColor() {
return this.aj;
}
set selectAllCaptionTextColor(a) {
this.aj = a;
this.e("SelectAllCaptionTextColor");
}
get actualSelectAllCaptionTextColor() {
return this.t;
}
set actualSelectAllCaptionTextColor(a) {
this.t = a;
this.e("ActualSelectAllCaptionTextColor");
}
get showSelectAll() {
return this.l;
}
set showSelectAll(a) {
this.l = a;
this.e("ShowSelectAll");
}
get backgroundColor() {
return this.u;
}
set backgroundColor(a) {
this.u = a;
this.e("BackgroundColor");
}
get textColor() {
return this.am;
}
set textColor(a) {
this.am = a;
this.e("TextColor");
}
get showFilter() {
return this.k;
}
set showFilter(a) {
this.k = a;
this.e("ShowFilter");
}
get isRowHoverEnabled() {
return this.j;
}
set isRowHoverEnabled(a) {
this.j = a;
this.e("IsRowHoverEnabled");
}
get checkedChangedRef() {
return this.z;
}
set checkedChangedRef(a) {
this.z = a;
this.e("CheckedChangedRef");
}
get selectAllCheckboxChangedRef() {
return this.ak;
}
set selectAllCheckboxChangedRef(a) {
this.ak = a;
this.e("SelectAllCheckboxChangedRef");
}
}
CheckboxListDescription.$t = markType(CheckboxListDescription, 'CheckboxListDescription', Description.$);
return CheckboxListDescription;
})();