igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
210 lines (209 loc) • 6.33 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 { ToolActionInfoDescription } from "./ToolActionInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionButtonPairInfoDescription = /*@__PURE__*/ (() => {
class ToolActionButtonPairInfoDescription extends ToolActionInfoDescription {
constructor() {
super();
this.cg = null;
this.cb = null;
this.ce = null;
this.cc = null;
this.cd = null;
this.cf = null;
this.bq = 0;
this.bo = false;
this.bs = 0;
this.bt = 0;
this.bu = 0;
this.br = 0;
this.cm = null;
this.ch = null;
this.ck = null;
this.ci = null;
this.cj = null;
this.cl = null;
this.bv = 0;
this.bx = 0;
this.by = 0;
this.bz = 0;
this.bw = 0;
}
get_type() {
return "ToolActionButtonPairInfo";
}
get leftTitle() {
return this.cg;
}
set leftTitle(a) {
this.cg = a;
this.j("LeftTitle");
}
get leftCommandArgument() {
return this.cb;
}
set leftCommandArgument(a) {
this.cb = a;
this.j("LeftCommandArgument");
}
get leftIconName() {
return this.ce;
}
set leftIconName(a) {
this.ce = a;
this.j("LeftIconName");
}
get leftIconCollectionName() {
return this.cc;
}
set leftIconCollectionName(a) {
this.cc = a;
this.j("LeftIconCollectionName");
}
get leftIconFill() {
return this.cd;
}
set leftIconFill(a) {
this.cd = a;
this.j("LeftIconFill");
}
get leftIconStroke() {
return this.cf;
}
set leftIconStroke(a) {
this.cf = a;
this.j("LeftIconStroke");
}
get leftIconStrokeWidth() {
return this.bq;
}
set leftIconStrokeWidth(a) {
this.bq = a;
this.j("LeftIconStrokeWidth");
}
get isToggleDisabled() {
return this.bo;
}
set isToggleDisabled(a) {
this.bo = a;
this.j("IsToggleDisabled");
}
get leftIconViewBoxLeft() {
return this.bs;
}
set leftIconViewBoxLeft(a) {
this.bs = a;
this.j("LeftIconViewBoxLeft");
}
get leftIconViewBoxTop() {
return this.bt;
}
set leftIconViewBoxTop(a) {
this.bt = a;
this.j("LeftIconViewBoxTop");
}
get leftIconViewBoxWidth() {
return this.bu;
}
set leftIconViewBoxWidth(a) {
this.bu = a;
this.j("LeftIconViewBoxWidth");
}
get leftIconViewBoxHeight() {
return this.br;
}
set leftIconViewBoxHeight(a) {
this.br = a;
this.j("LeftIconViewBoxHeight");
}
get rightTitle() {
return this.cm;
}
set rightTitle(a) {
this.cm = a;
this.j("RightTitle");
}
get rightCommandArgument() {
return this.ch;
}
set rightCommandArgument(a) {
this.ch = a;
this.j("RightCommandArgument");
}
get rightIconName() {
return this.ck;
}
set rightIconName(a) {
this.ck = a;
this.j("RightIconName");
}
get rightIconCollectionName() {
return this.ci;
}
set rightIconCollectionName(a) {
this.ci = a;
this.j("RightIconCollectionName");
}
get rightIconFill() {
return this.cj;
}
set rightIconFill(a) {
this.cj = a;
this.j("RightIconFill");
}
get rightIconStroke() {
return this.cl;
}
set rightIconStroke(a) {
this.cl = a;
this.j("RightIconStroke");
}
get rightIconStrokeWidth() {
return this.bv;
}
set rightIconStrokeWidth(a) {
this.bv = a;
this.j("RightIconStrokeWidth");
}
get rightIconViewBoxLeft() {
return this.bx;
}
set rightIconViewBoxLeft(a) {
this.bx = a;
this.j("RightIconViewBoxLeft");
}
get rightIconViewBoxTop() {
return this.by;
}
set rightIconViewBoxTop(a) {
this.by = a;
this.j("RightIconViewBoxTop");
}
get rightIconViewBoxWidth() {
return this.bz;
}
set rightIconViewBoxWidth(a) {
this.bz = a;
this.j("RightIconViewBoxWidth");
}
get rightIconViewBoxHeight() {
return this.bw;
}
set rightIconViewBoxHeight(a) {
this.bw = a;
this.j("RightIconViewBoxHeight");
}
}
ToolActionButtonPairInfoDescription.$t = markType(ToolActionButtonPairInfoDescription, 'ToolActionButtonPairInfoDescription', ToolActionInfoDescription.$);
ToolActionButtonPairInfoDescription.__marshalByValue1 = true;
ToolActionButtonPairInfoDescription.__marshalByValueAlias1 = "ToolActionButtonPairInfo";
return ToolActionButtonPairInfoDescription;
})();