paraqeet 2.1.0 → 3.0.0
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.
- checksums.yaml +4 -4
- data/_sass/_highlight.scss +9 -10
- data/_sass/_prose.scss +92 -74
- data/_sass/bootstrap/_functions.scss +1 -1
- data/_sass/bootstrap/_reboot.scss +6 -0
- data/_sass/bootstrap/_spinners.scss +1 -0
- data/_sass/bootstrap/mixins/_banner.scss +1 -1
- data/_sass/bootstrap/tests/mixins/_color-contrast.test.scss +139 -0
- data/assets/js/bootstrap.bundle.js +2 -5
- data/assets/js/bootstrap.bundle.js.map +1 -1
- data/assets/js/bootstrap.bundle.min.js +2 -2
- data/assets/js/bootstrap.bundle.min.js.map +1 -1
- data/assets/js/bootstrap.esm.js +2 -5
- data/assets/js/bootstrap.esm.js.map +1 -1
- data/assets/js/bootstrap.esm.min.js +2 -2
- data/assets/js/bootstrap.esm.min.js.map +1 -1
- data/assets/js/bootstrap.js +2 -5
- data/assets/js/bootstrap.js.map +1 -1
- data/assets/js/bootstrap.min.js +2 -2
- data/assets/js/bootstrap.min.js.map +1 -1
- metadata +3 -2
data/assets/js/bootstrap.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Bootstrap v5.3.
|
|
2
|
+
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
3
3
|
* Copyright 2011-2025 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
|
*/
|
|
@@ -643,7 +643,7 @@ class Config {
|
|
|
643
643
|
* Constants
|
|
644
644
|
*/
|
|
645
645
|
|
|
646
|
-
const VERSION = '5.3.
|
|
646
|
+
const VERSION = '5.3.8';
|
|
647
647
|
|
|
648
648
|
/**
|
|
649
649
|
* Class definition
|
|
@@ -1849,9 +1849,6 @@ class Dropdown extends BaseComponent {
|
|
|
1849
1849
|
this._element.setAttribute('aria-expanded', 'false');
|
|
1850
1850
|
Manipulator.removeDataAttribute(this._menu, 'popper');
|
|
1851
1851
|
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
|
1852
|
-
|
|
1853
|
-
// Explicitly return focus to the trigger element
|
|
1854
|
-
this._element.focus();
|
|
1855
1852
|
}
|
|
1856
1853
|
_getConfig(config) {
|
|
1857
1854
|
config = super._getConfig(config);
|