ods-component-lib 1.17.85 → 1.17.87

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.
@@ -1243,15 +1243,11 @@ function grid(props, dataGridRef) {
1243
1243
  var state = JSON.parse(localStorage.getItem(props.exportFileName + "Storage"));
1244
1244
  if (localStorage.getItem(props.exportFileName + "Storage")) {
1245
1245
  state.selectedRowKeys = [];
1246
- state.filterValue = [];
1247
- state.selectionFilter = [];
1248
1246
  }
1249
1247
  return state;
1250
1248
  };
1251
1249
  var customSave = function customSave(state) {
1252
1250
  state.selectedRowKeys = [];
1253
- state.filterValue = [];
1254
- state.selectionFilter = [];
1255
1251
  localStorage.setItem(props.exportFileName + "Storage", JSON.stringify(state));
1256
1252
  };
1257
1253
  useEffect(function () {
@@ -1284,8 +1280,7 @@ function grid(props, dataGridRef) {
1284
1280
  noDataText: props.noDataLanguage == undefined ? "No Data" : props.noDataLanguage,
1285
1281
  onEditCanceling: props.onEditCanceling,
1286
1282
  onExporting: onExporting,
1287
- filterSyncEnabled: props.filterSyncEnabled,
1288
- filterValue: props.filterValue,
1283
+ filterSyncEnabled: true,
1289
1284
  height: window.innerHeight - 164,
1290
1285
  repaintChangesOnly: true,
1291
1286
  remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,