ods-component-lib 1.18.47 → 1.18.48

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.
@@ -16716,7 +16716,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
16716
16716
  var renderTotalPaging = useCallback(function () {
16717
16717
  var result = "";
16718
16718
  if (totalPageCount > 1) {
16719
- result = props.customSummary.summaryTotalPageCountLabel + (":" + loadedPageCount + " / " + totalPageCount);
16719
+ result = props.customSummary.summaryTotalPageCountLabel + (" " + loadedPageCount + " / " + totalPageCount);
16720
16720
  }
16721
16721
  return result;
16722
16722
  }, [loadedPageCount, totalPageCount]);
@@ -16985,7 +16985,7 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
16985
16985
  displayFormat: "customizeText",
16986
16986
  customizeText: renderTotal
16987
16987
  }), React.createElement(TotalItem, {
16988
- column: columns[columns.length - 1].dataField,
16988
+ column: columns[2].dataField,
16989
16989
  summaryType: "custom",
16990
16990
  displayFormat: "customizeText",
16991
16991
  customizeText: renderTotalPaging