@danielgindi/selectbox 1.0.108 → 1.0.110

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/SelectBox.js CHANGED
@@ -1448,7 +1448,7 @@ class SelectBox {
1448
1448
  this.openList();
1449
1449
  }
1450
1450
 
1451
- this._scheduleSync();
1451
+ this._scheduleSync('render_base');
1452
1452
  return this;
1453
1453
  }
1454
1454
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielgindi/selectbox",
3
- "version": "1.0.108",
3
+ "version": "1.0.110",
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",
package/vue/SelectBox.vue CHANGED
@@ -286,10 +286,6 @@
286
286
  opts.additionalClasses = this.additionalDroplistClassesList;
287
287
  }
288
288
 
289
- if (this.direction) {
290
- opts.direction = this.direction;
291
- }
292
-
293
289
  if (typeof this.autoCheckGroupChildren === 'boolean' && this.multi) {
294
290
  opts.autoCheckGroupChildren = this.autoCheckGroupChildren;
295
291
  }
@@ -736,6 +732,7 @@
736
732
  let box = new SelectBox({
737
733
  el: this.el,
738
734
  baseClass: this.baseClass,
735
+ direction: this.direction,
739
736
  disabled: this.disabled,
740
737
  clearable: this.clearable,
741
738
  hasOpenIndicator: this.hasOpenIndicator,