ods-component-lib 1.17.171 → 1.17.172

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
@@ -1291,10 +1291,11 @@ function grid(props, dataGridRef) {
1291
1291
  excelCell = _ref.excelCell;
1292
1292
  if (gridCell.rowType === 'data') {
1293
1293
  if (gridCell.column.dataField === 'IsActive') {
1294
- console.log("gridCell.value", gridCell.value);
1295
- console.log(" excelCell.value", excelCell.value);
1296
1294
  if (localStorage.getItem("locale") === "tr") excelCell.value = excelCell.value ? "Aktif" : "Pasif";else if (localStorage.getItem("locale") === "en") excelCell.value = excelCell.value ? "Active" : "Passive";else excelCell.value = excelCell.value;
1297
1295
  }
1296
+ if (props.onExportingCustom) {
1297
+ props.onExportingCustom(gridCell, excelCell);
1298
+ }
1298
1299
  }
1299
1300
  }
1300
1301
  }).then(function () {