@deanwu/vue-component-library 1.2.1 → 1.2.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.
@@ -105569,9 +105569,9 @@ const SCROLL_SIZE = function () {
105569
105569
  right: -1
105570
105570
  };
105571
105571
  this.columns.forEach(col => {
105572
- width.all += col.width;
105572
+ width.all += parseInt(col.width);
105573
105573
  if (col.fixed) {
105574
- width[col.fixed] += col.width;
105574
+ width[col.fixed] += parseInt(col.width);
105575
105575
  }
105576
105576
  });
105577
105577
  return width;