@openli1115/lowcode-edit-pro-table 1.0.38 → 1.0.39

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.
@@ -319,10 +319,13 @@ var EditProTable = function EditProTable(_ref) {
319
319
  } else {
320
320
  newData.push(restRow);
321
321
  }
322
- Object.keys(newData).forEach(function (key) {
323
- if (newData[key] && newData[key]._isAMomentObject) {
324
- newData[key] = moment(newData[key]).toISOString();
325
- }
322
+ newData.forEach(function (row) {
323
+ // console.log('row', row)
324
+ Object.keys(row).forEach(function (key) {
325
+ if (row[key] && row[key]._isAMomentObject) {
326
+ row[key] = moment(row[key]).toISOString();
327
+ }
328
+ });
326
329
  });
327
330
  handleUpdateData(newData);
328
331
  case 1:
@@ -324,10 +324,13 @@ var EditProTable = function EditProTable(_ref) {
324
324
  } else {
325
325
  newData.push(restRow);
326
326
  }
327
- Object.keys(newData).forEach(function (key) {
328
- if (newData[key] && newData[key]._isAMomentObject) {
329
- newData[key] = (0, _moment["default"])(newData[key]).toISOString();
330
- }
327
+ newData.forEach(function (row) {
328
+ // console.log('row', row)
329
+ Object.keys(row).forEach(function (key) {
330
+ if (row[key] && row[key]._isAMomentObject) {
331
+ row[key] = (0, _moment["default"])(row[key]).toISOString();
332
+ }
333
+ });
331
334
  });
332
335
  handleUpdateData(newData);
333
336
  case 1:
@@ -101,7 +101,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
101
101
  packageName = '@openli1115/lowcode-edit-pro-table';
102
102
  }
103
103
  if (version === void 0) {
104
- version = '1.0.38';
104
+ version = '1.0.39';
105
105
  }
106
106
  if (basicLibraryVersion === void 0) {
107
107
  basicLibraryVersion = {
@@ -106,7 +106,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
106
106
  packageName = '@openli1115/lowcode-edit-pro-table';
107
107
  }
108
108
  if (version === void 0) {
109
- version = '1.0.38';
109
+ version = '1.0.39';
110
110
  }
111
111
  if (basicLibraryVersion === void 0) {
112
112
  basicLibraryVersion = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openli1115/lowcode-edit-pro-table",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "@openli1115/lowcode-edit-pro-table",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -100,10 +100,10 @@
100
100
  },
101
101
  "componentConfig": {
102
102
  "isComponentLibrary": true,
103
- "materialSchema": "https://unpkg.com/@openli1115/lowcode-edit-pro-table@1.0.38/build/lowcode/assets-prod.json"
103
+ "materialSchema": "https://unpkg.com/@openli1115/lowcode-edit-pro-table@1.0.39/build/lowcode/assets-prod.json"
104
104
  },
105
105
  "lcMeta": {
106
106
  "type": "component"
107
107
  },
108
- "homepage": "https://unpkg.com/@openli1115/lowcode-edit-pro-table@1.0.38/build/index.html"
108
+ "homepage": "https://unpkg.com/@openli1115/lowcode-edit-pro-table@1.0.39/build/index.html"
109
109
  }