@ssplib/react-components 0.0.130 → 0.0.131

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.
@@ -242,7 +242,7 @@ function Table({ columns, fetchFunc, emptyMsg = {
242
242
  });
243
243
  const csvData = '\uFEFF' + header + values.join('\n');
244
244
  if (values.length > 0)
245
- zip.file(`${objKey}.csv`, csvData);
245
+ zip.file(`${objKey.normalize('NFD').replace(/[\u0300-\u036f]/g, '')}.csv`, csvData);
246
246
  });
247
247
  // // download
248
248
  var link = window.document.createElement('a');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ssplib/react-components",
3
- "version": "0.0.130",
3
+ "version": "0.0.131",
4
4
  "description": "SSP React Components",
5
5
  "main": "index.js",
6
6
  "author": "Pedro Henrique <sr.hudrick@gmail.com>",