igniteui-react-core
Version:
Ignite UI React Core.
213 lines (212 loc) • 6.16 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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebTooltipDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTooltipDescription, _super);
function WebTooltipDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
WebTooltipDescription.prototype.get_type = function () {
return "WebTooltip";
};
Object.defineProperty(WebTooltipDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "open", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("Open");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "disableArrow", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("DisableArrow");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "offset", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("Offset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "placement", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.g("Placement");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "anchor", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.g("Anchor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "showTriggers", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.g("ShowTriggers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "hideTriggers", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.g("HideTriggers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "showDelay", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("ShowDelay");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "hideDelay", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("HideDelay");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "message", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.g("Message");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "sticky", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("Sticky");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "openingRef", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.g("OpeningRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "openedRef", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.g("OpenedRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "closingRef", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.g("ClosingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebTooltipDescription.prototype, "closedRef", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.g("ClosedRef");
},
enumerable: false,
configurable: true
});
WebTooltipDescription.$t = markType(WebTooltipDescription, 'WebTooltipDescription', Description.$);
return WebTooltipDescription;
}(Description));
export { WebTooltipDescription };