igniteui-react-core
Version:
Ignite UI React Core.
48 lines (47 loc) • 1.73 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 { ToolActionIconButtonDescription } from "./ToolActionIconButtonDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionIconMenuDescription = /*@__PURE__*/ (() => {
class ToolActionIconMenuDescription extends ToolActionIconButtonDescription {
get_type() {
return "ToolActionIconMenu";
}
constructor() {
super();
this.ek = null;
this.ej = null;
this.eh = false;
}
get arrowStroke() {
return this.ek;
}
set arrowStroke(a) {
this.ek = a;
this.g("ArrowStroke");
}
get actualArrowStroke() {
return this.ej;
}
set actualArrowStroke(a) {
this.ej = a;
this.g("ActualArrowStroke");
}
get showArrowIcon() {
return this.eh;
}
set showArrowIcon(a) {
this.eh = a;
this.g("ShowArrowIcon");
}
}
ToolActionIconMenuDescription.$t = /*@__PURE__*/ markType(ToolActionIconMenuDescription, 'ToolActionIconMenuDescription', ToolActionIconButtonDescription.$);
return ToolActionIconMenuDescription;
})();