2018-11-13 07:41:12 +01:00
|
|
|
/*!
|
2021-02-10 17:14:51 +01:00
|
|
|
* Bootstrap button.js v5.0.0-beta2 (https://getbootstrap.com/)
|
|
|
|
* Copyright 2011-2021 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) {
|
2021-02-10 17:14:51 +01:00
|
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./dom/data.js'), require('./dom/event-handler.js'), require('./base-component.js')) :
|
|
|
|
typeof define === 'function' && define.amd ? define(['./dom/data', './dom/event-handler', './base-component'], factory) :
|
|
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Button = factory(global.Data, global.EventHandler, global.Base));
|
|
|
|
}(this, (function (Data, EventHandler, BaseComponent) { 'use strict';
|
2018-07-24 02:51:14 +02:00
|
|
|
|
2020-09-14 17:12:06 +02:00
|
|
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
|
|
|
|
|
|
var Data__default = /*#__PURE__*/_interopDefaultLegacy(Data);
|
|
|
|
var EventHandler__default = /*#__PURE__*/_interopDefaultLegacy(EventHandler);
|
2021-02-10 17:14:51 +01:00
|
|
|
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _inheritsLoose(subClass, superClass) {
|
|
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
|
|
subClass.prototype.constructor = subClass;
|
2021-02-11 04:29:59 +01:00
|
|
|
subClass.__proto__ = superClass;
|
2021-02-10 17:14:51 +01:00
|
|
|
}
|
2018-07-24 02:51:14 +02:00
|
|
|
|
2019-03-01 17:31:34 +01:00
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2021-02-10 17:14:51 +01:00
|
|
|
* Bootstrap (v5.0.0-beta2): util/index.js
|
2020-06-16 20:50:01 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
2019-03-01 17:31:34 +01:00
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
2019-08-27 15:03:21 +02:00
|
|
|
|
|
|
|
var getjQuery = function getjQuery() {
|
|
|
|
var _window = window,
|
|
|
|
jQuery = _window.jQuery;
|
|
|
|
|
2020-11-23 14:17:16 +01:00
|
|
|
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
|
2019-08-27 15:03:21 +02:00
|
|
|
return jQuery;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
};
|
2019-03-01 17:31:34 +01:00
|
|
|
|
2020-11-11 18:07:37 +01:00
|
|
|
var onDOMContentLoaded = function onDOMContentLoaded(callback) {
|
|
|
|
if (document.readyState === 'loading') {
|
|
|
|
document.addEventListener('DOMContentLoaded', callback);
|
|
|
|
} else {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
document.documentElement.dir === 'rtl';
|
2020-12-03 15:18:59 +01:00
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
var defineJQueryPlugin = function defineJQueryPlugin(name, plugin) {
|
|
|
|
onDOMContentLoaded(function () {
|
|
|
|
var $ = getjQuery();
|
|
|
|
/* istanbul ignore if */
|
2020-12-03 15:18:59 +01:00
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
if ($) {
|
|
|
|
var JQUERY_NO_CONFLICT = $.fn[name];
|
|
|
|
$.fn[name] = plugin.jQueryInterface;
|
|
|
|
$.fn[name].Constructor = plugin;
|
2020-12-03 15:18:59 +01:00
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
$.fn[name].noConflict = function () {
|
|
|
|
$.fn[name] = JQUERY_NO_CONFLICT;
|
|
|
|
return plugin.jQueryInterface;
|
|
|
|
};
|
2020-12-03 15:18:59 +01:00
|
|
|
}
|
2021-02-10 17:14:51 +01:00
|
|
|
});
|
|
|
|
};
|
2020-12-03 15:18:59 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
var NAME = 'button';
|
2018-11-13 07:41:12 +01:00
|
|
|
var DATA_KEY = 'bs.button';
|
|
|
|
var EVENT_KEY = "." + DATA_KEY;
|
|
|
|
var DATA_API_KEY = '.data-api';
|
2020-03-28 11:29:08 +01:00
|
|
|
var CLASS_NAME_ACTIVE = 'active';
|
2020-11-23 14:17:16 +01:00
|
|
|
var SELECTOR_DATA_TOGGLE = '[data-bs-toggle="button"]';
|
2020-03-28 11:29:08 +01:00
|
|
|
var EVENT_CLICK_DATA_API = "click" + EVENT_KEY + DATA_API_KEY;
|
2019-10-08 08:39:10 +02:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-08 02:07:38 +02:00
|
|
|
|
2020-12-03 15:18:59 +01:00
|
|
|
var Button = /*#__PURE__*/function (_BaseComponent) {
|
|
|
|
_inheritsLoose(Button, _BaseComponent);
|
2015-08-13 06:12:03 +02:00
|
|
|
|
2020-12-03 15:18:59 +01:00
|
|
|
function Button() {
|
|
|
|
return _BaseComponent.apply(this, arguments) || this;
|
|
|
|
}
|
2017-09-06 06:05:12 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
var _proto = Button.prototype;
|
2017-09-06 06:05:12 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
// Public
|
|
|
|
_proto.toggle = function toggle() {
|
2020-06-16 20:50:01 +02:00
|
|
|
// Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method
|
|
|
|
this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE));
|
2019-01-04 17:29:45 +01:00
|
|
|
} // Static
|
|
|
|
;
|
2016-10-10 02:26:51 +02:00
|
|
|
|
2019-08-27 15:03:21 +02:00
|
|
|
Button.jQueryInterface = function jQueryInterface(config) {
|
2018-11-13 07:41:12 +01:00
|
|
|
return this.each(function () {
|
2020-09-14 17:12:06 +02:00
|
|
|
var data = Data__default['default'].getData(this, DATA_KEY);
|
2016-10-10 02:26:51 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
if (!data) {
|
|
|
|
data = new Button(this);
|
|
|
|
}
|
2017-09-30 23:28:03 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
if (config === 'toggle') {
|
|
|
|
data[config]();
|
2017-09-30 23:28:03 +02:00
|
|
|
}
|
2018-11-13 07:41:12 +01:00
|
|
|
});
|
|
|
|
};
|
2017-09-30 23:28:03 +02:00
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
_createClass(Button, null, [{
|
2020-12-03 15:18:59 +01:00
|
|
|
key: "DATA_KEY",
|
2021-02-11 04:29:59 +01:00
|
|
|
// Getters
|
|
|
|
get: function get() {
|
2020-12-03 15:18:59 +01:00
|
|
|
return DATA_KEY;
|
2018-11-13 07:41:12 +01:00
|
|
|
}
|
|
|
|
}]);
|
2015-05-08 02:07:38 +02:00
|
|
|
|
2018-11-13 07:41:12 +01:00
|
|
|
return Button;
|
2021-02-10 17:14:51 +01:00
|
|
|
}(BaseComponent__default['default']);
|
2018-11-13 07:41:12 +01:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Data Api implementation
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-08 02:07:38 +02:00
|
|
|
|
2017-09-30 23:28:03 +02:00
|
|
|
|
2020-09-14 17:12:06 +02:00
|
|
|
EventHandler__default['default'].on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
|
2018-11-13 07:41:12 +01:00
|
|
|
event.preventDefault();
|
2020-06-16 20:50:01 +02:00
|
|
|
var button = event.target.closest(SELECTOR_DATA_TOGGLE);
|
2020-09-14 17:12:06 +02:00
|
|
|
var data = Data__default['default'].getData(button, DATA_KEY);
|
2019-03-01 17:31:34 +01:00
|
|
|
|
|
|
|
if (!data) {
|
|
|
|
data = new Button(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
data.toggle();
|
|
|
|
});
|
2018-11-13 07:41:12 +01:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* jQuery
|
|
|
|
* ------------------------------------------------------------------------
|
2020-11-11 18:07:37 +01:00
|
|
|
* add .Button to jQuery only if jQuery is present
|
2018-11-13 07:41:12 +01:00
|
|
|
*/
|
2015-05-08 02:07:38 +02:00
|
|
|
|
2021-02-10 17:14:51 +01:00
|
|
|
defineJQueryPlugin(NAME, Button);
|
2015-05-08 02:07:38 +02:00
|
|
|
|
|
|
|
return Button;
|
2018-07-24 02:51:14 +02:00
|
|
|
|
2019-11-08 09:11:23 +01:00
|
|
|
})));
|
2018-07-24 02:51:14 +02:00
|
|
|
//# sourceMappingURL=button.js.map
|