Skip to content

Commit ef54e89

Browse files
committed
Update to v5.3.3
1 parent 90467de commit ef54e89

41 files changed

Lines changed: 128 additions & 117 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

assets/javascripts/bootstrap-sprockets.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
//= require ./bootstrap/util/config
77
//= require ./bootstrap/base-component
88
//= require ./bootstrap/dom/selector-engine
9-
//= require ./bootstrap/collapse
10-
//= require ./bootstrap/util/sanitizer
119
//= require ./bootstrap/util/backdrop
12-
//= require ./bootstrap/util/scrollbar
1310
//= require ./bootstrap/util/component-functions
1411
//= require ./bootstrap/util/focustrap
15-
//= require ./bootstrap/modal
12+
//= require ./bootstrap/util/scrollbar
13+
//= require ./bootstrap/offcanvas
14+
//= require ./bootstrap/dropdown
15+
//= require ./bootstrap/util/sanitizer
1616
//= require ./bootstrap/util/template-factory
1717
//= require ./bootstrap/tooltip
18-
//= require ./bootstrap/offcanvas
19-
//= require ./bootstrap/util/swipe
2018
//= require ./bootstrap/toast
21-
//= require ./bootstrap/button
22-
//= require ./bootstrap/alert
2319
//= require ./bootstrap/popover
20+
//= require ./bootstrap/util/swipe
21+
//= require ./bootstrap/alert
22+
//= require ./bootstrap/button
23+
//= require ./bootstrap/carousel
24+
//= require ./bootstrap/modal
25+
//= require ./bootstrap/collapse
2426
//= require ./bootstrap/scrollspy
25-
//= require ./bootstrap/dropdown
2627
//= require ./bootstrap/tab
27-
//= require ./bootstrap/carousel
2828
//= require ./bootstrap-global-this-undefine

assets/javascripts/bootstrap.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -229,7 +229,6 @@
229229
const reflow = element => {
230230
element.offsetHeight; // eslint-disable-line no-unused-expressions
231231
};
232-
233232
const getjQuery = () => {
234233
if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
235234
return window.jQuery;
@@ -667,7 +666,7 @@
667666
* Constants
668667
*/
669668

670-
const VERSION = '5.3.2';
669+
const VERSION = '5.3.3';
671670

672671
/**
673672
* Class definition
@@ -748,9 +747,9 @@
748747
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
749748
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
750749
}
751-
selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
750+
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
752751
}
753-
return selector;
752+
return selector ? selector.split(',').map(sel => parseSelector(sel)).join(',') : null;
754753
};
755754
const SelectorEngine = {
756755
find(selector, element = document.documentElement) {
@@ -2096,7 +2095,6 @@
20962095
// if false, we use the backdrop helper without adding any element to the dom
20972096
rootElement: 'body' // give the choice to place backdrop under different elements
20982097
};
2099-
21002098
const DefaultType$8 = {
21012099
className: 'string',
21022100
clickCallback: '(function|null)',
@@ -2221,7 +2219,6 @@
22212219
autofocus: true,
22222220
trapElement: null // The element to trap focus inside of
22232221
};
2224-
22252222
const DefaultType$7 = {
22262223
autofocus: 'boolean',
22272224
trapElement: 'element'
@@ -2948,7 +2945,10 @@
29482945
br: [],
29492946
col: [],
29502947
code: [],
2948+
dd: [],
29512949
div: [],
2950+
dl: [],
2951+
dt: [],
29522952
em: [],
29532953
hr: [],
29542954
h1: [],

assets/javascripts/bootstrap.min.js

Lines changed: 3 additions & 3 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap alert.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap alert.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

assets/javascripts/bootstrap/base-component.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap base-component.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap base-component.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {
@@ -21,7 +21,7 @@
2121
* Constants
2222
*/
2323

24-
const VERSION = '5.3.2';
24+
const VERSION = '5.3.3';
2525

2626
/**
2727
* Class definition

assets/javascripts/bootstrap/button.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap button.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap button.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

assets/javascripts/bootstrap/carousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap carousel.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap carousel.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

assets/javascripts/bootstrap/collapse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap collapse.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap collapse.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

assets/javascripts/bootstrap/dom/data.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap data.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap data.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

assets/javascripts/bootstrap/dom/event-handler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Bootstrap event-handler.js v5.3.2 (https://getbootstrap.com/)
3-
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2+
* Bootstrap event-handler.js v5.3.3 (https://getbootstrap.com/)
3+
* Copyright 2011-2024 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
44
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
55
*/
66
(function (global, factory) {

0 commit comments

Comments
 (0)