ods-component-lib 1.18.8 → 1.18.9

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
@@ -17337,9 +17337,9 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
17337
17337
  }
17338
17338
  var result = "";
17339
17339
  if (filteredRowCount > 0) {
17340
- result = totalloaded + " Filtered" + (totalRecordCount > 0 ? totalloaded + " Loaded - " + totalRecordCount + " Total" : "");
17340
+ result = "" + totalloaded + props.customSummary.summaryFilteredDataLabel + (totalRecordCount > 0 ? totalloaded + " " + props.customSummary.summaryLoadedDataLabel + ("- " + totalRecordCount) + props.customSummary.summaryTotalDataLabel : " ");
17341
17341
  } else {
17342
- result = totalRecordCount > 0 ? totalloaded + " Loaded - " + totalRecordCount + " Total" : "";
17342
+ result = totalRecordCount > 0 ? totalloaded + " " + props.customSummary.summaryLoadedDataLabel + ("- " + totalRecordCount) + props.customSummary.summaryTotalDataLabel : "";
17343
17343
  }
17344
17344
  return result;
17345
17345
  }, [data, filteredRowCount, loadedPageCount, props.pageSize, totalRecordCount]);
@@ -17463,7 +17463,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
17463
17463
  dataField: "Actionss",
17464
17464
  fixed: true,
17465
17465
  allowSorting: false,
17466
- caption: "",
17466
+ caption: props.actionButtonGroupCaption,
17467
17467
  type: "buttons",
17468
17468
  showInColumnChooser: false,
17469
17469
  cellRender: function cellRender() {