aboutsummaryrefslogtreecommitdiff
path: root/dist/js/bootstrap.esm.js
diff options
context:
space:
mode:
authorJulien Déramond <[email protected]>2023-09-14 16:19:27 +0200
committerGitHub <[email protected]>2023-09-14 17:19:27 +0300
commit344e912d04b5b6a04482113eff20ab416ff01048 (patch)
tree2ae38dafc00be38456073cae9b204b9546ad3d7c /dist/js/bootstrap.esm.js
parent317cb2ae094ec0edcfc38a1af9bd51880389ca65 (diff)
downloadbootstrap-344e912d04b5b6a04482113eff20ab416ff01048.tar.xz
bootstrap-344e912d04b5b6a04482113eff20ab416ff01048.zip
Release v5.3.2 (#39173)
* Bump version to 5.3.2 * Dist
Diffstat (limited to 'dist/js/bootstrap.esm.js')
-rw-r--r--dist/js/bootstrap.esm.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/dist/js/bootstrap.esm.js b/dist/js/bootstrap.esm.js
index 8143ac2c6..27933f6ee 100644
--- a/dist/js/bootstrap.esm.js
+++ b/dist/js/bootstrap.esm.js
@@ -1,5 +1,5 @@
/*!
- * Bootstrap v5.3.1 (https://getbootstrap.com/)
+ * Bootstrap v5.3.2 (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
@@ -644,7 +644,7 @@ class Config {
* Constants
*/
-const VERSION = '5.3.1';
+const VERSION = '5.3.2';
/**
* Class definition
@@ -725,9 +725,9 @@ const getSelector = element => {
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
}
- selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
+ selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
}
- return parseSelector(selector);
+ return selector;
};
const SelectorEngine = {
find(selector, element = document.documentElement) {
@@ -4023,7 +4023,7 @@ const CLASS_NAME_SHOW$1 = 'show';
const CLASS_DROPDOWN = 'dropdown';
const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
const SELECTOR_DROPDOWN_MENU = '.dropdown-menu';
-const NOT_SELECTOR_DROPDOWN_TOGGLE = ':not(.dropdown-toggle)';
+const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`;
const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]';
const SELECTOR_OUTER = '.nav-item, .list-group-item';
const SELECTOR_INNER = `.nav-link${NOT_SELECTOR_DROPDOWN_TOGGLE}, .list-group-item${NOT_SELECTOR_DROPDOWN_TOGGLE}, [role="tab"]${NOT_SELECTOR_DROPDOWN_TOGGLE}`;