bootstrap 4.6.0 → 5.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (184) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +61 -0
  3. data/Gemfile +1 -0
  4. data/README.md +33 -6
  5. data/Rakefile +10 -1
  6. data/assets/javascripts/bootstrap/alert.js +53 -155
  7. data/assets/javascripts/bootstrap/base-component.js +83 -0
  8. data/assets/javascripts/bootstrap/button.js +43 -198
  9. data/assets/javascripts/bootstrap/carousel.js +285 -550
  10. data/assets/javascripts/bootstrap/collapse.js +169 -323
  11. data/assets/javascripts/bootstrap/dom/data.js +62 -0
  12. data/assets/javascripts/bootstrap/dom/event-handler.js +236 -0
  13. data/assets/javascripts/bootstrap/dom/manipulator.js +71 -0
  14. data/assets/javascripts/bootstrap/dom/selector-engine.js +103 -0
  15. data/assets/javascripts/bootstrap/dropdown.js +300 -467
  16. data/assets/javascripts/bootstrap/modal.js +226 -575
  17. data/assets/javascripts/bootstrap/offcanvas.js +245 -0
  18. data/assets/javascripts/bootstrap/popover.js +61 -205
  19. data/assets/javascripts/bootstrap/scrollspy.js +216 -287
  20. data/assets/javascripts/bootstrap/tab.js +226 -203
  21. data/assets/javascripts/bootstrap/toast.js +136 -209
  22. data/assets/javascripts/bootstrap/tooltip.js +411 -757
  23. data/assets/javascripts/bootstrap/util/backdrop.js +139 -0
  24. data/assets/javascripts/bootstrap/util/component-functions.js +41 -0
  25. data/assets/javascripts/bootstrap/util/config.js +67 -0
  26. data/assets/javascripts/bootstrap/util/focustrap.js +113 -0
  27. data/assets/javascripts/bootstrap/util/index.js +281 -0
  28. data/assets/javascripts/bootstrap/util/sanitizer.js +110 -0
  29. data/assets/javascripts/bootstrap/util/scrollbar.js +112 -0
  30. data/assets/javascripts/bootstrap/util/swipe.js +134 -0
  31. data/assets/javascripts/bootstrap/util/template-factory.js +150 -0
  32. data/assets/javascripts/bootstrap-global-this-define.js +6 -0
  33. data/assets/javascripts/bootstrap-global-this-undefine.js +2 -0
  34. data/assets/javascripts/bootstrap-sprockets.js +23 -7
  35. data/assets/javascripts/bootstrap.js +3649 -3587
  36. data/assets/javascripts/bootstrap.min.js +3 -3
  37. data/assets/stylesheets/_bootstrap-grid.scss +53 -21
  38. data/assets/stylesheets/_bootstrap-reboot.scss +5 -7
  39. data/assets/stylesheets/_bootstrap-utilities.scss +19 -0
  40. data/assets/stylesheets/_bootstrap.scss +21 -13
  41. data/assets/stylesheets/bootstrap/_accordion.scss +158 -0
  42. data/assets/stylesheets/bootstrap/_alert.scss +32 -16
  43. data/assets/stylesheets/bootstrap/_badge.scss +15 -31
  44. data/assets/stylesheets/bootstrap/_breadcrumb.scss +22 -24
  45. data/assets/stylesheets/bootstrap/_button-group.scss +27 -48
  46. data/assets/stylesheets/bootstrap/_buttons.scss +136 -71
  47. data/assets/stylesheets/bootstrap/_card.scss +66 -113
  48. data/assets/stylesheets/bootstrap/_carousel.scss +83 -36
  49. data/assets/stylesheets/bootstrap/_close.scss +51 -28
  50. data/assets/stylesheets/bootstrap/_containers.scss +41 -0
  51. data/assets/stylesheets/bootstrap/_dropdown.scss +129 -71
  52. data/assets/stylesheets/bootstrap/_forms.scss +9 -347
  53. data/assets/stylesheets/bootstrap/_functions.scss +181 -23
  54. data/assets/stylesheets/bootstrap/_grid.scss +18 -52
  55. data/assets/stylesheets/bootstrap/_helpers.scss +12 -0
  56. data/assets/stylesheets/bootstrap/_images.scss +1 -1
  57. data/assets/stylesheets/bootstrap/_list-group.scss +77 -34
  58. data/assets/stylesheets/bootstrap/_maps.scss +174 -0
  59. data/assets/stylesheets/bootstrap/_mixins.scss +10 -15
  60. data/assets/stylesheets/bootstrap/_modal.scss +107 -110
  61. data/assets/stylesheets/bootstrap/_nav.scss +102 -25
  62. data/assets/stylesheets/bootstrap/_navbar.scss +129 -172
  63. data/assets/stylesheets/bootstrap/_offcanvas.scss +146 -0
  64. data/assets/stylesheets/bootstrap/_pagination.scss +72 -37
  65. data/assets/stylesheets/bootstrap/_placeholders.scss +51 -0
  66. data/assets/stylesheets/bootstrap/_popover.scss +99 -73
  67. data/assets/stylesheets/bootstrap/_progress.scss +35 -14
  68. data/assets/stylesheets/bootstrap/_reboot.scss +319 -192
  69. data/assets/stylesheets/bootstrap/_root.scss +177 -9
  70. data/assets/stylesheets/bootstrap/_spinners.scss +44 -24
  71. data/assets/stylesheets/bootstrap/_tables.scss +101 -115
  72. data/assets/stylesheets/bootstrap/_toasts.scss +54 -27
  73. data/assets/stylesheets/bootstrap/_tooltip.scss +67 -63
  74. data/assets/stylesheets/bootstrap/_transitions.scss +8 -1
  75. data/assets/stylesheets/bootstrap/_type.scss +40 -59
  76. data/assets/stylesheets/bootstrap/_utilities.scss +806 -18
  77. data/assets/stylesheets/bootstrap/_variables-dark.scss +87 -0
  78. data/assets/stylesheets/bootstrap/_variables.scss +1216 -615
  79. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +95 -0
  80. data/assets/stylesheets/bootstrap/forms/_form-check.scss +189 -0
  81. data/assets/stylesheets/bootstrap/forms/_form-control.scss +214 -0
  82. data/assets/stylesheets/bootstrap/forms/_form-range.scss +91 -0
  83. data/assets/stylesheets/bootstrap/forms/_form-select.scss +80 -0
  84. data/assets/stylesheets/bootstrap/forms/_form-text.scss +11 -0
  85. data/assets/stylesheets/bootstrap/forms/_input-group.scss +132 -0
  86. data/assets/stylesheets/bootstrap/forms/_labels.scss +36 -0
  87. data/assets/stylesheets/bootstrap/forms/_validation.scss +12 -0
  88. data/assets/stylesheets/bootstrap/helpers/_color-bg.scss +7 -0
  89. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +30 -0
  90. data/assets/stylesheets/bootstrap/helpers/_focus-ring.scss +5 -0
  91. data/assets/stylesheets/bootstrap/helpers/_icon-link.scss +25 -0
  92. data/assets/stylesheets/bootstrap/helpers/_position.scss +36 -0
  93. data/assets/stylesheets/bootstrap/helpers/_ratio.scss +26 -0
  94. data/assets/stylesheets/bootstrap/helpers/_stacks.scss +15 -0
  95. data/assets/stylesheets/bootstrap/helpers/_stretched-link.scss +15 -0
  96. data/assets/stylesheets/bootstrap/helpers/_text-truncation.scss +7 -0
  97. data/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss +8 -0
  98. data/assets/stylesheets/bootstrap/helpers/_vr.scss +8 -0
  99. data/assets/stylesheets/bootstrap/mixins/_alert.scss +11 -6
  100. data/assets/stylesheets/bootstrap/mixins/_backdrop.scss +14 -0
  101. data/assets/stylesheets/bootstrap/mixins/_banner.scss +7 -0
  102. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +10 -8
  103. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +7 -9
  104. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +20 -16
  105. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +60 -100
  106. data/assets/stylesheets/bootstrap/mixins/_caret.scss +34 -27
  107. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +2 -0
  108. data/assets/stylesheets/bootstrap/mixins/_color-mode.scss +21 -0
  109. data/assets/stylesheets/bootstrap/mixins/_color-scheme.scss +7 -0
  110. data/assets/stylesheets/bootstrap/mixins/_container.scss +11 -0
  111. data/assets/stylesheets/bootstrap/mixins/_forms.scss +53 -85
  112. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +13 -11
  113. data/assets/stylesheets/bootstrap/mixins/_grid.scss +119 -37
  114. data/assets/stylesheets/bootstrap/mixins/_image.scss +1 -21
  115. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +7 -2
  116. data/assets/stylesheets/bootstrap/mixins/_lists.scss +1 -1
  117. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +7 -19
  118. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +3 -3
  119. data/assets/stylesheets/bootstrap/mixins/_table-variants.scss +24 -0
  120. data/assets/stylesheets/bootstrap/mixins/_transition.scss +1 -1
  121. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +97 -0
  122. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +33 -0
  123. data/assets/stylesheets/bootstrap/utilities/_api.scss +47 -0
  124. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +276 -132
  125. data/bootstrap.gemspec +6 -7
  126. data/lib/bootstrap/engine.rb +7 -1
  127. data/lib/bootstrap/version.rb +2 -2
  128. data/tasks/updater/js.rb +31 -7
  129. data/tasks/updater/network.rb +9 -3
  130. data/tasks/updater/scss.rb +2 -2
  131. data/tasks/updater.rb +2 -2
  132. data/test/dummy_rails/app/assets/javascripts/application.js +4 -3
  133. data/test/dummy_rails/app/views/layouts/application.html.erb +3 -1
  134. data/test/dummy_rails/app/views/pages/root.html +89 -0
  135. data/test/dummy_rails/config/application.rb +0 -3
  136. data/test/gemfiles/rails_4_2.gemfile +1 -1
  137. data/test/gemfiles/rails_5_0.gemfile +1 -1
  138. data/test/gemfiles/rails_5_1.gemfile +1 -1
  139. data/test/gemfiles/rails_5_2.gemfile +8 -0
  140. data/test/gemfiles/rails_6_0.gemfile +1 -0
  141. data/test/gemfiles/rails_6_1.gemfile +8 -0
  142. data/test/gemfiles/rails_7_0_dartsass.gemfile +8 -0
  143. data/test/gemfiles/rails_7_0_sassc.gemfile +8 -0
  144. data/test/test_helper.rb +3 -2
  145. metadata +97 -85
  146. data/.travis.yml +0 -31
  147. data/assets/javascripts/bootstrap/util.js +0 -192
  148. data/assets/stylesheets/bootstrap/_code.scss +0 -48
  149. data/assets/stylesheets/bootstrap/_custom-forms.scss +0 -526
  150. data/assets/stylesheets/bootstrap/_input-group.scss +0 -208
  151. data/assets/stylesheets/bootstrap/_jumbotron.scss +0 -17
  152. data/assets/stylesheets/bootstrap/_media.scss +0 -8
  153. data/assets/stylesheets/bootstrap/_print.scss +0 -141
  154. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +0 -23
  155. data/assets/stylesheets/bootstrap/mixins/_badge.scss +0 -17
  156. data/assets/stylesheets/bootstrap/mixins/_float.scss +0 -14
  157. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -80
  158. data/assets/stylesheets/bootstrap/mixins/_hover.scss +0 -37
  159. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -11
  160. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +0 -34
  161. data/assets/stylesheets/bootstrap/mixins/_size.scss +0 -7
  162. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +0 -39
  163. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -17
  164. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +0 -11
  165. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +0 -8
  166. data/assets/stylesheets/bootstrap/utilities/_align.scss +0 -8
  167. data/assets/stylesheets/bootstrap/utilities/_background.scss +0 -19
  168. data/assets/stylesheets/bootstrap/utilities/_borders.scss +0 -75
  169. data/assets/stylesheets/bootstrap/utilities/_display.scss +0 -26
  170. data/assets/stylesheets/bootstrap/utilities/_embed.scss +0 -39
  171. data/assets/stylesheets/bootstrap/utilities/_flex.scss +0 -51
  172. data/assets/stylesheets/bootstrap/utilities/_float.scss +0 -11
  173. data/assets/stylesheets/bootstrap/utilities/_interactions.scss +0 -5
  174. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +0 -5
  175. data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -32
  176. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +0 -11
  177. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +0 -6
  178. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +0 -20
  179. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +0 -73
  180. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +0 -19
  181. data/assets/stylesheets/bootstrap/utilities/_text.scss +0 -72
  182. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +0 -13
  183. data/test/dummy_rails/app/views/pages/root.html.slim +0 -58
  184. /data/assets/stylesheets/bootstrap/{utilities → helpers}/_clearfix.scss +0 -0
