paraqeet 1.1.0 → 2.0.2
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/README.md +1 -1
- data/_includes/icon.html +10 -19
- data/_sass/bootstrap/_accordion.scss +11 -11
- data/_sass/bootstrap/_buttons.scss +9 -0
- data/_sass/bootstrap/_carousel.scss +2 -10
- data/_sass/bootstrap/_modal.scss +0 -1
- data/_sass/bootstrap/_offcanvas.scss +1 -4
- data/_sass/bootstrap/_tables.scss +1 -1
- data/_sass/bootstrap/_variables.scss +7 -3
- data/_sass/bootstrap/forms/_form-check.scss +1 -1
- data/_sass/bootstrap/mixins/_banner.scss +2 -2
- data/_sass/bootstrap/mixins/_forms.scss +12 -2
- data/_sass/bootstrap/mixins/_grid.scss +1 -1
- data/_sass/bootstrap/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
- data/_sass/bootstrap/tests/mixins/_utilities.test.scss +1 -1
- data/assets/js/bootstrap.bundle.js +8 -8
- data/assets/js/bootstrap.bundle.js.map +1 -1
- data/assets/js/bootstrap.bundle.min.js +3 -3
- data/assets/js/bootstrap.bundle.min.js.map +1 -1
- data/assets/js/bootstrap.esm.js +8 -8
- data/assets/js/bootstrap.esm.js.map +1 -1
- data/assets/js/bootstrap.esm.min.js +3 -3
- data/assets/js/bootstrap.esm.min.js.map +1 -1
- data/assets/js/bootstrap.js +8 -8
- data/assets/js/bootstrap.js.map +1 -1
- data/assets/js/bootstrap.min.js +3 -3
- data/assets/js/bootstrap.min.js.map +1 -1
- metadata +6 -5
data/assets/js/bootstrap.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v5.3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v5.3.3 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2024 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
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -229,7 +229,6 @@
|
|
229
229
|
const reflow = element => {
|
230
230
|
element.offsetHeight; // eslint-disable-line no-unused-expressions
|
231
231
|
};
|
232
|
-
|
233
232
|
const getjQuery = () => {
|
234
233
|
if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
|
235
234
|
return window.jQuery;
|
@@ -667,7 +666,7 @@
|
|
667
666
|
* Constants
|
668
667
|
*/
|
669
668
|
|
670
|
-
const VERSION = '5.3.
|
669
|
+
const VERSION = '5.3.3';
|
671
670
|
|
672
671
|
/**
|
673
672
|
* Class definition
|
@@ -748,9 +747,9 @@
|
|
748
747
|
if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {
|
749
748
|
hrefAttribute = `#${hrefAttribute.split('#')[1]}`;
|
750
749
|
}
|
751
|
-
selector = hrefAttribute && hrefAttribute !== '#' ?
|
750
|
+
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null;
|
752
751
|
}
|
753
|
-
return selector;
|
752
|
+
return selector ? selector.split(',').map(sel => parseSelector(sel)).join(',') : null;
|
754
753
|
};
|
755
754
|
const SelectorEngine = {
|
756
755
|
find(selector, element = document.documentElement) {
|
@@ -2096,7 +2095,6 @@
|
|
2096
2095
|
// if false, we use the backdrop helper without adding any element to the dom
|
2097
2096
|
rootElement: 'body' // give the choice to place backdrop under different elements
|
2098
2097
|
};
|
2099
|
-
|
2100
2098
|
const DefaultType$8 = {
|
2101
2099
|
className: 'string',
|
2102
2100
|
clickCallback: '(function|null)',
|
@@ -2221,7 +2219,6 @@
|
|
2221
2219
|
autofocus: true,
|
2222
2220
|
trapElement: null // The element to trap focus inside of
|
2223
2221
|
};
|
2224
|
-
|
2225
2222
|
const DefaultType$7 = {
|
2226
2223
|
autofocus: 'boolean',
|
2227
2224
|
trapElement: 'element'
|
@@ -2948,7 +2945,10 @@
|
|
2948
2945
|
br: [],
|
2949
2946
|
col: [],
|
2950
2947
|
code: [],
|
2948
|
+
dd: [],
|
2951
2949
|
div: [],
|
2950
|
+
dl: [],
|
2951
|
+
dt: [],
|
2952
2952
|
em: [],
|
2953
2953
|
hr: [],
|
2954
2954
|
h1: [],
|