@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.
- package/dist/components/data-display/DataTable/DataTable.types.d.ts +4 -0
- package/dist/components/data-display/DataTable/TableColumnVisibility.d.ts +1 -1
- package/dist/custom-elements.js +1237 -1202
- package/dist/custom-elements.js.map +1 -1
- package/dist/index.js +1022 -987
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -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;
|