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