1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/dist/tooltip.js

1129 lines
35 KiB
JavaScript
Raw Normal View History

2018-11-13 01:41:12 -05:00
/*!
2020-12-07 10:50:24 -05:00
* Bootstrap tooltip.js v5.0.0-beta1 (https://getbootstrap.com/)
2020-03-28 06:29:08 -04:00
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 14:50:01 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 01:41:12 -05:00
*/
2018-07-23 20:51:14 -04:00
(function (global, factory) {
2020-12-07 10:50:24 -05:00
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('@popperjs/core'), require('./dom/data.js'), require('./dom/event-handler.js'), require('./dom/manipulator.js'), require('./dom/selector-engine.js')) :
typeof define === 'function' && define.amd ? define(['@popperjs/core', './dom/data', './dom/event-handler', './dom/manipulator', './dom/selector-engine'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Tooltip = factory(global.Popper, global.Data, global.EventHandler, global.Manipulator, global.SelectorEngine));
}(this, (function (Popper, Data, EventHandler, Manipulator, SelectorEngine) { 'use strict';
2019-03-01 11:31:34 -05:00
2020-09-14 11:12:06 -04:00
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
2020-12-07 10:50:24 -05:00
function _interopNamespace(e) {
if (e && e.__esModule) return e;
var n = Object.create(null);
if (e) {
Object.keys(e).forEach(function (k) {
if (k !== 'default') {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function () {
return e[k];
}
});
}
});
}
n['default'] = e;
return Object.freeze(n);
}
var Popper__namespace = /*#__PURE__*/_interopNamespace(Popper);
2020-09-14 11:12:06 -04:00
var Data__default = /*#__PURE__*/_interopDefaultLegacy(Data);
var EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
var Manipulator__default = /*#__PURE__*/_interopDefaultLegacy(Manipulator);
var SelectorEngine__default = /*#__PURE__*/_interopDefaultLegacy(SelectorEngine);
2018-07-23 20:51:14 -04:00
2019-02-13 11:01:40 -05:00
/**
* --------------------------------------------------------------------------
2020-12-07 10:50:24 -05:00
* Bootstrap (v5.0.0-beta1): util/index.js
2020-06-16 14:50:01 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2019-03-01 11:31:34 -05:00
* --------------------------------------------------------------------------
*/
var MAX_UID = 1000000;
var MILLISECONDS_MULTIPLIER = 1000;
2019-08-27 09:03:21 -04:00
var TRANSITION_END = 'transitionend'; // Shoutout AngusCroll (https://goo.gl/pxwQGp)
2019-03-01 11:31:34 -05:00
var toType = function toType(obj) {
2020-03-28 06:29:08 -04:00
if (obj === null || obj === undefined) {
return "" + obj;
}
2019-03-01 11:31:34 -05:00
return {}.toString.call(obj).match(/\s([a-z]+)/i)[1].toLowerCase();
};
/**
* --------------------------------------------------------------------------
* Public Util Api
* --------------------------------------------------------------------------
*/
var getUID = function getUID(prefix) {
do {
2020-06-13 18:40:28 -04:00
prefix += Math.floor(Math.random() * MAX_UID);
2019-03-01 11:31:34 -05:00
} while (document.getElementById(prefix));
return prefix;
};
var getTransitionDurationFromElement = function getTransitionDurationFromElement(element) {
if (!element) {
return 0;
} // Get transition-duration of the element
var _window$getComputedSt = window.getComputedStyle(element),
transitionDuration = _window$getComputedSt.transitionDuration,
transitionDelay = _window$getComputedSt.transitionDelay;
2020-11-23 08:17:16 -05:00
var floatTransitionDuration = Number.parseFloat(transitionDuration);
var floatTransitionDelay = Number.parseFloat(transitionDelay); // Return 0 if element or transition duration is not found
2019-03-01 11:31:34 -05:00
if (!floatTransitionDuration && !floatTransitionDelay) {
return 0;
} // If multiple durations are defined, take the first
transitionDuration = transitionDuration.split(',')[0];
transitionDelay = transitionDelay.split(',')[0];
2020-11-23 08:17:16 -05:00
return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
2019-03-01 11:31:34 -05:00
};
var triggerTransitionEnd = function triggerTransitionEnd(element) {
2020-03-28 06:29:08 -04:00
element.dispatchEvent(new Event(TRANSITION_END));
2019-03-01 11:31:34 -05:00
};
var isElement = function isElement(obj) {
return (obj[0] || obj).nodeType;
};
var emulateTransitionEnd = function emulateTransitionEnd(element, duration) {
var called = false;
var durationPadding = 5;
var emulatedDuration = duration + durationPadding;
function listener() {
called = true;
element.removeEventListener(TRANSITION_END, listener);
}
element.addEventListener(TRANSITION_END, listener);
setTimeout(function () {
if (!called) {
triggerTransitionEnd(element);
}
}, emulatedDuration);
};
var typeCheckConfig = function typeCheckConfig(componentName, config, configTypes) {
Object.keys(configTypes).forEach(function (property) {
var expectedTypes = configTypes[property];
var value = config[property];
var valueType = value && isElement(value) ? 'element' : toType(value);
if (!new RegExp(expectedTypes).test(valueType)) {
throw new Error(componentName.toUpperCase() + ": " + ("Option \"" + property + "\" provided type \"" + valueType + "\" ") + ("but expected type \"" + expectedTypes + "\"."));
}
});
};
var findShadowRoot = function findShadowRoot(element) {
if (!document.documentElement.attachShadow) {
return null;
} // Can find the shadow root otherwise it'll return the document
if (typeof element.getRootNode === 'function') {
var root = element.getRootNode();
return root instanceof ShadowRoot ? root : null;
}
if (element instanceof ShadowRoot) {
return element;
} // when we don't find a shadow root
if (!element.parentNode) {
return null;
}
return findShadowRoot(element.parentNode);
2019-10-08 02:39:10 -04:00
};
2019-03-01 11:31:34 -05:00
var noop = function noop() {
return function () {};
};
2019-08-27 09:03:21 -04:00
var getjQuery = function getjQuery() {
var _window = window,
jQuery = _window.jQuery;
2020-11-23 08:17:16 -05:00
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
2019-08-27 09:03:21 -04:00
return jQuery;
}
return null;
};
2020-11-11 12:07:37 -05:00
var onDOMContentLoaded = function onDOMContentLoaded(callback) {
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', callback);
} else {
callback();
}
};
2020-12-03 08:08:31 -05:00
var isRTL = document.documentElement.dir === 'rtl';
2019-03-01 11:31:34 -05:00
/**
* --------------------------------------------------------------------------
2020-12-07 10:50:24 -05:00
* Bootstrap (v5.0.0-beta1): util/sanitizer.js
2020-06-16 14:50:01 -04:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2019-02-13 11:01:40 -05:00
* --------------------------------------------------------------------------
*/
2020-11-23 08:17:16 -05:00
var uriAttrs = new Set(['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']);
2019-02-13 11:01:40 -05:00
var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i;
2019-03-01 11:31:34 -05:00
/**
* A pattern that recognizes a commonly useful subset of URLs that are safe.
*
* Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
*/
2020-03-28 06:29:08 -04:00
var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi;
2019-03-01 11:31:34 -05:00
/**
* A pattern that matches safe data URLs. Only matches image, video and audio types.
*
* Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
*/
2020-03-28 06:29:08 -04:00
var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;
2019-03-01 11:31:34 -05:00
var allowedAttribute = function allowedAttribute(attr, allowedAttributeList) {
var attrName = attr.nodeName.toLowerCase();
2020-11-23 08:17:16 -05:00
if (allowedAttributeList.includes(attrName)) {
if (uriAttrs.has(attrName)) {
2020-06-13 18:40:28 -04:00
return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN));
2019-03-01 11:31:34 -05:00
}
return true;
}
var regExp = allowedAttributeList.filter(function (attrRegex) {
return attrRegex instanceof RegExp;
}); // Check if a regular expression validates the attribute.
2020-03-28 06:29:08 -04:00
for (var i = 0, len = regExp.length; i < len; i++) {
2020-06-13 18:40:28 -04:00
if (attrName.match(regExp[i])) {
2019-03-01 11:31:34 -05:00
return true;
}
}
return false;
};
2020-09-14 11:12:06 -04:00
var DefaultAllowlist = {
2019-02-13 11:01:40 -05:00
// Global attributes allowed on any supplied element below.
'*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],
a: ['target', 'href', 'title', 'rel'],
area: [],
b: [],
br: [],
col: [],
code: [],
div: [],
em: [],
hr: [],
h1: [],
h2: [],
h3: [],
h4: [],
h5: [],
h6: [],
i: [],
2020-03-28 06:29:08 -04:00
img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],
2019-02-13 11:01:40 -05:00
li: [],
ol: [],
p: [],
pre: [],
s: [],
small: [],
span: [],
sub: [],
sup: [],
strong: [],
u: [],
ul: []
};
2020-09-14 11:12:06 -04:00
function sanitizeHtml(unsafeHtml, allowList, sanitizeFn) {
2020-03-28 06:29:08 -04:00
var _ref;
2019-03-01 11:31:34 -05:00
if (!unsafeHtml.length) {
2019-02-13 11:01:40 -05:00
return unsafeHtml;
}
if (sanitizeFn && typeof sanitizeFn === 'function') {
return sanitizeFn(unsafeHtml);
}
var domParser = new window.DOMParser();
var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');
2020-09-14 11:12:06 -04:00
var allowlistKeys = Object.keys(allowList);
2020-03-28 06:29:08 -04:00
var elements = (_ref = []).concat.apply(_ref, createdDocument.body.querySelectorAll('*'));
2019-02-13 11:01:40 -05:00
var _loop = function _loop(i, len) {
2020-03-28 06:29:08 -04:00
var _ref2;
2019-02-13 11:01:40 -05:00
var el = elements[i];
var elName = el.nodeName.toLowerCase();
2020-11-23 08:17:16 -05:00
if (!allowlistKeys.includes(elName)) {
2019-02-13 11:01:40 -05:00
el.parentNode.removeChild(el);
return "continue";
}
2020-03-28 06:29:08 -04:00
var attributeList = (_ref2 = []).concat.apply(_ref2, el.attributes);
2020-09-14 11:12:06 -04:00
var allowedAttributes = [].concat(allowList['*'] || [], allowList[elName] || []);
2019-02-13 11:01:40 -05:00
attributeList.forEach(function (attr) {
2020-09-14 11:12:06 -04:00
if (!allowedAttribute(attr, allowedAttributes)) {
2019-02-13 11:01:40 -05:00
el.removeAttribute(attr.nodeName);
}
});
};
for (var i = 0, len = elements.length; i < len; i++) {
var _ret = _loop(i);
2019-02-13 11:01:40 -05:00
if (_ret === "continue") continue;
}
return createdDocument.body.innerHTML;
}
2020-06-13 18:40:28 -04:00
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2018-11-13 01:41:12 -05:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2020-12-07 10:50:24 -05:00
var VERSION = '5.0.0-beta1';
2020-12-03 09:18:59 -05:00
var BaseComponent = /*#__PURE__*/function () {
function BaseComponent(element) {
if (!element) {
return;
}
this._element = element;
Data__default['default'].setData(element, this.constructor.DATA_KEY, this);
}
var _proto = BaseComponent.prototype;
_proto.dispose = function dispose() {
Data__default['default'].removeData(this._element, this.constructor.DATA_KEY);
this._element = null;
}
/** Static */
;
BaseComponent.getInstance = function getInstance(element) {
return Data__default['default'].getData(element, this.DATA_KEY);
};
_createClass(BaseComponent, null, [{
key: "VERSION",
get: function get() {
return VERSION;
}
}]);
return BaseComponent;
}();
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _defineProperties$1(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass$1(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$1(Constructor.prototype, protoProps); if (staticProps) _defineProperties$1(Constructor, staticProps); return Constructor; }
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tooltip';
2018-11-13 01:41:12 -05:00
var DATA_KEY = 'bs.tooltip';
var EVENT_KEY = "." + DATA_KEY;
var CLASS_PREFIX = 'bs-tooltip';
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
2020-11-23 08:17:16 -05:00
var DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn']);
2018-11-13 01:41:12 -05:00
var DefaultType = {
animation: 'boolean',
template: 'string',
title: '(string|element|function)',
trigger: 'string',
delay: '(number|object)',
html: 'boolean',
selector: '(string|boolean)',
placement: '(string|function)',
container: '(string|element|boolean)',
2020-12-07 10:50:24 -05:00
fallbackPlacements: '(null|array)',
2019-02-13 11:01:40 -05:00
boundary: '(string|element)',
2020-12-03 09:18:59 -05:00
customClass: '(string|function)',
2019-02-13 11:01:40 -05:00
sanitize: 'boolean',
sanitizeFn: '(null|function)',
2020-09-14 11:12:06 -04:00
allowList: 'object',
2019-08-27 09:03:21 -04:00
popperConfig: '(null|object)'
2018-11-13 01:41:12 -05:00
};
var AttachmentMap = {
AUTO: 'auto',
TOP: 'top',
2020-12-03 08:08:31 -05:00
RIGHT: isRTL ? 'left' : 'right',
2018-11-13 01:41:12 -05:00
BOTTOM: 'bottom',
2020-12-03 08:08:31 -05:00
LEFT: isRTL ? 'right' : 'left'
2018-11-13 01:41:12 -05:00
};
var Default = {
animation: true,
2020-12-03 09:18:59 -05:00
template: '<div class="tooltip" role="tooltip">' + '<div class="tooltip-arrow"></div>' + '<div class="tooltip-inner"></div>' + '</div>',
2018-11-13 01:41:12 -05:00
trigger: 'hover focus',
title: '',
delay: 0,
html: false,
selector: false,
placement: 'top',
container: false,
2020-12-07 10:50:24 -05:00
fallbackPlacements: null,
boundary: 'clippingParents',
2020-12-03 09:18:59 -05:00
customClass: '',
2019-02-13 11:01:40 -05:00
sanitize: true,
sanitizeFn: null,
2020-09-14 11:12:06 -04:00
allowList: DefaultAllowlist,
2019-08-27 09:03:21 -04:00
popperConfig: null
2018-11-13 01:41:12 -05:00
};
2020-03-28 06:29:08 -04:00
var Event$1 = {
2018-11-13 01:41:12 -05:00
HIDE: "hide" + EVENT_KEY,
HIDDEN: "hidden" + EVENT_KEY,
SHOW: "show" + EVENT_KEY,
SHOWN: "shown" + EVENT_KEY,
INSERTED: "inserted" + EVENT_KEY,
CLICK: "click" + EVENT_KEY,
FOCUSIN: "focusin" + EVENT_KEY,
FOCUSOUT: "focusout" + EVENT_KEY,
MOUSEENTER: "mouseenter" + EVENT_KEY,
MOUSELEAVE: "mouseleave" + EVENT_KEY
};
2020-03-28 06:29:08 -04:00
var CLASS_NAME_FADE = 'fade';
var CLASS_NAME_MODAL = 'modal';
var CLASS_NAME_SHOW = 'show';
var HOVER_STATE_SHOW = 'show';
var HOVER_STATE_OUT = 'out';
var SELECTOR_TOOLTIP_INNER = '.tooltip-inner';
var TRIGGER_HOVER = 'hover';
var TRIGGER_FOCUS = 'focus';
var TRIGGER_CLICK = 'click';
var TRIGGER_MANUAL = 'manual';
2019-10-08 02:39:10 -04:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2018-11-13 01:41:12 -05:00
2020-12-03 09:18:59 -05:00
var Tooltip = /*#__PURE__*/function (_BaseComponent) {
_inheritsLoose(Tooltip, _BaseComponent);
2018-11-13 01:41:12 -05:00
function Tooltip(element, config) {
2020-12-03 09:18:59 -05:00
var _this;
2020-12-07 10:50:24 -05:00
if (typeof Popper__namespace === 'undefined') {
2020-11-23 08:17:16 -05:00
throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org)');
2020-12-03 09:18:59 -05:00
}
2017-10-29 19:19:14 -04:00
2020-12-03 09:18:59 -05:00
_this = _BaseComponent.call(this, element) || this; // private
2017-10-29 19:19:14 -04:00
2020-12-03 09:18:59 -05:00
_this._isEnabled = true;
_this._timeout = 0;
_this._hoverState = '';
_this._activeTrigger = {};
_this._popper = null; // Protected
2020-12-03 09:18:59 -05:00
_this.config = _this._getConfig(config);
_this.tip = null;
2020-12-03 09:18:59 -05:00
_this._setListeners();
2019-03-01 11:31:34 -05:00
2020-12-03 09:18:59 -05:00
return _this;
2018-11-13 01:41:12 -05:00
} // Getters
2015-08-13 00:12:03 -04:00
2018-11-13 01:41:12 -05:00
var _proto = Tooltip.prototype;
2018-11-13 01:41:12 -05:00
// Public
_proto.enable = function enable() {
this._isEnabled = true;
};
2018-11-13 01:41:12 -05:00
_proto.disable = function disable() {
this._isEnabled = false;
};
2018-11-13 01:41:12 -05:00
_proto.toggleEnabled = function toggleEnabled() {
this._isEnabled = !this._isEnabled;
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto.toggle = function toggle(event) {
if (!this._isEnabled) {
return;
}
2015-08-18 23:28:28 -04:00
2018-11-13 01:41:12 -05:00
if (event) {
var dataKey = this.constructor.DATA_KEY;
2020-09-14 11:12:06 -04:00
var context = Data__default['default'].getData(event.delegateTarget, dataKey);
2015-08-18 23:28:28 -04:00
2018-11-13 01:41:12 -05:00
if (!context) {
2020-09-14 11:12:06 -04:00
context = new this.constructor(event.delegateTarget, this._getDelegateConfig());
Data__default['default'].setData(event.delegateTarget, dataKey, context);
2017-09-30 17:28:03 -04:00
}
2015-05-12 17:28:11 -04:00
2018-11-13 01:41:12 -05:00
context._activeTrigger.click = !context._activeTrigger.click;
2015-05-12 17:28:11 -04:00
2018-11-13 01:41:12 -05:00
if (context._isWithActiveTrigger()) {
context._enter(null, context);
2016-10-09 20:26:51 -04:00
} else {
2018-11-13 01:41:12 -05:00
context._leave(null, context);
}
} else {
2020-03-28 06:29:08 -04:00
if (this.getTipElement().classList.contains(CLASS_NAME_SHOW)) {
2018-11-13 01:41:12 -05:00
this._leave(null, this);
2018-11-13 01:41:12 -05:00
return;
2018-07-23 20:51:14 -04:00
}
2018-11-13 01:41:12 -05:00
this._enter(null, this);
}
};
_proto.dispose = function dispose() {
clearTimeout(this._timeout);
2020-12-03 09:18:59 -05:00
EventHandler__default['default'].off(this._element, this.constructor.EVENT_KEY);
EventHandler__default['default'].off(this._element.closest("." + CLASS_NAME_MODAL), 'hide.bs.modal', this._hideModalHandler);
2018-11-13 01:41:12 -05:00
if (this.tip) {
2019-03-01 11:31:34 -05:00
this.tip.parentNode.removeChild(this.tip);
2018-11-13 01:41:12 -05:00
}
2018-11-13 01:41:12 -05:00
this._isEnabled = null;
this._timeout = null;
this._hoverState = null;
this._activeTrigger = null;
2019-08-27 09:03:21 -04:00
if (this._popper) {
2018-11-13 01:41:12 -05:00
this._popper.destroy();
}
2018-11-13 01:41:12 -05:00
this._popper = null;
this.config = null;
this.tip = null;
2020-12-03 09:18:59 -05:00
_BaseComponent.prototype.dispose.call(this);
2018-11-13 01:41:12 -05:00
};
2018-11-13 01:41:12 -05:00
_proto.show = function show() {
2020-12-03 09:18:59 -05:00
var _this2 = this;
2020-12-03 09:18:59 -05:00
if (this._element.style.display === 'none') {
2018-11-13 01:41:12 -05:00
throw new Error('Please use show on visible elements');
}
2018-11-13 01:41:12 -05:00
if (this.isWithContent() && this._isEnabled) {
2020-12-03 09:18:59 -05:00
var showEvent = EventHandler__default['default'].trigger(this._element, this.constructor.Event.SHOW);
var shadowRoot = findShadowRoot(this._element);
var isInTheDom = shadowRoot === null ? this._element.ownerDocument.documentElement.contains(this._element) : shadowRoot.contains(this._element);
2019-03-01 11:31:34 -05:00
if (showEvent.defaultPrevented || !isInTheDom) {
2018-11-13 01:41:12 -05:00
return;
}
2018-11-13 01:41:12 -05:00
var tip = this.getTipElement();
2019-03-01 11:31:34 -05:00
var tipId = getUID(this.constructor.NAME);
2018-11-13 01:41:12 -05:00
tip.setAttribute('id', tipId);
2020-12-03 09:18:59 -05:00
this._element.setAttribute('aria-describedby', tipId);
2018-11-13 01:41:12 -05:00
this.setContent();
2018-11-13 01:41:12 -05:00
if (this.config.animation) {
2020-03-28 06:29:08 -04:00
tip.classList.add(CLASS_NAME_FADE);
2018-11-13 01:41:12 -05:00
}
2020-12-03 09:18:59 -05:00
var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this._element) : this.config.placement;
2016-11-26 22:17:23 -05:00
2018-11-13 01:41:12 -05:00
var attachment = this._getAttachment(placement);
2017-04-01 22:18:29 -04:00
this._addAttachmentClass(attachment);
2018-12-15 18:13:22 -05:00
var container = this._getContainer();
2020-09-14 11:12:06 -04:00
Data__default['default'].setData(tip, this.constructor.DATA_KEY, this);
2015-08-18 23:28:28 -04:00
2020-12-03 09:18:59 -05:00
if (!this._element.ownerDocument.documentElement.contains(this.tip)) {
2019-03-01 11:31:34 -05:00
container.appendChild(tip);
2018-11-13 01:41:12 -05:00
}
2016-10-09 20:26:51 -04:00
2020-12-03 09:18:59 -05:00
EventHandler__default['default'].trigger(this._element, this.constructor.Event.INSERTED);
2020-12-07 10:50:24 -05:00
this._popper = Popper.createPopper(this._element, tip, this._getPopperConfig(attachment));
2020-12-03 09:18:59 -05:00
tip.classList.add(CLASS_NAME_SHOW);
var customClass = typeof this.config.customClass === 'function' ? this.config.customClass() : this.config.customClass;
if (customClass) {
var _tip$classList;
(_tip$classList = tip.classList).add.apply(_tip$classList, customClass.split(' '));
} // If this is a touch-enabled device we add extra
2018-11-13 01:41:12 -05:00
// empty mouseover listeners to the body's immediate children;
// only needed because of broken event delegation on iOS
// https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
2016-10-09 20:26:51 -04:00
2020-12-03 09:18:59 -05:00
2018-11-13 01:41:12 -05:00
if ('ontouchstart' in document.documentElement) {
2020-03-28 06:29:08 -04:00
var _ref;
(_ref = []).concat.apply(_ref, document.body.children).forEach(function (element) {
2020-09-14 11:12:06 -04:00
EventHandler__default['default'].on(element, 'mouseover', noop());
2019-03-01 11:31:34 -05:00
});
2018-11-13 01:41:12 -05:00
}
2017-04-22 02:58:09 -04:00
2018-11-13 01:41:12 -05:00
var complete = function complete() {
2020-12-03 09:18:59 -05:00
var prevHoverState = _this2._hoverState;
_this2._hoverState = null;
EventHandler__default['default'].trigger(_this2._element, _this2.constructor.Event.SHOWN);
2020-03-28 06:29:08 -04:00
if (prevHoverState === HOVER_STATE_OUT) {
2020-12-03 09:18:59 -05:00
_this2._leave(null, _this2);
}
2018-11-13 01:41:12 -05:00
};
2020-03-28 06:29:08 -04:00
if (this.tip.classList.contains(CLASS_NAME_FADE)) {
2019-03-01 11:31:34 -05:00
var transitionDuration = getTransitionDurationFromElement(this.tip);
2020-09-14 11:12:06 -04:00
EventHandler__default['default'].one(this.tip, TRANSITION_END, complete);
2019-03-01 11:31:34 -05:00
emulateTransitionEnd(this.tip, transitionDuration);
2018-11-13 01:41:12 -05:00
} else {
complete();
}
2018-11-13 01:41:12 -05:00
}
};
_proto.hide = function hide() {
2020-12-03 09:18:59 -05:00
var _this3 = this;
2020-09-29 11:33:00 -04:00
if (!this._popper) {
return;
}
2018-11-13 01:41:12 -05:00
var tip = this.getTipElement();
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
var complete = function complete() {
2020-12-03 09:18:59 -05:00
if (_this3._hoverState !== HOVER_STATE_SHOW && tip.parentNode) {
2018-11-13 01:41:12 -05:00
tip.parentNode.removeChild(tip);
}
2020-12-03 09:18:59 -05:00
_this3._cleanTipClass();
2016-10-09 20:26:51 -04:00
2020-12-03 09:18:59 -05:00
_this3._element.removeAttribute('aria-describedby');
2020-12-03 09:18:59 -05:00
EventHandler__default['default'].trigger(_this3._element, _this3.constructor.Event.HIDDEN);
2017-09-30 17:28:03 -04:00
2020-12-07 10:50:24 -05:00
if (_this3._popper) {
_this3._popper.destroy();
_this3._popper = null;
}
2018-11-13 01:41:12 -05:00
};
2016-10-09 20:26:51 -04:00
2020-12-03 09:18:59 -05:00
var hideEvent = EventHandler__default['default'].trigger(this._element, this.constructor.Event.HIDE);
2016-10-09 20:26:51 -04:00
2019-03-01 11:31:34 -05:00
if (hideEvent.defaultPrevented) {
2018-11-13 01:41:12 -05:00
return;
}
2017-09-30 17:28:03 -04:00
2020-03-28 06:29:08 -04:00
tip.classList.remove(CLASS_NAME_SHOW); // If this is a touch-enabled device we remove the extra
2018-11-13 01:41:12 -05:00
// empty mouseover listeners we added for iOS support
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
if ('ontouchstart' in document.documentElement) {
2020-03-28 06:29:08 -04:00
var _ref2;
(_ref2 = []).concat.apply(_ref2, document.body.children).forEach(function (element) {
2020-09-14 11:12:06 -04:00
return EventHandler__default['default'].off(element, 'mouseover', noop);
2019-03-01 11:31:34 -05:00
});
2018-11-13 01:41:12 -05:00
}
2017-09-30 17:28:03 -04:00
2020-03-28 06:29:08 -04:00
this._activeTrigger[TRIGGER_CLICK] = false;
this._activeTrigger[TRIGGER_FOCUS] = false;
this._activeTrigger[TRIGGER_HOVER] = false;
2017-09-30 17:28:03 -04:00
2020-03-28 06:29:08 -04:00
if (this.tip.classList.contains(CLASS_NAME_FADE)) {
2019-03-01 11:31:34 -05:00
var transitionDuration = getTransitionDurationFromElement(tip);
2020-09-14 11:12:06 -04:00
EventHandler__default['default'].one(tip, TRANSITION_END, complete);
2019-03-01 11:31:34 -05:00
emulateTransitionEnd(tip, transitionDuration);
2018-11-13 01:41:12 -05:00
} else {
complete();
}
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
this._hoverState = '';
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto.update = function update() {
if (this._popper !== null) {
2020-12-07 10:50:24 -05:00
this._popper.update();
2018-11-13 01:41:12 -05:00
}
2019-01-04 11:29:45 -05:00
} // Protected
;
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto.isWithContent = function isWithContent() {
return Boolean(this.getTitle());
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto.getTipElement = function getTipElement() {
2019-03-01 11:31:34 -05:00
if (this.tip) {
return this.tip;
}
var element = document.createElement('div');
element.innerHTML = this.config.template;
this.tip = element.children[0];
2018-11-13 01:41:12 -05:00
return this.tip;
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto.setContent = function setContent() {
var tip = this.getTipElement();
2020-09-14 11:12:06 -04:00
this.setElementContent(SelectorEngine__default['default'].findOne(SELECTOR_TOOLTIP_INNER, tip), this.getTitle());
2020-05-13 14:53:43 -04:00
tip.classList.remove(CLASS_NAME_FADE, CLASS_NAME_SHOW);
2018-11-13 01:41:12 -05:00
};
2017-09-30 17:28:03 -04:00
2019-03-01 11:31:34 -05:00
_proto.setElementContent = function setElementContent(element, content) {
if (element === null) {
return;
}
if (typeof content === 'object' && isElement(content)) {
2019-03-01 11:31:34 -05:00
if (content.jquery) {
content = content[0];
} // content is a DOM node or a jQuery
2019-02-13 11:01:40 -05:00
if (this.config.html) {
2019-03-01 11:31:34 -05:00
if (content.parentNode !== element) {
element.innerHTML = '';
element.appendChild(content);
2015-08-29 17:03:55 -04:00
}
} else {
2020-05-13 14:53:43 -04:00
element.textContent = content.textContent;
2015-08-29 17:03:55 -04:00
}
2019-02-13 11:01:40 -05:00
return;
}
if (this.config.html) {
if (this.config.sanitize) {
2020-09-14 11:12:06 -04:00
content = sanitizeHtml(content, this.config.allowList, this.config.sanitizeFn);
2019-02-13 11:01:40 -05:00
}
2019-03-01 11:31:34 -05:00
element.innerHTML = content;
2018-11-13 01:41:12 -05:00
} else {
2020-05-13 14:53:43 -04:00
element.textContent = content;
2018-11-13 01:41:12 -05:00
}
};
2018-11-13 01:41:12 -05:00
_proto.getTitle = function getTitle() {
2020-12-03 09:18:59 -05:00
var title = this._element.getAttribute('data-bs-original-title');
2018-11-13 01:41:12 -05:00
if (!title) {
2020-12-03 09:18:59 -05:00
title = typeof this.config.title === 'function' ? this.config.title.call(this._element) : this.config.title;
2018-11-13 01:41:12 -05:00
}
2018-11-13 01:41:12 -05:00
return title;
2020-12-03 08:08:31 -05:00
};
_proto.updateAttachment = function updateAttachment(attachment) {
if (attachment === 'right') {
return 'end';
}
if (attachment === 'left') {
return 'start';
}
return attachment;
2019-01-04 11:29:45 -05:00
} // Private
;
2016-10-09 20:26:51 -04:00
2019-08-27 09:03:21 -04:00
_proto._getPopperConfig = function _getPopperConfig(attachment) {
2020-12-03 09:18:59 -05:00
var _this4 = this;
2019-08-27 09:03:21 -04:00
2020-12-07 10:50:24 -05:00
var flipModifier = {
name: 'flip',
options: {
altBoundary: true
}
};
if (this.config.fallbackPlacements) {
flipModifier.options.fallbackPlacements = this.config.fallbackPlacements;
}
2019-08-27 09:03:21 -04:00
var defaultBsConfig = {
placement: attachment,
2020-12-07 10:50:24 -05:00
modifiers: [flipModifier, {
name: 'preventOverflow',
options: {
rootBoundary: this.config.boundary
}
}, {
name: 'arrow',
options: {
2019-08-27 09:03:21 -04:00
element: "." + this.constructor.NAME + "-arrow"
}
2020-12-07 10:50:24 -05:00
}, {
name: 'onChange',
enabled: true,
phase: 'afterWrite',
fn: function fn(data) {
return _this4._handlePopperPlacementChange(data);
}
}],
onFirstUpdate: function onFirstUpdate(data) {
if (data.options.placement !== data.placement) {
2020-12-03 09:18:59 -05:00
_this4._handlePopperPlacementChange(data);
2019-08-27 09:03:21 -04:00
}
}
};
2020-09-14 11:12:06 -04:00
return _extends({}, defaultBsConfig, this.config.popperConfig);
2019-08-27 09:03:21 -04:00
};
_proto._addAttachmentClass = function _addAttachmentClass(attachment) {
2020-12-03 08:08:31 -05:00
this.getTipElement().classList.add(CLASS_PREFIX + "-" + this.updateAttachment(attachment));
};
2018-12-15 18:13:22 -05:00
_proto._getContainer = function _getContainer() {
if (this.config.container === false) {
return document.body;
}
2019-03-01 11:31:34 -05:00
if (isElement(this.config.container)) {
return this.config.container;
2018-12-15 18:13:22 -05:00
}
2020-09-14 11:12:06 -04:00
return SelectorEngine__default['default'].findOne(this.config.container);
2018-12-15 18:13:22 -05:00
};
2018-11-13 01:41:12 -05:00
_proto._getAttachment = function _getAttachment(placement) {
return AttachmentMap[placement.toUpperCase()];
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto._setListeners = function _setListeners() {
2020-12-07 10:50:24 -05:00
var _this5 = this;
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
var triggers = this.config.trigger.split(' ');
triggers.forEach(function (trigger) {
if (trigger === 'click') {
2020-12-07 10:50:24 -05:00
EventHandler__default['default'].on(_this5._element, _this5.constructor.Event.CLICK, _this5.config.selector, function (event) {
return _this5.toggle(event);
2017-09-30 17:28:03 -04:00
});
2020-03-28 06:29:08 -04:00
} else if (trigger !== TRIGGER_MANUAL) {
2020-12-07 10:50:24 -05:00
var eventIn = trigger === TRIGGER_HOVER ? _this5.constructor.Event.MOUSEENTER : _this5.constructor.Event.FOCUSIN;
var eventOut = trigger === TRIGGER_HOVER ? _this5.constructor.Event.MOUSELEAVE : _this5.constructor.Event.FOCUSOUT;
EventHandler__default['default'].on(_this5._element, eventIn, _this5.config.selector, function (event) {
return _this5._enter(event);
2019-03-01 11:31:34 -05:00
});
2020-12-07 10:50:24 -05:00
EventHandler__default['default'].on(_this5._element, eventOut, _this5.config.selector, function (event) {
return _this5._leave(event);
2017-09-06 00:05:12 -04:00
});
}
2018-11-13 01:41:12 -05:00
});
2019-07-12 17:56:26 -04:00
this._hideModalHandler = function () {
2020-12-07 10:50:24 -05:00
if (_this5._element) {
_this5.hide();
2018-11-13 01:41:12 -05:00
}
2019-07-12 17:56:26 -04:00
};
2020-12-03 09:18:59 -05:00
EventHandler__default['default'].on(this._element.closest("." + CLASS_NAME_MODAL), 'hide.bs.modal', this._hideModalHandler);
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
if (this.config.selector) {
2020-09-14 11:12:06 -04:00
this.config = _extends({}, this.config, {
2018-11-13 01:41:12 -05:00
trigger: 'manual',
selector: ''
});
} else {
this._fixTitle();
}
};
2018-11-13 01:41:12 -05:00
_proto._fixTitle = function _fixTitle() {
2020-12-03 09:18:59 -05:00
var title = this._element.getAttribute('title');
var originalTitleType = typeof this._element.getAttribute('data-bs-original-title');
2020-11-23 08:17:16 -05:00
if (title || originalTitleType !== 'string') {
2020-12-03 09:18:59 -05:00
this._element.setAttribute('data-bs-original-title', title || '');
if (title && !this._element.getAttribute('aria-label') && !this._element.textContent) {
this._element.setAttribute('aria-label', title);
}
this._element.setAttribute('title', '');
2018-11-13 01:41:12 -05:00
}
};
2018-11-13 01:41:12 -05:00
_proto._enter = function _enter(event, context) {
var dataKey = this.constructor.DATA_KEY;
2020-09-14 11:12:06 -04:00
context = context || Data__default['default'].getData(event.delegateTarget, dataKey);
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (!context) {
2020-09-14 11:12:06 -04:00
context = new this.constructor(event.delegateTarget, this._getDelegateConfig());
Data__default['default'].setData(event.delegateTarget, dataKey, context);
2018-11-13 01:41:12 -05:00
}
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (event) {
2020-03-28 06:29:08 -04:00
context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;
2018-11-13 01:41:12 -05:00
}
2020-03-28 06:29:08 -04:00
if (context.getTipElement().classList.contains(CLASS_NAME_SHOW) || context._hoverState === HOVER_STATE_SHOW) {
context._hoverState = HOVER_STATE_SHOW;
2018-11-13 01:41:12 -05:00
return;
}
clearTimeout(context._timeout);
2020-03-28 06:29:08 -04:00
context._hoverState = HOVER_STATE_SHOW;
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (!context.config.delay || !context.config.delay.show) {
context.show();
return;
}
context._timeout = setTimeout(function () {
2020-03-28 06:29:08 -04:00
if (context._hoverState === HOVER_STATE_SHOW) {
context.show();
}
2018-11-13 01:41:12 -05:00
}, context.config.delay.show);
};
2018-11-13 01:41:12 -05:00
_proto._leave = function _leave(event, context) {
var dataKey = this.constructor.DATA_KEY;
2020-09-14 11:12:06 -04:00
context = context || Data__default['default'].getData(event.delegateTarget, dataKey);
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
if (!context) {
2020-09-14 11:12:06 -04:00
context = new this.constructor(event.delegateTarget, this._getDelegateConfig());
Data__default['default'].setData(event.delegateTarget, dataKey, context);
2018-11-13 01:41:12 -05:00
}
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (event) {
2020-03-28 06:29:08 -04:00
context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] = false;
2018-11-13 01:41:12 -05:00
}
2018-11-13 01:41:12 -05:00
if (context._isWithActiveTrigger()) {
return;
}
2018-11-13 01:41:12 -05:00
clearTimeout(context._timeout);
2020-03-28 06:29:08 -04:00
context._hoverState = HOVER_STATE_OUT;
2018-11-13 01:41:12 -05:00
if (!context.config.delay || !context.config.delay.hide) {
context.hide();
return;
}
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
context._timeout = setTimeout(function () {
2020-03-28 06:29:08 -04:00
if (context._hoverState === HOVER_STATE_OUT) {
2017-09-30 17:28:03 -04:00
context.hide();
}
2018-11-13 01:41:12 -05:00
}, context.config.delay.hide);
};
2018-11-13 01:41:12 -05:00
_proto._isWithActiveTrigger = function _isWithActiveTrigger() {
for (var trigger in this._activeTrigger) {
if (this._activeTrigger[trigger]) {
return true;
2017-09-30 17:28:03 -04:00
}
2018-11-13 01:41:12 -05:00
}
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
return false;
};
2015-05-13 17:46:50 -04:00
2018-11-13 01:41:12 -05:00
_proto._getConfig = function _getConfig(config) {
2020-12-03 09:18:59 -05:00
var dataAttributes = Manipulator__default['default'].getDataAttributes(this._element);
2019-02-13 11:01:40 -05:00
Object.keys(dataAttributes).forEach(function (dataAttr) {
2020-11-23 08:17:16 -05:00
if (DISALLOWED_ATTRIBUTES.has(dataAttr)) {
2019-02-13 11:01:40 -05:00
delete dataAttributes[dataAttr];
}
});
2019-03-01 11:31:34 -05:00
if (config && typeof config.container === 'object' && config.container.jquery) {
config.container = config.container[0];
}
2020-09-14 11:12:06 -04:00
config = _extends({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {});
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (typeof config.delay === 'number') {
config.delay = {
show: config.delay,
hide: config.delay
};
}
2017-04-01 22:18:29 -04:00
2018-11-13 01:41:12 -05:00
if (typeof config.title === 'number') {
config.title = config.title.toString();
}
2017-04-01 22:18:29 -04:00
2018-11-13 01:41:12 -05:00
if (typeof config.content === 'number') {
config.content = config.content.toString();
}
2016-10-09 20:26:51 -04:00
2019-03-01 11:31:34 -05:00
typeCheckConfig(NAME, config, this.constructor.DefaultType);
2019-02-13 11:01:40 -05:00
if (config.sanitize) {
2020-09-14 11:12:06 -04:00
config.template = sanitizeHtml(config.template, config.allowList, config.sanitizeFn);
2019-02-13 11:01:40 -05:00
}
2018-11-13 01:41:12 -05:00
return config;
};
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
_proto._getDelegateConfig = function _getDelegateConfig() {
var config = {};
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (this.config) {
for (var key in this.config) {
if (this.constructor.Default[key] !== this.config[key]) {
config[key] = this.config[key];
}
}
2018-11-13 01:41:12 -05:00
}
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
return config;
};
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
_proto._cleanTipClass = function _cleanTipClass() {
2019-03-01 11:31:34 -05:00
var tip = this.getTipElement();
var tabClass = tip.getAttribute('class').match(BSCLS_PREFIX_REGEX);
2017-09-30 17:28:03 -04:00
2020-03-28 06:29:08 -04:00
if (tabClass !== null && tabClass.length > 0) {
2019-03-01 11:31:34 -05:00
tabClass.map(function (token) {
return token.trim();
}).forEach(function (tClass) {
return tip.classList.remove(tClass);
});
2018-11-13 01:41:12 -05:00
}
};
2018-07-12 00:42:55 -04:00
2018-11-13 01:41:12 -05:00
_proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) {
2020-12-07 10:50:24 -05:00
var state = popperData.state;
2017-09-30 17:28:03 -04:00
2020-12-07 10:50:24 -05:00
if (!state) {
2018-11-13 01:41:12 -05:00
return;
}
2017-09-30 17:28:03 -04:00
2020-12-07 10:50:24 -05:00
this.tip = state.elements.popper;
this._cleanTipClass();
this._addAttachmentClass(this._getAttachment(state.placement));
2019-01-04 11:29:45 -05:00
} // Static
;
2017-09-30 17:28:03 -04:00
2019-08-27 09:03:21 -04:00
Tooltip.jQueryInterface = function jQueryInterface(config) {
2018-11-13 01:41:12 -05:00
return this.each(function () {
2020-09-14 11:12:06 -04:00
var data = Data__default['default'].getData(this, DATA_KEY);
2017-09-30 17:28:03 -04:00
2018-11-13 01:41:12 -05:00
var _config = typeof config === 'object' && config;
2017-09-06 00:05:12 -04:00
2018-11-13 01:41:12 -05:00
if (!data && /dispose|hide/.test(config)) {
return;
}
2018-07-23 20:51:14 -04:00
2018-11-13 01:41:12 -05:00
if (!data) {
data = new Tooltip(this, _config);
}
2016-10-09 20:26:51 -04:00
2018-11-13 01:41:12 -05:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError("No method named \"" + config + "\"");
2017-09-06 00:05:12 -04:00
}
2018-11-13 01:41:12 -05:00
data[config]();
2018-07-23 20:51:14 -04:00
}
2018-11-13 01:41:12 -05:00
});
};
2016-10-09 20:26:51 -04:00
2020-12-03 09:18:59 -05:00
_createClass$1(Tooltip, null, [{
2018-11-13 01:41:12 -05:00
key: "Default",
get: function get() {
return Default;
}
}, {
key: "NAME",
get: function get() {
return NAME;
}
}, {
key: "DATA_KEY",
get: function get() {
return DATA_KEY;
}
}, {
key: "Event",
get: function get() {
2020-03-28 06:29:08 -04:00
return Event$1;
2018-11-13 01:41:12 -05:00
}
}, {
key: "EVENT_KEY",
get: function get() {
return EVENT_KEY;
}
}, {
key: "DefaultType",
get: function get() {
return DefaultType;
}
}]);
2018-11-13 01:41:12 -05:00
return Tooltip;
2020-12-03 09:18:59 -05:00
}(BaseComponent);
2018-11-13 01:41:12 -05:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2020-11-11 12:07:37 -05:00
* add .Tooltip to jQuery only if jQuery is present
2018-11-13 01:41:12 -05:00
*/
2020-11-11 12:07:37 -05:00
onDOMContentLoaded(function () {
var $ = getjQuery();
/* istanbul ignore if */
2017-09-30 17:28:03 -04:00
2020-11-11 12:07:37 -05:00
if ($) {
var JQUERY_NO_CONFLICT = $.fn[NAME];
$.fn[NAME] = Tooltip.jQueryInterface;
$.fn[NAME].Constructor = Tooltip;
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tooltip.jQueryInterface;
};
}
});
return Tooltip;
2018-07-23 20:51:14 -04:00
2019-11-08 03:11:23 -05:00
})));
2018-07-23 20:51:14 -04:00
//# sourceMappingURL=tooltip.js.map