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 +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -1193,6 +1193,7 @@ var renderMenuItem = function renderMenuItem() {
|
|
|
1193
1193
|
formats: exportFormats
|
|
1194
1194
|
});
|
|
1195
1195
|
};
|
|
1196
|
+
var filterValue = [];
|
|
1196
1197
|
function OdsDataGrid(props) {
|
|
1197
1198
|
var dataGridRef = useRef(null);
|
|
1198
1199
|
return grid(props, dataGridRef);
|
|
@@ -1285,7 +1286,7 @@ function grid(props, dataGridRef) {
|
|
|
1285
1286
|
onEditCanceling: props.onEditCanceling,
|
|
1286
1287
|
onExporting: onExporting,
|
|
1287
1288
|
filterSyncEnabled: false,
|
|
1288
|
-
filterValue:
|
|
1289
|
+
filterValue: filterValue,
|
|
1289
1290
|
height: window.innerHeight - 164,
|
|
1290
1291
|
repaintChangesOnly: true,
|
|
1291
1292
|
remoteOperations: props.remoteOperations !== undefined ? props.remoteOperations : false,
|