@fattureincloud/fic-design-system 0.10.2-tmp-3 → 0.10.2-tmp-4
Sign up to get free protection for your applications and to get access to all the features.
@@ -5,6 +5,9 @@ interface LoadingCellProps {
|
|
5
5
|
maxWidth?: number;
|
6
6
|
align: 'center' | 'right' | 'left';
|
7
7
|
isRowActionCell?: boolean;
|
8
|
+
columnsBreakpointWidth: number;
|
9
|
+
fixedWidthCells: boolean;
|
10
|
+
isCheckboxCell: boolean;
|
8
11
|
}
|
9
|
-
declare const LoadingCell: ({ isActionCell, minWidth, maxWidth, align, isRowActionCell }: LoadingCellProps) => JSX.Element;
|
12
|
+
declare const LoadingCell: ({ isActionCell, minWidth, maxWidth, align, isRowActionCell, columnsBreakpointWidth, fixedWidthCells, isCheckboxCell, }: LoadingCellProps) => JSX.Element;
|
10
13
|
export default LoadingCell;
|
@@ -6,4 +6,6 @@ export declare const SortIndicator: import("styled-components").StyledComponent<
|
|
6
6
|
export declare const PaginationContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
7
7
|
export declare const HeaderBodyWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
8
8
|
isLoading: boolean;
|
9
|
+
fixedWidthCells: boolean;
|
10
|
+
isTableEmpty?: boolean | undefined;
|
9
11
|
}, never>;
|