Skip to content

Commit e16da54

Browse files
committed
Update to v5.3.7
1 parent f7a2c7f commit e16da54

33 files changed

+61
-55
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Please see the appropriate guide for your environment of choice:
2121
Add `bootstrap` to your Gemfile:
2222

2323
```ruby
24-
gem 'bootstrap', '~> 5.3.6'
24+
gem 'bootstrap', '~> 5.3.7'
2525
```
2626

2727
This gem requires a Sass engine, so make sure you have **one** of these gems in your Gemfile:
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
//= require ./bootstrap-global-this-define
2+
//= require ./bootstrap/dom/data
23
//= require ./bootstrap/util/index
34
//= require ./bootstrap/dom/event-handler
4-
//= require ./bootstrap/dom/data
55
//= require ./bootstrap/dom/manipulator
66
//= require ./bootstrap/util/config
77
//= require ./bootstrap/base-component
8-
//= require ./bootstrap/util/sanitizer
98
//= require ./bootstrap/dom/selector-engine
10-
//= require ./bootstrap/util/template-factory
11-
//= require ./bootstrap/tooltip
12-
//= require ./bootstrap/popover
9+
//= require ./bootstrap/collapse
1310
//= require ./bootstrap/button
1411
//= require ./bootstrap/util/component-functions
1512
//= require ./bootstrap/alert
16-
//= require ./bootstrap/util/scrollbar
1713
//= require ./bootstrap/util/backdrop
18-
//= require ./bootstrap/util/focustrap
19-
//= require ./bootstrap/offcanvas
20-
//= require ./bootstrap/toast
21-
//= require ./bootstrap/modal
22-
//= require ./bootstrap/tab
2314
//= require ./bootstrap/util/swipe
2415
//= require ./bootstrap/carousel
25-
//= require ./bootstrap/scrollspy
26-
//= require ./bootstrap/collapse
2716
//= require ./bootstrap/dropdown
17+
//= require ./bootstrap/toast
18+
//= require ./bootstrap/util/scrollbar
19+
//= require ./bootstrap/scrollspy
20+
//= require ./bootstrap/util/focustrap
21+
//= require ./bootstrap/modal
22+
//= require ./bootstrap/util/sanitizer
23+
//= require ./bootstrap/util/template-factory
24+
//= require ./bootstrap/tooltip
25+
//= require ./bootstrap/popover
26+
//= require ./bootstrap/tab
27+
//= require ./bootstrap/offcanvas
2828
//= require ./bootstrap-global-this-undefine

assets/javascripts/bootstrap.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
@@ -666,7 +666,7 @@
666666
* Constants
667667
*/
668668

669-
const VERSION = '5.3.6';
669+
const VERSION = '5.3.7';
670670

671671
/**
672672
* Class definition
@@ -2987,7 +2987,6 @@
29872987
*
29882988
* Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38
29892989
*/
2990-
// eslint-disable-next-line unicorn/better-regex
29912990
const SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;
29922991
const allowedAttribute = (attribute, allowedAttributeList) => {
29932992
const attributeName = attribute.nodeName.toLowerCase();
@@ -3531,6 +3530,7 @@
35313530
if (trigger === 'click') {
35323531
EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, event => {
35333532
const context = this._initializeOnDelegatedTarget(event);
3533+
context._activeTrigger[TRIGGER_CLICK] = !(context._isShown() && context._activeTrigger[TRIGGER_CLICK]);
35343534
context.toggle();
35353535
});
35363536
} else if (trigger !== TRIGGER_MANUAL) {

assets/javascripts/bootstrap.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/javascripts/bootstrap/alert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap alert.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap alert.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/

assets/javascripts/bootstrap/base-component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap base-component.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap base-component.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
@@ -21,7 +21,7 @@
2121
* Constants
2222
*/
2323

24-
const VERSION = '5.3.6';
24+
const VERSION = '5.3.7';
2525

2626
/**
2727
* Class definition

assets/javascripts/bootstrap/button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap button.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap button.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/

assets/javascripts/bootstrap/carousel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap carousel.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap carousel.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/

assets/javascripts/bootstrap/collapse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap collapse.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap collapse.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/

assets/javascripts/bootstrap/dom/data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap data.js v5.3.6 (https://getbootstrap.com/)
2+
* Bootstrap data.js v5.3.7 (https://getbootstrap.com/)
33
* Copyright 2011-2025 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/

0 commit comments

Comments
 (0)