asma-core-ui 2.19.73 → 2.19.75
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/asma-core-ui.es.js +2 -2
- package/dist/src/components/pickers/date-picker/components/StyledCalendarPickerFooter.d.ts +1 -0
- package/dist/src/components/table/StyledTable.d.ts +1 -1
- package/dist/src/components/table/components/TableFooter.d.ts +7 -0
- package/dist/src/components/table/types.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare const StyledCalendarPickerFooter: React.FC<{
|
|
|
5
5
|
isNb: boolean;
|
|
6
6
|
selected: Matcher | Matcher[] | undefined;
|
|
7
7
|
removeSelection: (e: React.MouseEvent) => void;
|
|
8
|
+
onClear: (() => void) | undefined;
|
|
8
9
|
month: Date | undefined;
|
|
9
10
|
setMonth: Dispatch<SetStateAction<Date | undefined>>;
|
|
10
11
|
}>;
|
|
@@ -11,4 +11,4 @@ import { type StyledTableProps } from './types';
|
|
|
11
11
|
*/
|
|
12
12
|
export declare const StyledTable: <TData extends {
|
|
13
13
|
id: string | number;
|
|
14
|
-
}, TCustomData = Record<string, unknown>>({ actions, columns, data, customSubRowData, initialState, enableRowSelection, headerPin, loading, noRowsOverlay, tableInstanceRef, className, rowHeight, tdClassName, getRowClassName, onRowClick, renderSubRows, customActionsNode, focusable, stickyHeader, expandArrow, height, locale, ...rest }: StyledTableProps<TData, TCustomData>) => JSX.Element;
|
|
14
|
+
}, TCustomData = Record<string, unknown>>({ actions, columns, data, customSubRowData, initialState, enableRowSelection, headerPin, loading, noRowsOverlay, tableInstanceRef, className, rowHeight, tdClassName, getRowClassName, onRowClick, renderSubRows, customActionsNode, focusable, stickyHeader, expandArrow, height, locale, footer, ...rest }: StyledTableProps<TData, TCustomData>) => JSX.Element;
|
|
@@ -44,6 +44,7 @@ export interface StyledTableProps<TData, TCustomData> extends Omit<TableOptions<
|
|
|
44
44
|
row: TData;
|
|
45
45
|
}) => ReactElement;
|
|
46
46
|
getRowSelectionIds?: (ids: string[]) => void;
|
|
47
|
+
footer?: (table: Table<TData>) => ReactNode;
|
|
47
48
|
}
|
|
48
49
|
export declare const SELECT_COLUMN_ID = "select";
|
|
49
50
|
export declare const EXPAND_COLUMN_ID = "expand-column-id";
|