We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
As a developer
I want to be able use the Table component with ease
Table
so that I can easily import it into my react projects
Table currently receives the below props, we need to reduce the number of props required in order to use this components
customHeaderLabels
customHeaderLabels={[ { label: 'Test', data: 'id' }, { label: 'position', data: 'position' }, { label: 'name', data: 'name' }, { label: 'weight', data: 'weight' }, { label: 'symbol', data: 'symbol' }, { label: 'actions', data: 'actions' }, ]}
We would like to offer the developer using FormGroup the ability to add items with the same label and value like so:
FormGroup
customHeaderLabels={['Test', 'position', 'weight', 'symbol', 'actions'] }
data should be derived from a default value e.g. test-1 for the Test customHeaderLabel
data
test-1
Test
columnsToOmit={['symbol']}
customHeaderLabel
Important: please use release/0.4 as base branch
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As a developer
I want to be able use the
Table
component with easeso that I can easily import it into my react projects
Table currently receives the below props, we need to reduce the number of props required in order to use this components
IMPORTANT: Please retain pre-existing functionality and add additional properties if needed.
customHeaderLabels
into aTable
, you need to pass in an array of object with the following properties.We would like to offer the developer using
FormGroup
the ability to add items with the same label and value like so:data
should be derived from a default value e.g.test-1
for theTest
customHeaderLabelcolumnsToOmit={['symbol']}
could be provided along side thecustomHeaderLabel
in thecustomHeaderLabels
arrayImportant: please use release/0.4 as base branch
The text was updated successfully, but these errors were encountered: