ods-component-lib 1.17.77 → 1.17.80

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
@@ -1285,9 +1285,11 @@ function grid(props, dataGridRef) {
1285
1285
  columnAutoWidth: false,
1286
1286
  focusedRowEnabled: false,
1287
1287
  wordWrapEnabled: false,
1288
- noDataText: "No Data",
1288
+ noDataText: props.noDataLanguage == undefined ? "No Data" : props.noDataLanguage,
1289
1289
  onEditCanceling: props.onEditCanceling,
1290
1290
  onExporting: onExporting,
1291
+ filterSyncEnabled: false,
1292
+ filterValue: null,
1291
1293
  height: window.innerHeight - 164,
1292
1294
  repaintChangesOnly: true,
1293
1295
  remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
@@ -1451,13 +1453,13 @@ function grid(props, dataGridRef) {
1451
1453
  })), React__default.createElement(dataGrid.Summary, null, React__default.createElement(dataGrid.TotalItem, {
1452
1454
  column: "Id",
1453
1455
  summaryType: "count",
1454
- displayFormat: "{0} Total Data"
1456
+ displayFormat: "{0} " + props.TotaDatalLanguage
1455
1457
  }), props.sumaryRowItems && props.sumaryRowItems.map(function (item) {
1456
1458
  return React__default.createElement(dataGrid.TotalItem, {
1457
1459
  column: item.columnName,
1458
1460
  summaryType: item.aggregateFn,
1459
1461
  valueFormat: item.valueFormat ? item.valueFormat : "",
1460
- displayFormat: "Total: {0}"
1462
+ displayFormat: props.TotalLanguage + " : {0}"
1461
1463
  });
1462
1464
  })), React__default.createElement(dataGrid.StateStoring, {
1463
1465
  enabled: true,