paraqeet 2.0.4 → 2.1.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/_bootstrap-icons.scss +30 -2
- data/_sass/_highlight.scss +12 -43
- data/_sass/_prose.scss +15 -3
- data/_sass/bootstrap/_card.scss +8 -8
- data/_sass/bootstrap/mixins/_banner.scss +1 -1
- data/_sass/bootstrap/mixins/_box-shadow.scss +11 -5
- data/_sass/bootstrap/mixins/_visually-hidden.scss +5 -0
- data/_sass/bootstrap/tests/mixins/_box-shadow.test.scss +188 -0
- data/assets/bootstrap-icons/anthropic.svg +3 -0
- data/assets/bootstrap-icons/apple-music.svg +3 -0
- data/assets/bootstrap-icons/battery-low.svg +4 -0
- data/assets/bootstrap-icons/beaker-fill.svg +3 -0
- data/assets/bootstrap-icons/beaker.svg +4 -0
- data/assets/bootstrap-icons/bluesky.svg +3 -0
- data/assets/bootstrap-icons/{font/bootstrap-icons.css → bootstrap-icons.css} +31 -3
- data/assets/bootstrap-icons/{font/bootstrap-icons.json → bootstrap-icons.json} +29 -1
- data/assets/bootstrap-icons/{font/bootstrap-icons.min.css → bootstrap-icons.min.css} +2 -2
- data/assets/bootstrap-icons/bootstrap-icons.svg +1 -1
- data/assets/bootstrap-icons/calendar3-event-fill.svg +1 -1
- data/assets/bootstrap-icons/calendar3-range-fill.svg +1 -1
- data/assets/bootstrap-icons/calendar3-week-fill.svg +1 -1
- data/assets/bootstrap-icons/claude.svg +3 -0
- data/assets/bootstrap-icons/css.svg +3 -0
- data/assets/bootstrap-icons/flask-fill.svg +3 -0
- data/assets/bootstrap-icons/flask-florence-fill.svg +3 -0
- data/assets/bootstrap-icons/flask-florence.svg +3 -0
- data/assets/bootstrap-icons/flask.svg +3 -0
- data/assets/bootstrap-icons/fonts/bootstrap-icons.woff +0 -0
- data/assets/bootstrap-icons/fonts/bootstrap-icons.woff2 +0 -0
- data/assets/bootstrap-icons/fork-knife.svg +3 -0
- data/assets/bootstrap-icons/globe-americas-fill.svg +3 -0
- data/assets/bootstrap-icons/globe-asia-australia-fill.svg +3 -0
- data/assets/bootstrap-icons/globe-central-south-asia-fill.svg +3 -0
- data/assets/bootstrap-icons/globe-europe-africa-fill.svg +3 -0
- data/assets/bootstrap-icons/javascript.svg +3 -0
- data/assets/bootstrap-icons/leaf-fill.svg +3 -0
- data/assets/bootstrap-icons/leaf.svg +3 -0
- data/assets/bootstrap-icons/lock-fill.svg +1 -1
- data/assets/bootstrap-icons/lock.svg +1 -1
- data/assets/bootstrap-icons/measuring-cup-fill.svg +3 -0
- data/assets/bootstrap-icons/measuring-cup.svg +3 -0
- data/assets/bootstrap-icons/meta.svg +1 -1
- data/assets/bootstrap-icons/openai.svg +3 -0
- data/assets/bootstrap-icons/perplexity.svg +3 -0
- data/assets/bootstrap-icons/tux.svg +4 -0
- data/assets/bootstrap-icons/typescript.svg +3 -0
- data/assets/bootstrap-icons/unlock-fill.svg +1 -1
- data/assets/bootstrap-icons/unlock.svg +1 -1
- data/assets/bootstrap-icons/unlock2-fill.svg +3 -0
- data/assets/bootstrap-icons/unlock2.svg +3 -0
- data/assets/js/bootstrap.bundle.js +10 -6
- 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 +10 -6
- 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 +10 -6
- 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 +37 -12
- data/assets/bootstrap-icons/font/bootstrap-icons.scss +0 -2090
- data/assets/bootstrap-icons/font/fonts/bootstrap-icons.woff +0 -0
- data/assets/bootstrap-icons/font/fonts/bootstrap-icons.woff2 +0 -0
data/assets/js/bootstrap.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v5.3.
|
2
|
+
* Bootstrap v5.3.7 (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
|
*/
|
@@ -666,7 +666,7 @@
|
|
666
666
|
* Constants
|
667
667
|
*/
|
668
668
|
|
669
|
-
const VERSION = '5.3.
|
669
|
+
const VERSION = '5.3.7';
|
670
670
|
|
671
671
|
/**
|
672
672
|
* Class definition
|
@@ -692,6 +692,8 @@
|
|
692
692
|
this[propertyName] = null;
|
693
693
|
}
|
694
694
|
}
|
695
|
+
|
696
|
+
// Private
|
695
697
|
_queueCallback(callback, element, isAnimated = true) {
|
696
698
|
executeAfterTransition(callback, element, isAnimated);
|
697
699
|
}
|
@@ -1623,11 +1625,11 @@
|
|
1623
1625
|
this._element.style[dimension] = '';
|
1624
1626
|
this._queueCallback(complete, this._element, true);
|
1625
1627
|
}
|
1628
|
+
|
1629
|
+
// Private
|
1626
1630
|
_isShown(element = this._element) {
|
1627
1631
|
return element.classList.contains(CLASS_NAME_SHOW$7);
|
1628
1632
|
}
|
1629
|
-
|
1630
|
-
// Private
|
1631
1633
|
_configAfterMerge(config) {
|
1632
1634
|
config.toggle = Boolean(config.toggle); // Coerce string values
|
1633
1635
|
config.parent = getElement(config.parent);
|
@@ -1870,6 +1872,9 @@
|
|
1870
1872
|
this._element.setAttribute('aria-expanded', 'false');
|
1871
1873
|
Manipulator.removeDataAttribute(this._menu, 'popper');
|
1872
1874
|
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
1875
|
+
|
1876
|
+
// Explicitly return focus to the trigger element
|
1877
|
+
this._element.focus();
|
1873
1878
|
}
|
1874
1879
|
_getConfig(config) {
|
1875
1880
|
config = super._getConfig(config);
|
@@ -2982,7 +2987,6 @@
|
|
2982
2987
|
*
|
2983
2988
|
* Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38
|
2984
2989
|
*/
|
2985
|
-
// eslint-disable-next-line unicorn/better-regex
|
2986
2990
|
const SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;
|
2987
2991
|
const allowedAttribute = (attribute, allowedAttributeList) => {
|
2988
2992
|
const attributeName = attribute.nodeName.toLowerCase();
|
@@ -3526,6 +3530,7 @@
|
|
3526
3530
|
if (trigger === 'click') {
|
3527
3531
|
EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, event => {
|
3528
3532
|
const context = this._initializeOnDelegatedTarget(event);
|
3533
|
+
context._activeTrigger[TRIGGER_CLICK] = !(context._isShown() && context._activeTrigger[TRIGGER_CLICK]);
|
3529
3534
|
context.toggle();
|
3530
3535
|
});
|
3531
3536
|
} else if (trigger !== TRIGGER_MANUAL) {
|
@@ -4391,7 +4396,6 @@
|
|
4391
4396
|
}
|
4392
4397
|
|
4393
4398
|
// Private
|
4394
|
-
|
4395
4399
|
_maybeScheduleHide() {
|
4396
4400
|
if (!this._config.autohide) {
|
4397
4401
|
return;
|