ods-component-lib 1.14.19 → 1.14.21

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
@@ -1232,7 +1232,8 @@ function grid(props) {
1232
1232
  });
1233
1233
  }
1234
1234
  };
1235
- var customizeText = function customizeText(cellInfo) {
1235
+ var _customizeText = function customizeText(cellInfo) {
1236
+ debugger;
1236
1237
  var dateTimeValue = cellInfo.value;
1237
1238
  if (dateTimeValue && cellInfo.column.datatype === 'datetime') {
1238
1239
  var formatedDate = moment(cellInfo.value).format('DD.MM.YYYY HH.mm (ZZ)');
@@ -1329,7 +1330,9 @@ function grid(props) {
1329
1330
  }, col, {
1330
1331
  headerCellRender: headerCellRender,
1331
1332
  cellRender: col.dataField === 'IsActive' || col.dataField === 'Status' ? customizeBooleanColumnRender : "",
1332
- customizeText: customizeText
1333
+ customizeText: function customizeText(col) {
1334
+ return _customizeText(col);
1335
+ }
1333
1336
  }), col.required && React__default.createElement(dataGrid.RequiredRule, {
1334
1337
  message: col.requiredMessage
1335
1338
  }), col.dataField === 'IsActive' && React__default.createElement(dataGrid.HeaderFilter, {