-
Notifications
You must be signed in to change notification settings - Fork 81
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
feat: Add input onChange handler to ComboBox #1689
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ export { Grid } from './components/grid/Grid/Grid' | |
/** Form components */ | ||
export { CharacterCount } from './components/forms/CharacterCount/CharacterCount' | ||
export { Checkbox } from './components/forms/Checkbox/Checkbox' | ||
export { ComboBox } from './components/forms/ComboBox/ComboBox' | ||
export { ComboBox, ComboBoxOption } from './components/forms/ComboBox/ComboBox' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My understanding here is that ComboBoxOption used mostly for internal type safety, but now with the onChange handler, we expose it in case someone wants to use that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this was actually unrelated to the |
||
export { DateInput } from './components/forms/DateInput/DateInput' | ||
export { DateInputGroup } from './components/forms/DateInputGroup/DateInputGroup' | ||
export { DatePicker } from './components/forms/DatePicker/DatePicker' | ||
|
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 also moved the custom props for these elements up, to avoid mistakenly overwriting required props