igniteui-react-core
Version:
Ignite UI React Core.
147 lines (146 loc) • 3.8 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 WebTooltipDescription = /*@__PURE__*/ (() => {
class WebTooltipDescription extends Description {
get_type() {
return "WebTooltip";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.i = false;
this.h = false;
this.o = 0;
this.aa = null;
this.t = null;
this.ab = null;
this.w = null;
this.p = 0;
this.n = 0;
this.x = null;
this.j = false;
this.z = null;
this.y = null;
this.v = null;
this.u = null;
}
get open() {
return this.i;
}
set open(a) {
this.i = a;
this.g("Open");
}
get disableArrow() {
return this.h;
}
set disableArrow(a) {
this.h = a;
this.g("DisableArrow");
}
get offset() {
return this.o;
}
set offset(a) {
this.o = a;
this.g("Offset");
}
get placement() {
return this.aa;
}
set placement(a) {
this.aa = a;
this.g("Placement");
}
get anchor() {
return this.t;
}
set anchor(a) {
this.t = a;
this.g("Anchor");
}
get showTriggers() {
return this.ab;
}
set showTriggers(a) {
this.ab = a;
this.g("ShowTriggers");
}
get hideTriggers() {
return this.w;
}
set hideTriggers(a) {
this.w = a;
this.g("HideTriggers");
}
get showDelay() {
return this.p;
}
set showDelay(a) {
this.p = a;
this.g("ShowDelay");
}
get hideDelay() {
return this.n;
}
set hideDelay(a) {
this.n = a;
this.g("HideDelay");
}
get message() {
return this.x;
}
set message(a) {
this.x = a;
this.g("Message");
}
get sticky() {
return this.j;
}
set sticky(a) {
this.j = a;
this.g("Sticky");
}
get openingRef() {
return this.z;
}
set openingRef(a) {
this.z = a;
this.g("OpeningRef");
}
get openedRef() {
return this.y;
}
set openedRef(a) {
this.y = a;
this.g("OpenedRef");
}
get closingRef() {
return this.v;
}
set closingRef(a) {
this.v = a;
this.g("ClosingRef");
}
get closedRef() {
return this.u;
}
set closedRef(a) {
this.u = a;
this.g("ClosedRef");
}
}
WebTooltipDescription.$t = /*@__PURE__*/ markType(WebTooltipDescription, 'WebTooltipDescription', Description.$);
return WebTooltipDescription;
})();