How to pass Tabulator configuration argument from Tabulator.from_param

It seems that Tabulator.from_param doesn’t support passing configuration dict.

Param pane was given unknown keyword argument(s) for ‘df’ parameter with a widget of type <class ‘panel.widgets.tables.Tabulator’>. The following keyword arguments could not be applied: ‘configuration’.

class SomeParam(param.Parameterized):
    df = param.DataFrame(pd.DataFrame({'a': [1,2], 'b': [8,9]}, index=[0, 1]))

params = SomeParam()

table = pn.widgets.Tabulator.from_param(params.param.df, configuration= {
    'columnDefaults': {
        'headerSort': False,
    }
})

Am I doing it wrong or how do we configure Tabulator’s configuration?

This is not yet implemented, see Static configuration not working on Tabulator object when created from param · Issue #4933 · holoviz/panel · GitHub