@bfrs/agentic-components 0.3.6 → 0.3.7

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.
@@ -169,5 +169,9 @@ export type TableColumnVisibilityProps = {
169
169
  label?: ReactNode;
170
170
  resetLabel?: ReactNode;
171
171
  onReset?: () => void;
172
+ /** Label for the "Show all" footer button. Defaults to "Show all". */
173
+ showAllLabel?: ReactNode;
174
+ /** Override the "Show all" action. Defaults to making every column visible. */
175
+ onShowAll?: () => void;
172
176
  className?: string;
173
177
  };
@@ -1,2 +1,2 @@
1
1
  import { TableColumnVisibilityProps } from './DataTable.types';
2
- export declare function TableColumnVisibility({ columns, visibleColumnIds, onVisibleColumnIdsChange, label, resetLabel, onReset, className }: TableColumnVisibilityProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function TableColumnVisibility({ columns, visibleColumnIds, onVisibleColumnIdsChange, label, resetLabel, onReset, showAllLabel, onShowAll, className }: TableColumnVisibilityProps): import("react/jsx-runtime").JSX.Element;