@faasjs/ant-design 0.0.3-beta.66 → 0.0.3-beta.67

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/index.js CHANGED
@@ -1594,7 +1594,7 @@ function Table(props) {
1594
1594
  }
1595
1595
  }
1596
1596
  setColumns(props.items);
1597
- }, [props.items]);
1597
+ }, [JSON.stringify(props.items)]);
1598
1598
  (0, import_react14.useEffect)(() => {
1599
1599
  if (!props.dataSource || !columns)
1600
1600
  return;
package/dist/index.mjs CHANGED
@@ -1602,7 +1602,7 @@ function Table(props) {
1602
1602
  }
1603
1603
  }
1604
1604
  setColumns(props.items);
1605
- }, [props.items]);
1605
+ }, [JSON.stringify(props.items)]);
1606
1606
  useEffect6(() => {
1607
1607
  if (!props.dataSource || !columns)
1608
1608
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/ant-design",
3
- "version": "0.0.3-beta.66",
3
+ "version": "0.0.3-beta.67",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",