ados-rcm 1.1.411 → 1.1.412
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/AModule/AComponents/ATable/ATable.d.ts +6 -0
- package/dist/AModule/AComponents/ATable/ATableBody.d.ts +2 -0
- package/dist/index.cjs.js +111 -111
- package/dist/index.es.js +8050 -8045
- package/package.json +1 -1
@@ -589,6 +589,12 @@ export interface IATableProps<T extends IItem> {
|
|
589
589
|
* Description : placeholder of ATable.
|
590
590
|
*/
|
591
591
|
placeholder?: string;
|
592
|
+
/**
|
593
|
+
* rowHeight? : number
|
594
|
+
*
|
595
|
+
* Description : rowHeight of ATable.
|
596
|
+
*/
|
597
|
+
rowHeight?: number;
|
592
598
|
/**
|
593
599
|
* usePagination? : TUseValues<IATablePagination>
|
594
600
|
*
|
@@ -24,6 +24,7 @@ interface IATableBodyProps<T extends IItem> {
|
|
24
24
|
showRows?: number;
|
25
25
|
RowRenderer?: (props: IATableRowProps<T>) => React.ReactNode;
|
26
26
|
isRowRendered: boolean;
|
27
|
+
rowHeight: number;
|
27
28
|
resources: Partial<typeof Resources.ATable>;
|
28
29
|
}
|
29
30
|
export declare const ATableBody: <T extends IItem>(props: IATableBodyProps<T>) => import("react/jsx-runtime").JSX.Element;
|
@@ -48,5 +49,6 @@ export interface IATableDefaultRowProps<T extends IItem> extends IATableRowProps
|
|
48
49
|
spanWidths: TSpanWidths<T>;
|
49
50
|
singleFilterValue?: string;
|
50
51
|
isBodyBodyOverflowed: boolean;
|
52
|
+
rowHeight: number;
|
51
53
|
}
|
52
54
|
export {};
|