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