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
/** Flag indicating this table should be striped. This property works best for a single <tbody> table. Striping may also be done manually by applying this property to Tbody and Tr components. */
59
59
isStriped?: boolean;
60
-
/** Flag indicating this table contains expandable rows to maintain proper striping */
60
+
/** Flag indicating this table contains expandable rows. */
61
61
isExpandable?: boolean;
62
+
/** Flag indicating whether expandable rows within the table have animations. Expandable rows cannot be dynamically rendered. This prop
63
+
* will be removed in the next breaking change, with the default behavior becoming animations always being enabled.
64
+
*/
65
+
hasAnimations?: boolean;
62
66
/** Flag indicating this table's rows will not have the inset typically reserved for expanding/collapsing rows in a tree table. Intended for use on tree tables with no visible rows with children. */
63
67
hasNoInset?: boolean;
64
68
/** Collection of column spans for nested headers. Deprecated: see https://github.com/patternfly/patternfly/issues/4584 */
0 commit comments