You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Only applicable to Tr within the Tbody: Makes the row expandable and determines if it's expanded or not.
17
+
/** Only applicable to Tr within the Tbody and determines if the expandable row content is expanded or not.
18
18
* To prevent column widths from responding automatically when expandable rows are toggled, the width prop must also be passed into either the th or td component
19
19
*/
20
20
isExpanded?: boolean;
21
+
/** Flag to indicate that a row is expandable. Only applicable to a tr that is intended to collapse or expand. */
22
+
isExpandable?: boolean;
21
23
/** Only applicable to Tr within the Tbody: Whether the row is editable */
22
24
isEditable?: boolean;
23
25
/** Flag which adds hover styles for the clickable table row */
0 commit comments