LaunchPadLab / lp-components

Our Components
http://lp-components.herokuapp.com
MIT License
5 stars 1 forks source link

Ability pass other props or rest to Cell Component #458

Closed inveterateliterate closed 2 years ago

inveterateliterate commented 3 years ago

I wanted to be able to pass some other props to my cell without creating a custom cell component, namely I just wanted to add a cypress tag but the cell just renders the value:

<Column
    name="dateCompleted"
    data-cy="dateCompleted"
/>

Right now the default cell component only takes a few defined props: https://github.com/LaunchPadLab/lp-components/blob/master/src/tables/components/table-row.js#L13

Other things we might want to pass could be some accessibility tags as well, such as aria-label, etc, so might be worthwhile to have the component take everything passed to it.