@linzjs/step-ag-grid 28.2.4 → 28.4.0
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/package.json
CHANGED
package/src/components/Grid.tsx
CHANGED
|
@@ -755,6 +755,10 @@ export const Grid = <TData extends GridBaseRow = GridBaseRow>({
|
|
|
755
755
|
/>
|
|
756
756
|
);
|
|
757
757
|
}}
|
|
758
|
+
quickFilterParser={(filterStr) => {
|
|
759
|
+
// filter is exact matches exactly groups separated by commas
|
|
760
|
+
return filterStr.split(',').map((str) => str.trim());
|
|
761
|
+
}}
|
|
758
762
|
onModelUpdated={onModelUpdated}
|
|
759
763
|
onGridReady={onGridReady}
|
|
760
764
|
onSortChanged={ensureSelectedRowIsVisible}
|