Perspective Table cell view render

What version? The view params passed to a cell configured as a view should have the shape:

viewParams = {
    ...params, // Merged params listed in the column configuration object of this column
    column, // The column name as defined in the field property of the column configuration object
    columnIndex, // The index of the column
    row, // The true index of the row relative to the source data
    rowIndex, // The visual index of the row relative to sorting, paging, and filtering
    value, // The value of the table cell
    rowData // The entire rows data as a JsonObject
};