@danielgindi/selectbox 1.0.134 → 1.0.136

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
@@ -912,6 +912,8 @@ class DropList {
912
912
  // Now set the width of the dropdown
913
913
  if (positionOptions.updateWidth || typeof positionOptions.updateWidth === 'number') {
914
914
  this._updateWidth(positionOptions);
915
+ } else {
916
+ this._updateWidth();
915
917
  }
916
918
 
917
919
  // How much space is there above, and how much below?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielgindi/selectbox",
3
- "version": "1.0.134",
3
+ "version": "1.0.136",
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",
@@ -174,7 +174,7 @@ ul.droplist {
174
174
 
175
175
  li.droplist__item_child.droplist__item_single,
176
176
  li.droplist__item_child.droplist__item_multi_nocheck {
177
- padding-left: 0;
177
+ padding-left: 11px;
178
178
  padding-right: 24px;
179
179
  }
180
180