Passing Table Value to View Params

I have a table with the first column set to render view. When I structure my table to have a style object and a values object I can't pass params to the view. If I structure my data to have all the values at the top level I can pass the data with no issue. What am I missing?

This structure allows me to pass data
image

I can't figure out how to pass data with this structure
image

Params on my Embedded View. I have tried to put a value object inside of my existing value object on this view with no success
image

The correct stucture can be inspected in the default Table component's initial data. It is:

data
  0
    + colName0
      + value
      + style
    + colName1
    + colName2
  1

Your structure is:

data
  0
    + value
    + style
    + colName1
    + colName2
  1

Thanks this worked.