@@ -0,0 +1,245 @@
1
+ /*!
2
+ * Bootstrap offcanvas.js v5.3.2 (https://getbootstrap.com/)
3
+ * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
+ */
6
+ (function (global, factory) {
7
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./base-component.js'), require('./dom/event-handler.js'), require('./dom/selector-engine.js'), require('./util/backdrop.js'), require('./util/component-functions.js'), require('./util/focustrap.js'), require('./util/index.js'), require('./util/scrollbar.js')) :
8
+ typeof define === 'function' && define.amd ? define(['./base-component', './dom/event-handler', './dom/selector-engine', './util/backdrop', './util/component-functions', './util/focustrap', './util/index', './util/scrollbar'], factory) :
9
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Offcanvas = factory(global.BaseComponent, global.EventHandler, global.SelectorEngine, global.Backdrop, global.ComponentFunctions, global.Focustrap, global.Index, global.Scrollbar));
10
+ })(this, (function (BaseComponent, EventHandler, SelectorEngine, Backdrop, componentFunctions_js, FocusTrap, index_js, ScrollBarHelper) { 'use strict';
11
+
12
+ /**
13
+ * --------------------------------------------------------------------------
14
+ * Bootstrap offcanvas.js
15
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
16
+ * --------------------------------------------------------------------------
17
+ */
18
+
19
+
20
+ /**
21
+ * Constants
22
+ */
23
+
24
+ const NAME = 'offcanvas';
25
+ const DATA_KEY = 'bs.offcanvas';
26
+ const EVENT_KEY = `.${DATA_KEY}`;
27
+ const DATA_API_KEY = '.data-api';
28
+ const EVENT_LOAD_DATA_API = `load${EVENT_KEY}${DATA_API_KEY}`;
29
+ const ESCAPE_KEY = 'Escape';
30
+ const CLASS_NAME_SHOW = 'show';
31
+ const CLASS_NAME_SHOWING = 'showing';
32
+ const CLASS_NAME_HIDING = 'hiding';
33
+ const CLASS_NAME_BACKDROP = 'offcanvas-backdrop';
34
+ const OPEN_SELECTOR = '.offcanvas.show';
35
+ const EVENT_SHOW = `show${EVENT_KEY}`;
36
+ const EVENT_SHOWN = `shown${EVENT_KEY}`;
37
+ const EVENT_HIDE = `hide${EVENT_KEY}`;
38
+ const EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY}`;
39
+ const EVENT_HIDDEN = `hidden${EVENT_KEY}`;
40
+ const EVENT_RESIZE = `resize${EVENT_KEY}`;
41
+ const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;
42
+ const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`;
43
+ const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="offcanvas"]';
44
+ const Default = {
45
+ backdrop: true,
46
+ keyboard: true,
47
+ scroll: false
48
+ };
49
+ const DefaultType = {
50
+ backdrop: '(boolean|string)',
51
+ keyboard: 'boolean',
52
+ scroll: 'boolean'
53
+ };
54
+
55
+ /**
56
+ * Class definition
57
+ */
58
+
59
+ class Offcanvas extends BaseComponent {
60
+ constructor(element, config) {
61
+ super(element, config);
62
+ this._isShown = false;
63
+ this._backdrop = this._initializeBackDrop();
64
+ this._focustrap = this._initializeFocusTrap();
65
+ this._addEventListeners();
66
+ }
67
+
68
+ // Getters
69
+ static get Default() {
70
+ return Default;
71
+ }
72
+ static get DefaultType() {
73
+ return DefaultType;
74
+ }
75
+ static get NAME() {
76
+ return NAME;
77
+ }
78
+
79
+ // Public
80
+ toggle(relatedTarget) {
81
+ return this._isShown ? this.hide() : this.show(relatedTarget);
82
+ }
83
+ show(relatedTarget) {
84
+ if (this._isShown) {
85
+ return;
86
+ }
87
+ const showEvent = EventHandler.trigger(this._element, EVENT_SHOW, {
88
+ relatedTarget
89
+ });
90
+ if (showEvent.defaultPrevented) {
91
+ return;
92
+ }
93
+ this._isShown = true;
94
+ this._backdrop.show();
95
+ if (!this._config.scroll) {
96
+ new ScrollBarHelper().hide();
97
+ }
98
+ this._element.setAttribute('aria-modal', true);
99
+ this._element.setAttribute('role', 'dialog');
100
+ this._element.classList.add(CLASS_NAME_SHOWING);
101
+ const completeCallBack = () => {
102
+ if (!this._config.scroll || this._config.backdrop) {
103
+ this._focustrap.activate();
104
+ }
105
+ this._element.classList.add(CLASS_NAME_SHOW);
106
+ this._element.classList.remove(CLASS_NAME_SHOWING);
107
+ EventHandler.trigger(this._element, EVENT_SHOWN, {
108
+ relatedTarget
109
+ });
110
+ };
111
+ this._queueCallback(completeCallBack, this._element, true);
112
+ }
113
+ hide() {
114
+ if (!this._isShown) {
115
+ return;
116
+ }
117
+ const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE);
118
+ if (hideEvent.defaultPrevented) {
119
+ return;
120
+ }
121
+ this._focustrap.deactivate();
122
+ this._element.blur();
123
+ this._isShown = false;
124
+ this._element.classList.add(CLASS_NAME_HIDING);
125
+ this._backdrop.hide();
126
+ const completeCallback = () => {
127
+ this._element.classList.remove(CLASS_NAME_SHOW, CLASS_NAME_HIDING);
128
+ this._element.removeAttribute('aria-modal');
129
+ this._element.removeAttribute('role');
130
+ if (!this._config.scroll) {
131
+ new ScrollBarHelper().reset();
132
+ }
133
+ EventHandler.trigger(this._element, EVENT_HIDDEN);
134
+ };
135
+ this._queueCallback(completeCallback, this._element, true);
136
+ }
137
+ dispose() {
138
+ this._backdrop.dispose();
139
+ this._focustrap.deactivate();
140
+ super.dispose();
141
+ }
142
+
143
+ // Private
144
+ _initializeBackDrop() {
145
+ const clickCallback = () => {
146
+ if (this._config.backdrop === 'static') {
147
+ EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);
148
+ return;
149
+ }
150
+ this.hide();
151
+ };
152
+
153
+ // 'static' option will be translated to true, and booleans will keep their value
154
+ const isVisible = Boolean(this._config.backdrop);
155
+ return new Backdrop({
156
+ className: CLASS_NAME_BACKDROP,
157
+ isVisible,
158
+ isAnimated: true,
159
+ rootElement: this._element.parentNode,
160
+ clickCallback: isVisible ? clickCallback : null
161
+ });
162
+ }
163
+ _initializeFocusTrap() {
164
+ return new FocusTrap({
165
+ trapElement: this._element
166
+ });
167
+ }
168
+ _addEventListeners() {
169
+ EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => {
170
+ if (event.key !== ESCAPE_KEY) {
171
+ return;
172
+ }
173
+ if (this._config.keyboard) {
174
+ this.hide();
175
+ return;
176
+ }
177
+ EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);
178
+ });
179
+ }
180
+
181
+ // Static
182
+ static jQueryInterface(config) {
183
+ return this.each(function () {
184
+ const data = Offcanvas.getOrCreateInstance(this, config);
185
+ if (typeof config !== 'string') {
186
+ return;
187
+ }
188
+ if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
189
+ throw new TypeError(`No method named "${config}"`);
190
+ }
191
+ data[config](this);
192
+ });
193
+ }
194
+ }
195
+
196
+ /**
197
+ * Data API implementation
198
+ */
199
+
200
+ EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (event) {
201
+ const target = SelectorEngine.getElementFromSelector(this);
202
+ if (['A', 'AREA'].includes(this.tagName)) {
203
+ event.preventDefault();
204
+ }
205
+ if (index_js.isDisabled(this)) {
206
+ return;
207
+ }
208
+ EventHandler.one(target, EVENT_HIDDEN, () => {
209
+ // focus on trigger when it is closed
210
+ if (index_js.isVisible(this)) {
211
+ this.focus();
212
+ }
213
+ });
214
+
215
+ // avoid conflict when clicking a toggler of an offcanvas, while another is open
216
+ const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR);
217
+ if (alreadyOpen && alreadyOpen !== target) {
218
+ Offcanvas.getInstance(alreadyOpen).hide();
219
+ }
220
+ const data = Offcanvas.getOrCreateInstance(target);
221
+ data.toggle(this);
222
+ });
223
+ EventHandler.on(window, EVENT_LOAD_DATA_API, () => {
224
+ for (const selector of SelectorEngine.find(OPEN_SELECTOR)) {
225
+ Offcanvas.getOrCreateInstance(selector).show();
226
+ }
227
+ });
228
+ EventHandler.on(window, EVENT_RESIZE, () => {
229
+ for (const element of SelectorEngine.find('[aria-modal][class*=show][class*=offcanvas-]')) {
230
+ if (getComputedStyle(element).position !== 'fixed') {
231
+ Offcanvas.getOrCreateInstance(element).hide();
232
+ }
233
+ }
234
+ });
235
+ componentFunctions_js.enableDismissTrigger(Offcanvas);
236
+
237
+ /**
238
+ * jQuery
239
+ */
240
+
241
+ index_js.defineJQueryPlugin(Offcanvas);
242
+
243
+ return Offcanvas;
244
+
245
+ }));
@@ -1,239 +1,95 @@
1
1
  /*!
2
- * Bootstrap popover.js v4.6.0 (https://getbootstrap.com/)
3
- * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2
+ * Bootstrap popover.js v5.3.2 (https://getbootstrap.com/)
3
+ * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
4
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
5
5
  */
6
6
  (function (global, factory) {
7
- typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery'), require('./tooltip.js')) :
8
- typeof define === 'function' && define.amd ? define(['jquery', './tooltip'], factory) :
9
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.jQuery, global.Tooltip));
10
- }(this, (function ($, Tooltip) { 'use strict';
7
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./tooltip.js'), require('./util/index.js')) :
8
+ typeof define === 'function' && define.amd ? define(['./tooltip', './util/index'], factory) :
9
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.Tooltip, global.Index));
10
+ })(this, (function (Tooltip, index_js) { 'use strict';
11
11
 
12
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
13
-
14
- var $__default = /*#__PURE__*/_interopDefaultLegacy($);
15
- var Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
16
-
17
- function _defineProperties(target, props) {
18
- for (var i = 0; i < props.length; i++) {
19
- var descriptor = props[i];
20
- descriptor.enumerable = descriptor.enumerable || false;
21
- descriptor.configurable = true;
22
- if ("value" in descriptor) descriptor.writable = true;
23
- Object.defineProperty(target, descriptor.key, descriptor);
24
- }
25
- }
26
-
27
- function _createClass(Constructor, protoProps, staticProps) {
28
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
29
- if (staticProps) _defineProperties(Constructor, staticProps);
30
- return Constructor;
31
- }
32
-
33
- function _extends() {
34
- _extends = Object.assign || function (target) {
35
- for (var i = 1; i < arguments.length; i++) {
36
- var source = arguments[i];
37
-
38
- for (var key in source) {
39
- if (Object.prototype.hasOwnProperty.call(source, key)) {
40
- target[key] = source[key];
41
- }
42
- }
43
- }
44
-
45
- return target;
46
- };
47
-
48
- return _extends.apply(this, arguments);
49
- }
12
+ /**
13
+ * --------------------------------------------------------------------------
14
+ * Bootstrap popover.js
15
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
16
+ * --------------------------------------------------------------------------
17
+ */
50
18
 
51
- function _inheritsLoose(subClass, superClass) {
52
- subClass.prototype = Object.create(superClass.prototype);
53
- subClass.prototype.constructor = subClass;
54
- subClass.__proto__ = superClass;
55
- }
56
19
 
57
20
  /**
58
- * ------------------------------------------------------------------------
59
21
  * Constants
60
- * ------------------------------------------------------------------------
61
22
  */
62
23
 
63
- var NAME = 'popover';
64
- var VERSION = '4.6.0';
65
- var DATA_KEY = 'bs.popover';
66
- var EVENT_KEY = "." + DATA_KEY;
67
- var JQUERY_NO_CONFLICT = $__default['default'].fn[NAME];
68
- var CLASS_PREFIX = 'bs-popover';
69
- var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
70
-
71
- var Default = _extends({}, Tooltip__default['default'].Default, {
72
- placement: 'right',
73
- trigger: 'click',
24
+ const NAME = 'popover';
25
+ const SELECTOR_TITLE = '.popover-header';
26
+ const SELECTOR_CONTENT = '.popover-body';
27
+ const Default = {
28
+ ...Tooltip.Default,
74
29
  content: '',
75
- template: '<div class="popover" role="tooltip">' + '<div class="arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div></div>'
76
- });
77
-
78
- var DefaultType = _extends({}, Tooltip__default['default'].DefaultType, {
79
- content: '(string|element|function)'
80
- });
81
-
82
- var CLASS_NAME_FADE = 'fade';
83
- var CLASS_NAME_SHOW = 'show';
84
- var SELECTOR_TITLE = '.popover-header';
85
- var SELECTOR_CONTENT = '.popover-body';
86
- var Event = {
87
- HIDE: "hide" + EVENT_KEY,
88
- HIDDEN: "hidden" + EVENT_KEY,
89
- SHOW: "show" + EVENT_KEY,
90
- SHOWN: "shown" + EVENT_KEY,
91
- INSERTED: "inserted" + EVENT_KEY,
92
- CLICK: "click" + EVENT_KEY,
93
- FOCUSIN: "focusin" + EVENT_KEY,
94
- FOCUSOUT: "focusout" + EVENT_KEY,
95
- MOUSEENTER: "mouseenter" + EVENT_KEY,
96
- MOUSELEAVE: "mouseleave" + EVENT_KEY
30
+ offset: [0, 8],
31
+ placement: 'right',
32
+ template: '<div class="popover" role="tooltip">' + '<div class="popover-arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div>' + '</div>',
33
+ trigger: 'click'
34
+ };
35
+ const DefaultType = {
36
+ ...Tooltip.DefaultType,
37
+ content: '(null|string|element|function)'
97
38
  };
39
+
98
40
  /**
99
- * ------------------------------------------------------------------------
100
- * Class Definition
101
- * ------------------------------------------------------------------------
41
+ * Class definition
102
42
  */
103
43
 
104
- var Popover = /*#__PURE__*/function (_Tooltip) {
105
- _inheritsLoose(Popover, _Tooltip);
106
-
107
- function Popover() {
108
- return _Tooltip.apply(this, arguments) || this;
44
+ class Popover extends Tooltip {
45
+ // Getters
46
+ static get Default() {
47
+ return Default;
48
+ }
49
+ static get DefaultType() {
50
+ return DefaultType;
51
+ }
52
+ static get NAME() {
53
+ return NAME;
109
54
  }
110
-
111
- var _proto = Popover.prototype;
112
55
 
113
56
  // Overrides
114
- _proto.isWithContent = function isWithContent() {
115
- return this.getTitle() || this._getContent();
116
- };
117
-
118
- _proto.addAttachmentClass = function addAttachmentClass(attachment) {
119
- $__default['default'](this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
120
- };
121
-
122
- _proto.getTipElement = function getTipElement() {
123
- this.tip = this.tip || $__default['default'](this.config.template)[0];
124
- return this.tip;
125
- };
126
-
127
- _proto.setContent = function setContent() {
128
- var $tip = $__default['default'](this.getTipElement()); // We use append for html objects to maintain js events
129
-
130
- this.setElementContent($tip.find(SELECTOR_TITLE), this.getTitle());
131
-
132
- var content = this._getContent();
133
-
134
- if (typeof content === 'function') {
135
- content = content.call(this.element);
136
- }
137
-
138
- this.setElementContent($tip.find(SELECTOR_CONTENT), content);
139
- $tip.removeClass(CLASS_NAME_FADE + " " + CLASS_NAME_SHOW);
140
- } // Private
141
- ;
142
-
143
- _proto._getContent = function _getContent() {
144
- return this.element.getAttribute('data-content') || this.config.content;
145
- };
146
-
147
- _proto._cleanTipClass = function _cleanTipClass() {
148
- var $tip = $__default['default'](this.getTipElement());
149
- var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);
57
+ _isWithContent() {
58
+ return this._getTitle() || this._getContent();
59
+ }
150
60
 
151
- if (tabClass !== null && tabClass.length > 0) {
152
- $tip.removeClass(tabClass.join(''));
153
- }
154
- } // Static
155
- ;
61
+ // Private
62
+ _getContentForTemplate() {
63
+ return {
64
+ [SELECTOR_TITLE]: this._getTitle(),
65
+ [SELECTOR_CONTENT]: this._getContent()
66
+ };
67
+ }
68
+ _getContent() {
69
+ return this._resolvePossibleFunction(this._config.content);
70
+ }
156
71
 
157
- Popover._jQueryInterface = function _jQueryInterface(config) {
72
+ // Static
73
+ static jQueryInterface(config) {
158
74
  return this.each(function () {
159
- var data = $__default['default'](this).data(DATA_KEY);
160
-
161
- var _config = typeof config === 'object' ? config : null;
162
-
163
- if (!data && /dispose|hide/.test(config)) {
75
+ const data = Popover.getOrCreateInstance(this, config);
76
+ if (typeof config !== 'string') {
164
77
  return;
165
78
  }
166
-
167
- if (!data) {
168
- data = new Popover(this, _config);
169
- $__default['default'](this).data(DATA_KEY, data);
170
- }
171
-
172
- if (typeof config === 'string') {
173
- if (typeof data[config] === 'undefined') {
174
- throw new TypeError("No method named \"" + config + "\"");
175
- }
176
-
177
- data[config]();
79
+ if (typeof data[config] === 'undefined') {
80
+ throw new TypeError(`No method named "${config}"`);
178
81
  }
82
+ data[config]();
179
83
  });
180
- };
181
-
182
- _createClass(Popover, null, [{
183
- key: "VERSION",
184
- // Getters
185
- get: function get() {
186
- return VERSION;
187
- }
188
- }, {
189
- key: "Default",
190
- get: function get() {
191
- return Default;
192
- }
193
- }, {
194
- key: "NAME",
195
- get: function get() {
196
- return NAME;
197
- }
198
- }, {
199
- key: "DATA_KEY",
200
- get: function get() {
201
- return DATA_KEY;
202
- }
203
- }, {
204
- key: "Event",
205
- get: function get() {
206
- return Event;
207
- }
208
- }, {
209
- key: "EVENT_KEY",
210
- get: function get() {
211
- return EVENT_KEY;
212
- }
213
- }, {
214
- key: "DefaultType",
215
- get: function get() {
216
- return DefaultType;
217
- }
218
- }]);
84
+ }
85
+ }
219
86
 
220
- return Popover;
221
- }(Tooltip__default['default']);
222
87
  /**
223
- * ------------------------------------------------------------------------
224
88
  * jQuery
225
- * ------------------------------------------------------------------------
226
89
  */
227
90
 
228
-
229
- $__default['default'].fn[NAME] = Popover._jQueryInterface;
230
- $__default['default'].fn[NAME].Constructor = Popover;
231
-
232
- $__default['default'].fn[NAME].noConflict = function () {
233
- $__default['default'].fn[NAME] = JQUERY_NO_CONFLICT;
234
- return Popover._jQueryInterface;
235
- };
91
+ index_js.defineJQueryPlugin(Popover);
236
92
 
237
93
  return Popover;
238
94
 
239
- })));
95
+ }));