Breaking changes data table experiments to data table

Hi,

It seems there’re some breaking changes between data_Table_Experiments deprecated and the new dash_table.data_Table.

for data table experiments I was allowing user to select a row in one table which in turn would filter out another table. Is this still possible?

Even this initialization call now fails if I change the import part to ‘import dash_table as dt’:

import dash_table_experiments as dt
dt.DataTable(
                        # Initialise the rows
                        rows=[{}],
                        row_selectable=True,
                        filterable=True,
                        sortable=True,
                        selected_row_indices=[],
                        id='op-table-perc'
                    )