-
Notifications
You must be signed in to change notification settings - Fork 370
feat(Table): use pf check/radio for selects #12045
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(Table): use pf check/radio for selects #12045
Conversation
Signed-off-by: gitdallas <[email protected]>
Preview: https://pf-react-pr-12045.surge.sh A11y report: https://pf-react-pr-12045-a11y.surge.sh |
Signed-off-by: gitdallas <[email protected]>
/** id for the input element - required by Checkbox and Radio components */ | ||
id?: string; | ||
/** name for the input element - required by Radio component */ | ||
name?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if there's something extra we could/should do with the types here to make these required depending on the passed selectVariant
🤔
Though that might be really hard to do without a breaking change, so this isn't a blocker.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙈
packages/react-table/src/components/Table/utils/transformers.test.tsx
Outdated
Show resolved
Hide resolved
Signed-off-by: gitdallas <[email protected]>
Closes #12018