igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
139 lines (138 loc) • 4.06 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 ColumnGroupingDescription = /*@__PURE__*/ (() => {
class ColumnGroupingDescription extends Description {
constructor() {
super();
this.v = null;
this.n = null;
this.r = null;
this.x = null;
this.y = null;
this.o = null;
this.k = 0;
this.p = null;
this.q = null;
this.w = null;
this.s = null;
this.t = null;
this.u = null;
this.m = null;
}
get_type() {
return "ColumnGrouping";
}
get type() {
return this.get_type();
}
get targetGridRef() {
return this.v;
}
set targetGridRef(a) {
this.v = a;
this.j("TargetGridRef");
}
get baseTheme() {
return this.n;
}
set baseTheme(a) {
this.n = a;
this.j("BaseTheme");
}
get density() {
return this.r;
}
set density(a) {
this.r = a;
this.j("Density");
}
get title() {
return this.x;
}
set title(a) {
this.x = a;
this.j("Title");
}
get titleColor() {
return this.y;
}
set titleColor(a) {
this.y = a;
this.j("TitleColor");
}
get columnGroupTitleFontFamily() {
return this.o;
}
set columnGroupTitleFontFamily(a) {
this.o = a;
this.j("ColumnGroupTitleFontFamily");
}
get columnGroupTitleFontSize() {
return this.k;
}
set columnGroupTitleFontSize(a) {
this.k = a;
this.j("ColumnGroupTitleFontSize");
}
get columnGroupTitleFontStyle() {
return this.p;
}
set columnGroupTitleFontStyle(a) {
this.p = a;
this.j("ColumnGroupTitleFontStyle");
}
get columnGroupTitleFontWeight() {
return this.q;
}
set columnGroupTitleFontWeight(a) {
this.q = a;
this.j("ColumnGroupTitleFontWeight");
}
get textColor() {
return this.w;
}
set textColor(a) {
this.w = a;
this.j("TextColor");
}
get iconColor() {
return this.s;
}
set iconColor(a) {
this.s = a;
this.j("IconColor");
}
get itemBackgroundColor() {
return this.t;
}
set itemBackgroundColor(a) {
this.t = a;
this.j("ItemBackgroundColor");
}
get itemHoverBackgroundColor() {
return this.u;
}
set itemHoverBackgroundColor(a) {
this.u = a;
this.j("ItemHoverBackgroundColor");
}
get backgroundColor() {
return this.m;
}
set backgroundColor(a) {
this.m = a;
this.j("BackgroundColor");
}
}
ColumnGroupingDescription.$t = markType(ColumnGroupingDescription, 'ColumnGroupingDescription', Description.$);
return ColumnGroupingDescription;
})();