ods-component-lib 1.17.80 → 1.17.82

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
@@ -1197,6 +1197,7 @@ var renderMenuItem = function renderMenuItem() {
1197
1197
  formats: exportFormats
1198
1198
  });
1199
1199
  };
1200
+ var filterValue = [];
1200
1201
  function OdsDataGrid(props) {
1201
1202
  var dataGridRef = React.useRef(null);
1202
1203
  return grid(props, dataGridRef);
@@ -1289,7 +1290,7 @@ function grid(props, dataGridRef) {
1289
1290
  onEditCanceling: props.onEditCanceling,
1290
1291
  onExporting: onExporting,
1291
1292
  filterSyncEnabled: false,
1292
- filterValue: null,
1293
+ filterValue: filterValue,
1293
1294
  height: window.innerHeight - 164,
1294
1295
  repaintChangesOnly: true,
1295
1296
  remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,