@lemon-fe/components 0.1.83 → 0.1.84

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.
@@ -316,9 +316,11 @@ function BaseTable(props) {
316
316
  var newColumns = traverse(columns);
317
317
 
318
318
  if (isFixedLayout && !hasAutoWidthCol) {
319
- newColumns.push({
319
+ var emptyCol = {
320
320
  title: ''
321
- });
321
+ };
322
+ newColumns.push(emptyCol);
323
+ flattenCols.push(emptyCol);
322
324
  }
323
325
 
324
326
  return [newColumns, flattenCols];
@@ -338,7 +338,7 @@ function Filter(props) {
338
338
 
339
339
  var handleFinish = function handleFinish() {
340
340
  if (onChange) {
341
- onChange(form.getFieldsValue(true));
341
+ onChange(_objectSpread({}, form.getFieldsValue(true)));
342
342
  }
343
343
  };
344
344
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lemon-fe/components",
3
- "version": "0.1.83",
3
+ "version": "0.1.84",
4
4
  "description": "> TODO: description",
5
5
  "author": "鲁盛杰 <lusj@cnlemon.net>",
6
6
  "homepage": "",
@@ -44,5 +44,5 @@
44
44
  "react": "^17.0.2",
45
45
  "react-dom": "^17.0.2"
46
46
  },
47
- "gitHead": "c46d732e1c08a3217d196359809778796589745d"
47
+ "gitHead": "ae233db2d69aafb8ea66f3df49e8be7f4820b7ad"
48
48
  }