igniteui-react-core
Version:
Ignite UI React Core.
39 lines (38 loc) • 1.45 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 { ToolActionInfo } from "./ToolActionInfo";
import { markType } from "./type";
/**
* @hidden
*/
export let ToolActionIconButtonInfo = /*@__PURE__*/ (() => {
class ToolActionIconButtonInfo extends ToolActionInfo {
get_d() {
return 3;
}
get tooltipDelay() {
return this._tooltipDelay;
}
set tooltipDelay(a) {
this._tooltipDelay = a;
}
get isMenuOpenOnStart() {
return this._isMenuOpenOnStart;
}
set isMenuOpenOnStart(a) {
this._isMenuOpenOnStart = a;
}
constructor() {
super();
this._tooltipDelay = 0;
this._isMenuOpenOnStart = false;
this.tooltipDelay = -1;
}
}
ToolActionIconButtonInfo.$t = /*@__PURE__*/ markType(ToolActionIconButtonInfo, 'ToolActionIconButtonInfo', ToolActionInfo.$);
return ToolActionIconButtonInfo;
})();