paraqeet 2.0.2 → 2.0.4
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/LICENSE +1 -1
- data/_sass/_highlight.scss +85 -64
- data/_sass/bootstrap/_accordion.scss +4 -9
- data/_sass/bootstrap/_button-group.scss +8 -3
- data/_sass/bootstrap/_card.scss +1 -2
- data/_sass/bootstrap/_carousel.scss +15 -25
- data/_sass/bootstrap/_close.scss +9 -6
- data/_sass/bootstrap/_functions.scss +1 -1
- data/_sass/bootstrap/_list-group.scss +27 -25
- data/_sass/bootstrap/_modal.scss +6 -2
- data/_sass/bootstrap/_nav.scss +1 -1
- data/_sass/bootstrap/_navbar.scss +1 -1
- data/_sass/bootstrap/_offcanvas.scss +5 -1
- data/_sass/bootstrap/_pagination.scss +1 -1
- data/_sass/bootstrap/_progress.scss +1 -1
- data/_sass/bootstrap/_reboot.scss +1 -1
- data/_sass/bootstrap/_type.scss +1 -1
- data/_sass/bootstrap/_variables-dark.scss +17 -2
- data/_sass/bootstrap/_variables.scss +16 -14
- data/_sass/bootstrap/forms/_floating-labels.scss +18 -16
- data/_sass/bootstrap/forms/_input-group.scss +1 -1
- data/_sass/bootstrap/mixins/_banner.scss +2 -2
- data/_sass/bootstrap/mixins/_grid.scss +1 -1
- data/_sass/bootstrap/mixins/_visually-hidden.scss +1 -1
- data/assets/js/bootstrap.bundle.js +12 -15
- 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 +12 -13
- 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 +12 -13
- 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 +2 -2
data/assets/js/bootstrap.esm.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v5.3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v5.3.5 (https://getbootstrap.com/)
|
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
|
*/
|
6
6
|
import * as Popper from '@popperjs/core';
|
@@ -201,7 +201,7 @@ const noop = () => {};
|
|
201
201
|
* @param {HTMLElement} element
|
202
202
|
* @return void
|
203
203
|
*
|
204
|
-
* @see https://www.
|
204
|
+
* @see https://www.harrytheo.com/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation
|
205
205
|
*/
|
206
206
|
const reflow = element => {
|
207
207
|
element.offsetHeight; // eslint-disable-line no-unused-expressions
|
@@ -246,7 +246,7 @@ const defineJQueryPlugin = plugin => {
|
|
246
246
|
});
|
247
247
|
};
|
248
248
|
const execute = (possibleCallback, args = [], defaultValue = possibleCallback) => {
|
249
|
-
return typeof possibleCallback === 'function' ? possibleCallback(...args) : defaultValue;
|
249
|
+
return typeof possibleCallback === 'function' ? possibleCallback.call(...args) : defaultValue;
|
250
250
|
};
|
251
251
|
const executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {
|
252
252
|
if (!waitForTransition) {
|
@@ -568,7 +568,7 @@ const Manipulator = {
|
|
568
568
|
const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig'));
|
569
569
|
for (const key of bsKeys) {
|
570
570
|
let pureKey = key.replace(/^bs/, '');
|
571
|
-
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1
|
571
|
+
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1);
|
572
572
|
attributes[pureKey] = normalizeData(element.dataset[key]);
|
573
573
|
}
|
574
574
|
return attributes;
|
@@ -643,7 +643,7 @@ class Config {
|
|
643
643
|
* Constants
|
644
644
|
*/
|
645
645
|
|
646
|
-
const VERSION = '5.3.
|
646
|
+
const VERSION = '5.3.5';
|
647
647
|
|
648
648
|
/**
|
649
649
|
* Class definition
|
@@ -1858,7 +1858,7 @@ class Dropdown extends BaseComponent {
|
|
1858
1858
|
}
|
1859
1859
|
_createPopper() {
|
1860
1860
|
if (typeof Popper === 'undefined') {
|
1861
|
-
throw new TypeError('Bootstrap\'s dropdowns require Popper (https://popper.js.org)');
|
1861
|
+
throw new TypeError('Bootstrap\'s dropdowns require Popper (https://popper.js.org/docs/v2/)');
|
1862
1862
|
}
|
1863
1863
|
let referenceElement = this._element;
|
1864
1864
|
if (this._config.reference === 'parent') {
|
@@ -1937,7 +1937,7 @@ class Dropdown extends BaseComponent {
|
|
1937
1937
|
}
|
1938
1938
|
return {
|
1939
1939
|
...defaultBsPopperConfig,
|
1940
|
-
...execute(this._config.popperConfig, [defaultBsPopperConfig])
|
1940
|
+
...execute(this._config.popperConfig, [undefined, defaultBsPopperConfig])
|
1941
1941
|
};
|
1942
1942
|
}
|
1943
1943
|
_selectMenuItem({
|
@@ -3124,7 +3124,7 @@ class TemplateFactory extends Config {
|
|
3124
3124
|
return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg;
|
3125
3125
|
}
|
3126
3126
|
_resolvePossibleFunction(arg) {
|
3127
|
-
return execute(arg, [this]);
|
3127
|
+
return execute(arg, [undefined, this]);
|
3128
3128
|
}
|
3129
3129
|
_putElementInTemplate(element, templateElement) {
|
3130
3130
|
if (this._config.html) {
|
@@ -3223,7 +3223,7 @@ const DefaultType$3 = {
|
|
3223
3223
|
class Tooltip extends BaseComponent {
|
3224
3224
|
constructor(element, config) {
|
3225
3225
|
if (typeof Popper === 'undefined') {
|
3226
|
-
throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org)');
|
3226
|
+
throw new TypeError('Bootstrap\'s tooltips require Popper (https://popper.js.org/docs/v2/)');
|
3227
3227
|
}
|
3228
3228
|
super(element, config);
|
3229
3229
|
|
@@ -3269,7 +3269,6 @@ class Tooltip extends BaseComponent {
|
|
3269
3269
|
if (!this._isEnabled) {
|
3270
3270
|
return;
|
3271
3271
|
}
|
3272
|
-
this._activeTrigger.click = !this._activeTrigger.click;
|
3273
3272
|
if (this._isShown()) {
|
3274
3273
|
this._leave();
|
3275
3274
|
return;
|
@@ -3457,7 +3456,7 @@ class Tooltip extends BaseComponent {
|
|
3457
3456
|
return offset;
|
3458
3457
|
}
|
3459
3458
|
_resolvePossibleFunction(arg) {
|
3460
|
-
return execute(arg, [this._element]);
|
3459
|
+
return execute(arg, [this._element, this._element]);
|
3461
3460
|
}
|
3462
3461
|
_getPopperConfig(attachment) {
|
3463
3462
|
const defaultBsPopperConfig = {
|
@@ -3495,7 +3494,7 @@ class Tooltip extends BaseComponent {
|
|
3495
3494
|
};
|
3496
3495
|
return {
|
3497
3496
|
...defaultBsPopperConfig,
|
3498
|
-
...execute(this._config.popperConfig, [defaultBsPopperConfig])
|
3497
|
+
...execute(this._config.popperConfig, [undefined, defaultBsPopperConfig])
|
3499
3498
|
};
|
3500
3499
|
}
|
3501
3500
|
_setListeners() {
|