@indigina/ui-kit 1.1.288 → 1.1.289

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.
@@ -8636,7 +8636,9 @@ class KitGridExportComponent {
8636
8636
  const title = this.translateService.instant(column.title)
8637
8637
  .replaceAll(' ', '')
8638
8638
  .replaceAll('/', '-')
8639
- .replaceAll('\'', '');
8639
+ .replaceAll('\'', '')
8640
+ .replaceAll('(', '_')
8641
+ .replaceAll(')', '_');
8640
8642
  const value = this.gridCellService.createCellValue(column.type, column.field, row, this.translationMap());
8641
8643
  if (value) {
8642
8644
  return this.wrapWithElement(value, title, 2, false, true);