While working on the new UX for the <TableListView /> in Kibana I need to be able to control the search bar query term.
The <EuiInMemoryTable /> allows us to pass the query to the search prop
<EuiInMemoryTable
search={{ query: 'my search' }}
/>
But doing so filters down the items provided, as it executes the query against the items to find a match.
What I need is to be able to control the query without executing it against the provided items as the table items are loaded dynamically and already filtered down by the saved object client.
While working on the new UX for the
<TableListView />in Kibana I need to be able to control the search bar query term.The
<EuiInMemoryTable />allows us to pass the query to thesearchpropBut doing so filters down the
itemsprovided, as it executes the query against theitemsto find a match.What I need is to be able to control the query without executing it against the provided items as the table items are loaded dynamically and already filtered down by the saved object client.