DevoInc / genesys-ui

Monorepo containing the codebase for the Genesys UI components library.
https://devoinc.github.io/genesys-ui/
MIT License
2 stars 0 forks source link

Allow tables to access second level or more of data #75

Open alberto-ag-devo opened 1 month ago

alberto-ag-devo commented 1 month ago

What is the problem this feature will solve?

Make this type of model data printable in the table rows

interface a {
  adata: string;
  bdata: b;
}

interface b {
  bChildData: string;
}

What is the feature you are proposing to solve the problem?

-

What alternatives have you considered?

No response