igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
171 lines (170 loc) • 4.82 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 GridColumnOptionsBaseDescription = /*@__PURE__*/ (() => {
class GridColumnOptionsBaseDescription extends Description {
constructor() {
super();
this.m = false;
this.v = null;
this.w = null;
this.s = null;
this.x = null;
this.t = null;
this.y = null;
this.o = 0;
this.z = null;
this.aa = null;
this.k = null;
this.ab = null;
this.u = null;
this.ac = null;
this.p = 0;
this.ad = null;
this.ae = null;
this.af = null;
}
get_type() {
return "GridColumnOptionsBase";
}
get type() {
return this.get_type();
}
get autoSize() {
return this.m;
}
set autoSize(a) {
this.m = a;
this.j("AutoSize");
}
get backgroundColor() {
return this.v;
}
set backgroundColor(a) {
this.v = a;
this.j("BackgroundColor");
}
get baseTheme() {
return this.w;
}
set baseTheme(a) {
this.w = a;
this.j("BaseTheme");
}
get actualBaseTheme() {
return this.s;
}
set actualBaseTheme(a) {
this.s = a;
this.j("ActualBaseTheme");
}
get buttonDensity() {
return this.x;
}
set buttonDensity(a) {
this.x = a;
this.j("ButtonDensity");
}
get actualButtonDensity() {
return this.t;
}
set actualButtonDensity(a) {
this.t = a;
this.j("ActualButtonDensity");
}
get buttonFontFamily() {
return this.y;
}
set buttonFontFamily(a) {
this.y = a;
this.j("ButtonFontFamily");
}
get buttonFontSize() {
return this.o;
}
set buttonFontSize(a) {
this.o = a;
this.j("ButtonFontSize");
}
get buttonFontStyle() {
return this.z;
}
set buttonFontStyle(a) {
this.z = a;
this.j("ButtonFontStyle");
}
get buttonFontWeight() {
return this.aa;
}
set buttonFontWeight(a) {
this.aa = a;
this.j("ButtonFontWeight");
}
get column() {
return this.k;
}
set column(a) {
this.k = a;
this.j("Column");
}
get density() {
return this.ab;
}
set density(a) {
this.ab = a;
this.j("Density");
}
get actualDensity() {
return this.u;
}
set actualDensity(a) {
this.u = a;
this.j("ActualDensity");
}
get labelFontFamily() {
return this.ac;
}
set labelFontFamily(a) {
this.ac = a;
this.j("LabelFontFamily");
}
get labelFontSize() {
return this.p;
}
set labelFontSize(a) {
this.p = a;
this.j("LabelFontSize");
}
get labelFontStyle() {
return this.ad;
}
set labelFontStyle(a) {
this.ad = a;
this.j("LabelFontStyle");
}
get labelFontWeight() {
return this.ae;
}
set labelFontWeight(a) {
this.ae = a;
this.j("LabelFontWeight");
}
get textColor() {
return this.af;
}
set textColor(a) {
this.af = a;
this.j("TextColor");
}
}
GridColumnOptionsBaseDescription.$t = markType(GridColumnOptionsBaseDescription, 'GridColumnOptionsBaseDescription', Description.$);
return GridColumnOptionsBaseDescription;
})();