@danielgindi/selectbox 1.0.124 → 1.0.125

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.
package/lib/DropList.js CHANGED
@@ -1719,7 +1719,7 @@ class DropList {
1719
1719
  }
1720
1720
 
1721
1721
  _handleMouseOver(event, itemEl) {
1722
- this._focus(event, itemEl, true);
1722
+ this._focus(event, itemEl, null, true);
1723
1723
  }
1724
1724
 
1725
1725
  _hookTouchEvents() {
@@ -1785,7 +1785,7 @@ class DropList {
1785
1785
  let itemEl = p.focusItemEl || // focused item
1786
1786
  p.el.firstChild; // or the first item
1787
1787
 
1788
- this._focus(event, itemEl, false);
1788
+ this._focus(event, itemEl, null, false);
1789
1789
  })
1790
1790
  .add(p.el, 'blur', () => {
1791
1791
  setTimeout(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielgindi/selectbox",
3
- "version": "1.0.124",
3
+ "version": "1.0.125",
4
4
  "description": "A collection of dom utilities. So you can work natively with the dom without dom frameworks.",
5
5
  "main": "dist/lib.cjs.min.js",
6
6
  "module": "lib/index.js",