@faasjs/ant-design 0.0.3-beta.56 → 0.0.3-beta.57

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
@@ -1293,7 +1293,7 @@ function Table(props) {
1293
1293
  return true;
1294
1294
  if (!row[item.id] || !row[item.id].length)
1295
1295
  return false;
1296
- return row[item.id].some((v) => v.toLowerCase().includes(value.toLowerCase()));
1296
+ return row[item.id].some((v) => v == null ? void 0 : v.toLowerCase().includes(value.toLowerCase()));
1297
1297
  };
1298
1298
  if (!item.filters && item.filterDropdown !== false)
1299
1299
  item.filterDropdown = ({
package/dist/index.mjs CHANGED
@@ -1299,7 +1299,7 @@ function Table(props) {
1299
1299
  return true;
1300
1300
  if (!row[item.id] || !row[item.id].length)
1301
1301
  return false;
1302
- return row[item.id].some((v) => v.toLowerCase().includes(value.toLowerCase()));
1302
+ return row[item.id].some((v) => v == null ? void 0 : v.toLowerCase().includes(value.toLowerCase()));
1303
1303
  };
1304
1304
  if (!item.filters && item.filterDropdown !== false)
1305
1305
  item.filterDropdown = ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faasjs/ant-design",
3
- "version": "0.0.3-beta.56",
3
+ "version": "0.0.3-beta.57",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",