-
Notifications
You must be signed in to change notification settings - Fork 375
Closed
Labels
Breaking change 💥this change requires a major release and has API changes.this change requires a major release and has API changes.PF5
Milestone
Description
There is only one item in the SelectableRowObject. Previously it also had a type that was removed making the need of the object obsolete.
Suggestion to make this update:
- Remove the
selectableRowprop
selectableRow?: SelectableRowObject;
Replace it with a prop calledonSelectableRowChange
/** Callback that executes when the screen reader accessible element receives a change event */ onSelectableRowChange?: (event: React.FormEvent<HTMLInputElement>, id: string) => void;
(Note: the event should be first in parameter)
- Remove the SelectableRowObject
export interface SelectableRowObject { /** Callback that executes when the screen reader accessible element receives a change event */ onChange: (id: string, event: React.FormEvent<HTMLInputElement>) => void; }
Metadata
Metadata
Assignees
Labels
Breaking change 💥this change requires a major release and has API changes.this change requires a major release and has API changes.PF5
Type
Projects
Status
Done