gantri-components 2.79.2 → 2.80.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,6 +37,8 @@ export interface TableProps<TData extends RowData> extends Partial<TableDefaultP
37
37
  * To create collapsable rows, optionally provide the index with a `subRows` key. It should be an array of objects matching the expected data type.
38
38
  */
39
39
  data: TData[];
40
+ /** If your data is collapsable, passing `true` here will expand all the data by default. */
41
+ expandAllRows?: boolean;
40
42
  filters?: FiltersProps;
41
43
  getCellProps?: GetCellProps<TData>;
42
44
  /**