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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * Bootstrap v5.3.2 (https://getbootstrap.com/)
3
- * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
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.2';
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 !== '#' ? parseSelector(hrefAttribute.trim()) : null;
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: [],