2018-11-13 07:41:12 +01:00
|
|
|
/*!
|
2024-02-20 16:14:29 +01:00
|
|
|
* Bootstrap popover.js v5.3.3 (https://getbootstrap.com/)
|
|
|
|
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
2020-06-16 20:50:01 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
2018-11-13 07:41:12 +01:00
|
|
|
*/
|
2018-07-24 02:51:14 +02:00
|
|
|
(function (global, factory) {
|
2023-04-03 09:26:50 +02:00
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./tooltip.js'), require('./util/index.js')) :
|
|
|
|
typeof define === 'function' && define.amd ? define(['./tooltip', './util/index'], factory) :
|
|
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.Tooltip, global.Index));
|
|
|
|
})(this, (function (Tooltip, index_js) { 'use strict';
|
2018-07-24 02:51:14 +02:00
|
|
|
|
2021-08-04 17:41:51 +02:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2023-03-24 15:30:16 +01:00
|
|
|
* Bootstrap popover.js
|
2021-03-23 17:26:54 +01:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
2022-12-24 17:37:22 +01:00
|
|
|
|
2023-05-30 17:15:55 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
|
2021-03-23 17:26:54 +01:00
|
|
|
const NAME = 'popover';
|
2022-05-13 08:07:23 +02:00
|
|
|
const SELECTOR_TITLE = '.popover-header';
|
|
|
|
const SELECTOR_CONTENT = '.popover-body';
|
2022-12-24 17:37:22 +01:00
|
|
|
const Default = {
|
|
|
|
...Tooltip.Default,
|
2018-11-13 07:41:12 +01:00
|
|
|
content: '',
|
2022-07-19 17:43:58 +02:00
|
|
|
offset: [0, 8],
|
|
|
|
placement: 'right',
|
|
|
|
template: '<div class="popover" role="tooltip">' + '<div class="popover-arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div>' + '</div>',
|
|
|
|
trigger: 'click'
|
2021-03-23 17:26:54 +01:00
|
|
|
};
|
2022-12-24 17:37:22 +01:00
|
|
|
const DefaultType = {
|
|
|
|
...Tooltip.DefaultType,
|
2022-05-13 08:07:23 +02:00
|
|
|
content: '(null|string|element|function)'
|
2021-03-23 17:26:54 +01:00
|
|
|
};
|
2022-12-24 17:37:22 +01:00
|
|
|
|
2019-10-08 08:39:10 +02:00
|
|
|
/**
|
2022-05-13 08:07:23 +02:00
|
|
|
* Class definition
|
2019-10-08 08:39:10 +02:00
|
|
|
*/
|
2015-05-12 23:28:11 +02:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
class Popover extends Tooltip {
|
2021-03-23 17:26:54 +01:00
|
|
|
// Getters
|
|
|
|
static get Default() {
|
|
|
|
return Default;
|
|
|
|
}
|
|
|
|
static get DefaultType() {
|
|
|
|
return DefaultType;
|
|
|
|
}
|
2022-05-13 08:07:23 +02:00
|
|
|
static get NAME() {
|
|
|
|
return NAME;
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2022-05-13 08:07:23 +02:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Overrides
|
2022-05-13 08:07:23 +02:00
|
|
|
_isWithContent() {
|
|
|
|
return this._getTitle() || this._getContent();
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2017-09-30 23:28:03 +02:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Private
|
2022-05-13 08:07:23 +02:00
|
|
|
_getContentForTemplate() {
|
|
|
|
return {
|
|
|
|
[SELECTOR_TITLE]: this._getTitle(),
|
|
|
|
[SELECTOR_CONTENT]: this._getContent()
|
|
|
|
};
|
2021-03-23 17:26:54 +01:00
|
|
|
}
|
2022-05-13 08:07:23 +02:00
|
|
|
_getContent() {
|
|
|
|
return this._resolvePossibleFunction(this._config.content);
|
2022-12-24 17:37:22 +01:00
|
|
|
}
|
2021-03-23 17:26:54 +01:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
// Static
|
2021-03-23 17:26:54 +01:00
|
|
|
static jQueryInterface(config) {
|
2018-11-13 07:41:12 +01:00
|
|
|
return this.each(function () {
|
2021-06-22 20:29:16 +02:00
|
|
|
const data = Popover.getOrCreateInstance(this, config);
|
2022-05-13 08:07:23 +02:00
|
|
|
if (typeof config !== 'string') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (typeof data[config] === 'undefined') {
|
|
|
|
throw new TypeError(`No method named "${config}"`);
|
2018-07-24 02:51:14 +02:00
|
|
|
}
|
2022-05-13 08:07:23 +02:00
|
|
|
data[config]();
|
2018-11-13 07:41:12 +01:00
|
|
|
});
|
2021-03-23 17:26:54 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-24 17:37:22 +01:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
/**
|
|
|
|
* jQuery
|
|
|
|
*/
|
2015-05-12 23:28:11 +02:00
|
|
|
|
2022-12-24 17:37:22 +01:00
|
|
|
index_js.defineJQueryPlugin(Popover);
|
2015-05-12 23:28:11 +02:00
|
|
|
|
|
|
|
return Popover;
|
2018-07-24 02:51:14 +02:00
|
|
|
|
2021-10-05 17:50:18 +02:00
|
|
|
}));
|
2018-07-24 02:51:14 +02:00
|
|
|
//# sourceMappingURL=popover.js.map
|