helppeople-ui 1.4.0 → 1.4.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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TableProps as AntTableProps } from 'antd';
|
|
2
2
|
export interface CustomTableProps<T> extends AntTableProps<T> {
|
|
3
|
+
containerClassName?: string;
|
|
3
4
|
}
|
|
4
|
-
declare const CustomTable: <T extends object>({ columns, dataSource, pagination, loading, ...rest }: CustomTableProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
declare const CustomTable: <T extends object>({ columns, dataSource, pagination, loading, scroll, containerClassName, ...rest }: CustomTableProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
5
6
|
export default CustomTable;
|