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 and determines if the expandable row content is expanded or not.
17
+
/** Flag indicating whether an "expandable" Tr is expanded or not. Only applicable to a Tr within a Tbody.
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
+
/** Flag indicating that the "control row" Tr has an expandable sibling Tr that is expanded or not. Only applicable to
22
+
* a Tr within a Tbody, and should have the same value as an expandable Tr's isExpanded prop.
23
+
*/
24
+
isContentExpanded?: boolean;
23
25
/** Only applicable to Tr within the Tbody: Whether the row is editable */
24
26
isEditable?: boolean;
25
27
/** Flag which adds hover styles for the clickable table row */
0 commit comments