@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.
- package/dist/vue-component-library.common.js +2 -2
- package/dist/vue-component-library.common.js.map +1 -1
- package/dist/vue-component-library.umd.js +2 -2
- package/dist/vue-component-library.umd.js.map +1 -1
- package/dist/vue-component-library.umd.min.js +1 -1
- package/dist/vue-component-library.umd.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|