Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/dist/popover.js')
-rw-r--r--js/dist/popover.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/js/dist/popover.js b/js/dist/popover.js
index 09e1b4ee50..a1d6e7a649 100644
--- a/js/dist/popover.js
+++ b/js/dist/popover.js
@@ -1,5 +1,5 @@
/*!
- * Bootstrap popover.js v5.1.1 (https://getbootstrap.com/)
+ * Bootstrap popover.js v5.1.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
@@ -7,15 +7,15 @@
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./tooltip.js')) :
typeof define === 'function' && define.amd ? define(['./tooltip'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.Tooltip));
-}(this, (function (Tooltip) { 'use strict';
+})(this, (function (Tooltip) { 'use strict';
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
+ const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
- var Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
+ const Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.1.1): util/index.js
+ * Bootstrap (v5.1.2): util/index.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -70,7 +70,7 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.1.1): popover.js
+ * Bootstrap (v5.1.2): popover.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -84,14 +84,14 @@
const DATA_KEY = 'bs.popover';
const EVENT_KEY = `.${DATA_KEY}`;
const CLASS_PREFIX = 'bs-popover';
- const Default = { ...Tooltip__default['default'].Default,
+ const Default = { ...Tooltip__default.default.Default,
placement: 'right',
offset: [0, 8],
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip">' + '<div class="popover-arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div>' + '</div>'
};
- const DefaultType = { ...Tooltip__default['default'].DefaultType,
+ const DefaultType = { ...Tooltip__default.default.DefaultType,
content: '(string|element|function)'
};
const Event = {
@@ -114,7 +114,7 @@
* ------------------------------------------------------------------------
*/
- class Popover extends Tooltip__default['default'] {
+ class Popover extends Tooltip__default.default {
// Getters
static get Default() {
return Default;
@@ -180,5 +180,5 @@
return Popover;
-})));
+}));
//# sourceMappingURL=popover.js.map