jekyll-theme-centos 2.45.0 → 2.46.1

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Bootstrap v5.3.1 (https://getbootstrap.com/)
2
+ * Bootstrap v5.3.2 (https://getbootstrap.com/)
3
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
  */
@@ -644,7 +644,7 @@ class Config {
644
644
  * Constants
645
645
  */
646
646
 
647
- const VERSION = '5.3.1';
647
+ const VERSION = '5.3.2';
648
648
 
649
649
  /**
650
650
  * Class definition
@@ -725,9 +725,9 @@ const getSelector = element => {
725
725
  if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
726
726
  hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
727
727
  }
728
- selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
728
+ selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;
729
729
  }
730
- return parseSelector(selector);
730
+ return selector;
731
731
  };
732
732
  const SelectorEngine = {
733
733
  find(selector, element = document.documentElement) {
@@ -4023,7 +4023,7 @@ const CLASS_NAME_SHOW$1 = 'show';
4023
4023
  const CLASS_DROPDOWN = 'dropdown';
4024
4024
  const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
4025
4025
  const SELECTOR_DROPDOWN_MENU = '.dropdown-menu';
4026
- const NOT_SELECTOR_DROPDOWN_TOGGLE = ':not(.dropdown-toggle)';
4026
+ const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`;
4027
4027
  const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]';
4028
4028
  const SELECTOR_OUTER = '.nav-item, .list-group-item';
4029
4029
  const SELECTOR_INNER = `.nav-link${NOT_SELECTOR_DROPDOWN_TOGGLE}, .list-group-item${NOT_SELECTOR_DROPDOWN_TOGGLE}, [role="tab"]${NOT_SELECTOR_DROPDOWN_TOGGLE}`;