@bluemarble/bm-components 0.0.76 → 0.0.78
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.
|
@@ -27,6 +27,8 @@ interface GridProps {
|
|
|
27
27
|
rowsPerPage: number;
|
|
28
28
|
onPageChange: (pageNumber: number) => void;
|
|
29
29
|
setRowsPerPage: (rows: number) => void;
|
|
30
|
+
isLoading?: boolean;
|
|
31
|
+
hideFooter?: boolean;
|
|
30
32
|
}
|
|
31
|
-
export declare function BaseGrid({ columns, children, fixedColumns, paperProps, tableBodyProps, tableHeadProps, tableProps, sortedDirection, sortedBy, onSortBy, dense, striped, bordered, currentPage, totalNumberOfPages, onPageChange, rowsPerPage, setRowsPerPage, rowsPerPageOptions }: GridProps): JSX.Element;
|
|
33
|
+
export declare function BaseGrid({ columns, children, fixedColumns, paperProps, tableBodyProps, tableHeadProps, tableProps, sortedDirection, sortedBy, onSortBy, dense, striped, bordered, currentPage, totalNumberOfPages, onPageChange, rowsPerPage, setRowsPerPage, rowsPerPageOptions, hideFooter, isLoading }: GridProps): JSX.Element;
|
|
32
34
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -221,8 +221,10 @@ interface GridProps {
|
|
|
221
221
|
rowsPerPage: number;
|
|
222
222
|
onPageChange: (pageNumber: number) => void;
|
|
223
223
|
setRowsPerPage: (rows: number) => void;
|
|
224
|
+
isLoading?: boolean;
|
|
225
|
+
hideFooter?: boolean;
|
|
224
226
|
}
|
|
225
|
-
declare function BaseGrid({ columns, children, fixedColumns, paperProps, tableBodyProps, tableHeadProps, tableProps, sortedDirection, sortedBy, onSortBy, dense, striped, bordered, currentPage, totalNumberOfPages, onPageChange, rowsPerPage, setRowsPerPage, rowsPerPageOptions }: GridProps): JSX.Element;
|
|
227
|
+
declare function BaseGrid({ columns, children, fixedColumns, paperProps, tableBodyProps, tableHeadProps, tableProps, sortedDirection, sortedBy, onSortBy, dense, striped, bordered, currentPage, totalNumberOfPages, onPageChange, rowsPerPage, setRowsPerPage, rowsPerPageOptions, hideFooter, isLoading }: GridProps): JSX.Element;
|
|
226
228
|
|
|
227
229
|
declare type FilterCompareType = 'gte' | 'lte' | 'lt' | 'gt' | 'equal' | 'in';
|
|
228
230
|
declare type FilterProps = {
|