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.esm.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
|
*/
|
@@ -643,7 +643,7 @@ class Config {
|
|
643
643
|
* Constants
|
644
644
|
*/
|
645
645
|
|
646
|
-
const VERSION = '5.3.
|
646
|
+
const VERSION = '5.3.7';
|
647
647
|
|
648
648
|
/**
|
649
649
|
* Class definition
|
@@ -669,6 +669,8 @@ class BaseComponent extends Config {
|
|
669
669
|
this[propertyName] = null;
|
670
670
|
}
|
671
671
|
}
|
672
|
+
|
673
|
+
// Private
|
672
674
|
_queueCallback(callback, element, isAnimated = true) {
|
673
675
|
executeAfterTransition(callback, element, isAnimated);
|
674
676
|
}
|
@@ -1600,11 +1602,11 @@ class Collapse extends BaseComponent {
|
|
1600
1602
|
this._element.style[dimension] = '';
|
1601
1603
|
this._queueCallback(complete, this._element, true);
|
1602
1604
|
}
|
1605
|
+
|
1606
|
+
// Private
|
1603
1607
|
_isShown(element = this._element) {
|
1604
1608
|
return element.classList.contains(CLASS_NAME_SHOW$7);
|
1605
1609
|
}
|
1606
|
-
|
1607
|
-
// Private
|
1608
1610
|
_configAfterMerge(config) {
|
1609
1611
|
config.toggle = Boolean(config.toggle); // Coerce string values
|
1610
1612
|
config.parent = getElement(config.parent);
|
@@ -1847,6 +1849,9 @@ class Dropdown extends BaseComponent {
|
|
1847
1849
|
this._element.setAttribute('aria-expanded', 'false');
|
1848
1850
|
Manipulator.removeDataAttribute(this._menu, 'popper');
|
1849
1851
|
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
1852
|
+
|
1853
|
+
// Explicitly return focus to the trigger element
|
1854
|
+
this._element.focus();
|
1850
1855
|
}
|
1851
1856
|
_getConfig(config) {
|
1852
1857
|
config = super._getConfig(config);
|
@@ -2959,7 +2964,6 @@ const uriAttributes = new Set(['background', 'cite', 'href', 'itemtype', 'longde
|
|
2959
2964
|
*
|
2960
2965
|
* Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38
|
2961
2966
|
*/
|
2962
|
-
// eslint-disable-next-line unicorn/better-regex
|
2963
2967
|
const SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;
|
2964
2968
|
const allowedAttribute = (attribute, allowedAttributeList) => {
|
2965
2969
|
const attributeName = attribute.nodeName.toLowerCase();
|
@@ -3503,6 +3507,7 @@ class Tooltip extends BaseComponent {
|
|
3503
3507
|
if (trigger === 'click') {
|
3504
3508
|
EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, event => {
|
3505
3509
|
const context = this._initializeOnDelegatedTarget(event);
|
3510
|
+
context._activeTrigger[TRIGGER_CLICK] = !(context._isShown() && context._activeTrigger[TRIGGER_CLICK]);
|
3506
3511
|
context.toggle();
|
3507
3512
|
});
|
3508
3513
|
} else if (trigger !== TRIGGER_MANUAL) {
|
@@ -4368,7 +4373,6 @@ class Toast extends BaseComponent {
|
|
4368
4373
|
}
|
4369
4374
|
|
4370
4375
|
// Private
|
4371
|
-
|
4372
4376
|
_maybeScheduleHide() {
|
4373
4377
|
if (!this._config.autohide) {
|
4374
4378
|
return;
|