ods-component-lib 1.17.1 → 1.17.3

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.
@@ -1220,6 +1220,7 @@ function grid(props) {
1220
1220
  };
1221
1221
  var fileName = props.exportFileName ? props.exportFileName + moment().format("YYYYMMDD") : "DatagridExportFile" + moment().format("YYYYMMDD");
1222
1222
  var onExporting = function onExporting(e) {
1223
+ debugger;
1223
1224
  if (e.format === 'xlsx') {
1224
1225
  var workbook = new Workbook();
1225
1226
  exportDataGrid({
@@ -1265,7 +1266,10 @@ function grid(props) {
1265
1266
  columnAutoWidth: false,
1266
1267
  onEditCanceling: props.onEditCanceling,
1267
1268
  onExporting: onExporting,
1268
- height: (_ref = props.height !== undefined) != null ? _ref : props.height
1269
+ height: (_ref = props.height !== undefined) != null ? _ref : props.height,
1270
+ style: {
1271
+ maxWidth: "100%"
1272
+ }
1269
1273
  }, React.createElement(Paging, {
1270
1274
  enabled: true,
1271
1275
  defaultPageSize: props.pageSize
@@ -1332,8 +1336,7 @@ function grid(props) {
1332
1336
  key: col.dataField
1333
1337
  }, col, {
1334
1338
  headerCellRender: headerCellRender,
1335
- cellRender: customizeBooleanColumnRender,
1336
- calculateCellValue: col.calculateCellValue
1339
+ cellRender: customizeBooleanColumnRender
1337
1340
  }), col.required && React.createElement(RequiredRule, {
1338
1341
  message: col.requiredMessage
1339
1342
  }), col.dataField === 'IsActive' && React.createElement(HeaderFilter, {