igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
195 lines (194 loc) • 5.6 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 DataGridToolbarDescription = /*@__PURE__*/ (() => {
class DataGridToolbarDescription extends Description {
constructor() {
super();
this.ag = null;
this.ah = null;
this.aj = null;
this.s = 0;
this.ak = null;
this.al = null;
this.ai = null;
this.y = null;
this.af = null;
this.k = false;
this.aa = null;
this.ab = null;
this.l = false;
this.ac = null;
this.ad = null;
this.o = 0;
this.p = 0;
this.q = 0;
this.r = 0;
this.ae = null;
this.z = null;
}
get_type() {
return "DataGridToolbar";
}
get type() {
return this.get_type();
}
get targetGridRef() {
return this.ag;
}
set targetGridRef(a) {
this.ag = a;
this.j("TargetGridRef");
}
get toolbarTitle() {
return this.ah;
}
set toolbarTitle(a) {
this.ah = a;
this.j("ToolbarTitle");
}
get toolbarTitleFontFamily() {
return this.aj;
}
set toolbarTitleFontFamily(a) {
this.aj = a;
this.j("ToolbarTitleFontFamily");
}
get toolbarTitleFontSize() {
return this.s;
}
set toolbarTitleFontSize(a) {
this.s = a;
this.j("ToolbarTitleFontSize");
}
get toolbarTitleFontStyle() {
return this.ak;
}
set toolbarTitleFontStyle(a) {
this.ak = a;
this.j("ToolbarTitleFontStyle");
}
get toolbarTitleFontWeight() {
return this.al;
}
set toolbarTitleFontWeight(a) {
this.al = a;
this.j("ToolbarTitleFontWeight");
}
get toolbarTitleColor() {
return this.ai;
}
set toolbarTitleColor(a) {
this.ai = a;
this.j("ToolbarTitleColor");
}
get backgroundColor() {
return this.y;
}
set backgroundColor(a) {
this.y = a;
this.j("BackgroundColor");
}
get dialogBackgroundColor() {
return this.af;
}
set dialogBackgroundColor(a) {
this.af = a;
this.j("DialogBackgroundColor");
}
get columnChooser() {
return this.k;
}
set columnChooser(a) {
this.k = a;
this.j("ColumnChooser");
}
get columnChooserText() {
return this.aa;
}
set columnChooserText(a) {
this.aa = a;
this.j("ColumnChooserText");
}
get columnChooserTitle() {
return this.ab;
}
set columnChooserTitle(a) {
this.ab = a;
this.j("ColumnChooserTitle");
}
get columnPinning() {
return this.l;
}
set columnPinning(a) {
this.l = a;
this.j("ColumnPinning");
}
get columnPinningText() {
return this.ac;
}
set columnPinningText(a) {
this.ac = a;
this.j("ColumnPinningText");
}
get columnPinningTitle() {
return this.ad;
}
set columnPinningTitle(a) {
this.ad = a;
this.j("ColumnPinningTitle");
}
get borderWidthBottom() {
return this.o;
}
set borderWidthBottom(a) {
this.o = a;
this.j("BorderWidthBottom");
}
get borderWidthLeft() {
return this.p;
}
set borderWidthLeft(a) {
this.p = a;
this.j("BorderWidthLeft");
}
get borderWidthRight() {
return this.q;
}
set borderWidthRight(a) {
this.q = a;
this.j("BorderWidthRight");
}
get borderWidthTop() {
return this.r;
}
set borderWidthTop(a) {
this.r = a;
this.j("BorderWidthTop");
}
get density() {
return this.ae;
}
set density(a) {
this.ae = a;
this.j("Density");
}
get baseTheme() {
return this.z;
}
set baseTheme(a) {
this.z = a;
this.j("BaseTheme");
}
}
DataGridToolbarDescription.$t = markType(DataGridToolbarDescription, 'DataGridToolbarDescription', Description.$);
return DataGridToolbarDescription;
})();