igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
155 lines (154 loc) • 4.14 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 {
constructor() {
super();
this.l = false;
this.k = false;
this.n = false;
this.t = 0;
this.af = null;
this.y = null;
this.ag = null;
this.ab = null;
this.u = 0;
this.s = 0;
this.ac = null;
this.m = false;
this.ae = null;
this.ad = null;
this.aa = null;
this.z = null;
}
get_type() {
return "WebTooltip";
}
get type() {
return this.get_type();
}
get open() {
return this.l;
}
set open(a) {
this.l = a;
this.j("Open");
}
get disableArrow() {
return this.k;
}
set disableArrow(a) {
this.k = a;
this.j("DisableArrow");
}
get withArrow() {
return this.n;
}
set withArrow(a) {
this.n = a;
this.j("WithArrow");
}
get offset() {
return this.t;
}
set offset(a) {
this.t = a;
this.j("Offset");
}
get placement() {
return this.af;
}
set placement(a) {
this.af = a;
this.j("Placement");
}
get anchor() {
return this.y;
}
set anchor(a) {
this.y = a;
this.j("Anchor");
}
get showTriggers() {
return this.ag;
}
set showTriggers(a) {
this.ag = a;
this.j("ShowTriggers");
}
get hideTriggers() {
return this.ab;
}
set hideTriggers(a) {
this.ab = a;
this.j("HideTriggers");
}
get showDelay() {
return this.u;
}
set showDelay(a) {
this.u = a;
this.j("ShowDelay");
}
get hideDelay() {
return this.s;
}
set hideDelay(a) {
this.s = a;
this.j("HideDelay");
}
get message() {
return this.ac;
}
set message(a) {
this.ac = a;
this.j("Message");
}
get sticky() {
return this.m;
}
set sticky(a) {
this.m = a;
this.j("Sticky");
}
get openingRef() {
return this.ae;
}
set openingRef(a) {
this.ae = a;
this.j("OpeningRef");
}
get openedRef() {
return this.ad;
}
set openedRef(a) {
this.ad = a;
this.j("OpenedRef");
}
get closingRef() {
return this.aa;
}
set closingRef(a) {
this.aa = a;
this.j("ClosingRef");
}
get closedRef() {
return this.z;
}
set closedRef(a) {
this.z = a;
this.j("ClosedRef");
}
}
WebTooltipDescription.$t = markType(WebTooltipDescription, 'WebTooltipDescription', Description.$);
return WebTooltipDescription;
})();