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