@inceptionbg/iui 2.0.63 → 2.0.64
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/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -259,10 +259,12 @@ interface ITable<T = unknown> {
|
|
|
259
259
|
customLimit?: number[];
|
|
260
260
|
};
|
|
261
261
|
totalRows?: number;
|
|
262
|
+
getTotalRows?: () => void;
|
|
262
263
|
refetch?: () => void;
|
|
263
264
|
hidden?: boolean;
|
|
264
265
|
};
|
|
265
266
|
isLoading?: boolean;
|
|
267
|
+
isScrollable?: boolean;
|
|
266
268
|
className?: string;
|
|
267
269
|
rowHeight?: 'xs' | 's' | 'm';
|
|
268
270
|
maxHeight?: string;
|
|
@@ -1083,6 +1085,7 @@ interface Props$b {
|
|
|
1083
1085
|
name: string;
|
|
1084
1086
|
icon: IconDefinition;
|
|
1085
1087
|
} | null;
|
|
1088
|
+
businessYear?: string;
|
|
1086
1089
|
}
|
|
1087
1090
|
declare const ModuleSelect: FC<Props$b>;
|
|
1088
1091
|
|
|
@@ -1251,7 +1254,7 @@ declare const useTableSelect: (actions?: ITableSelectedAction[]) => {
|
|
|
1251
1254
|
actions: ITableSelectedAction[];
|
|
1252
1255
|
};
|
|
1253
1256
|
|
|
1254
|
-
declare const useTableSort: (sortOptions: ITableSort[]) => {
|
|
1257
|
+
declare const useTableSort: (sortOptions: ITableSort[], defaultSort?: string) => {
|
|
1255
1258
|
sort: string;
|
|
1256
1259
|
setSort: react.Dispatch<react.SetStateAction<string>>;
|
|
1257
1260
|
sortOptions: ITableSort[];
|
|
@@ -1414,6 +1417,7 @@ declare const i18nIUICyrilic: {
|
|
|
1414
1417
|
Yes: string;
|
|
1415
1418
|
LoadingProgress: string;
|
|
1416
1419
|
RefreshData: string;
|
|
1420
|
+
ShowTotalRows: string;
|
|
1417
1421
|
allResults: string;
|
|
1418
1422
|
Columns: string;
|
|
1419
1423
|
DragDropListsInfo: string;
|
|
@@ -1509,6 +1513,7 @@ declare const i18nIUILatin: {
|
|
|
1509
1513
|
Yes: string;
|
|
1510
1514
|
LoadingProgress: string;
|
|
1511
1515
|
RefreshData: string;
|
|
1516
|
+
ShowTotalRows: string;
|
|
1512
1517
|
allResults: string;
|
|
1513
1518
|
Columns: string;
|
|
1514
1519
|
DragDropListsInfo: string;
|
|
@@ -1604,6 +1609,7 @@ declare const i18nIUIMe: {
|
|
|
1604
1609
|
Yes: string;
|
|
1605
1610
|
LoadingProgress: string;
|
|
1606
1611
|
RefreshData: string;
|
|
1612
|
+
ShowTotalRows: string;
|
|
1607
1613
|
allResults: string;
|
|
1608
1614
|
Columns: string;
|
|
1609
1615
|
DragDropListsInfo: string;
|