Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf24341

Browse files
committed
Update to v5.3.2
1 parent 76f3973 commit cf24341

Some content is hidden

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

44 files changed

+99
-90
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ gemspec
44

55
group :development do
66
gem 'popper_js', '>= 1.12.3'
7+
gem 'dartsass-sprockets'
78
end
89

910
group :debug do

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.1'
24+
gem 'bootstrap', '~> 5.3.2'
2525
```
2626

2727
This gem requires a Sass engine, so make sure you have **one** of these two gems in your Gemfile:

assets/javascripts/bootstrap-sprockets.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
//= require ./bootstrap/dom/manipulator
66
//= require ./bootstrap/util/config
77
//= require ./bootstrap/base-component
8-
//= require ./bootstrap/util/swipe
98
//= require ./bootstrap/dom/selector-engine
10-
//= require ./bootstrap/util/sanitizer
11-
//= require ./bootstrap/util/template-factory
12-
//= require ./bootstrap/button
139
//= require ./bootstrap/collapse
10+
//= require ./bootstrap/util/sanitizer
1411
//= require ./bootstrap/util/backdrop
15-
//= require ./bootstrap/dropdown
12+
//= require ./bootstrap/util/scrollbar
1613
//= require ./bootstrap/util/component-functions
17-
//= require ./bootstrap/alert
1814
//= require ./bootstrap/util/focustrap
19-
//= require ./bootstrap/util/scrollbar
2015
//= require ./bootstrap/modal
21-
//= require ./bootstrap/carousel
22-
//= require ./bootstrap/scrollspy
23-
//= require ./bootstrap/offcanvas
16+
//= require ./bootstrap/util/template-factory
2417
//= require ./bootstrap/tooltip
25-
//= require ./bootstrap/popover
18+
//= require ./bootstrap/offcanvas
19+
//= require ./bootstrap/util/swipe
2620
//= require ./bootstrap/toast
21+
//= require ./bootstrap/button
22+
//= require ./bootstrap/alert
23+
//= require ./bootstrap/popover
24+
//= require ./bootstrap/scrollspy
25+
//= require ./bootstrap/dropdown
2726
//= require ./bootstrap/tab
27+
//= require ./bootstrap/carousel
2828
//= require ./bootstrap-global-this-undefine

assets/javascripts/bootstrap.js

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

670-
const VERSION = '5.3.1';
670+
const VERSION = '5.3.2';
671671

672672
/**
673673
* Class definition
@@ -748,9 +748,9 @@
748748
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
749749
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
750750
}
751-
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
751+
selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
752752
}
753-
return parseSelector(selector);
753+
return selector;
754754
};
755755
const SelectorEngine = {
756756
find(selector, element = document.documentElement) {
@@ -4046,7 +4046,7 @@
40464046
const CLASS_DROPDOWN = 'dropdown';
40474047
const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
40484048
const SELECTOR_DROPDOWN_MENU = '.dropdown-menu';
4049-
const NOT_SELECTOR_DROPDOWN_TOGGLE = ':not(.dropdown-toggle)';
4049+
const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`;
40504050
const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]';
40514051
const SELECTOR_OUTER = '.nav-item, .list-group-item';
40524052
const SELECTOR_INNER = `.nav-link${NOT_SELECTOR_DROPDOWN_TOGGLE}, .list-group-item${NOT_SELECTOR_DROPDOWN_TOGGLE}, [role="tab"]${NOT_SELECTOR_DROPDOWN_TOGGLE}`;

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.1 (https://getbootstrap.com/)
2+
* Bootstrap alert.js v5.3.2 (https://getbootstrap.com/)
33
* Copyright 2011-2023 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.1 (https://getbootstrap.com/)
2+
* Bootstrap base-component.js v5.3.2 (https://getbootstrap.com/)
33
* Copyright 2011-2023 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.1';
24+
const VERSION = '5.3.2';
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.1 (https://getbootstrap.com/)
2+
* Bootstrap button.js v5.3.2 (https://getbootstrap.com/)
33
* Copyright 2011-2023 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.1 (https://getbootstrap.com/)
2+
* Bootstrap carousel.js v5.3.2 (https://getbootstrap.com/)
33
* Copyright 2011-2023 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.1 (https://getbootstrap.com/)
2+
* Bootstrap collapse.js v5.3.2 (https://getbootstrap.com/)
33
* Copyright 2011-2023 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)