@inceptionbg/iui 2.0.63 → 2.0.65
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 +10 -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;
|
|
@@ -1449,6 +1453,7 @@ declare const i18nIUICyrilic: {
|
|
|
1449
1453
|
DueToLargeAmountOfDataReportIsBeingSentToEmail: string;
|
|
1450
1454
|
TotalRows: string;
|
|
1451
1455
|
FastLinks: string;
|
|
1456
|
+
BusinessYear: string;
|
|
1452
1457
|
CharMin: string;
|
|
1453
1458
|
CharRange: string;
|
|
1454
1459
|
CharNumber: string;
|
|
@@ -1509,6 +1514,7 @@ declare const i18nIUILatin: {
|
|
|
1509
1514
|
Yes: string;
|
|
1510
1515
|
LoadingProgress: string;
|
|
1511
1516
|
RefreshData: string;
|
|
1517
|
+
ShowTotalRows: string;
|
|
1512
1518
|
allResults: string;
|
|
1513
1519
|
Columns: string;
|
|
1514
1520
|
DragDropListsInfo: string;
|
|
@@ -1544,6 +1550,7 @@ declare const i18nIUILatin: {
|
|
|
1544
1550
|
DueToLargeAmountOfDataReportIsBeingSentToEmail: string;
|
|
1545
1551
|
TotalRows: string;
|
|
1546
1552
|
FastLinks: string;
|
|
1553
|
+
BusinessYear: string;
|
|
1547
1554
|
CharMin: string;
|
|
1548
1555
|
CharRange: string;
|
|
1549
1556
|
CharNumber: string;
|
|
@@ -1604,6 +1611,7 @@ declare const i18nIUIMe: {
|
|
|
1604
1611
|
Yes: string;
|
|
1605
1612
|
LoadingProgress: string;
|
|
1606
1613
|
RefreshData: string;
|
|
1614
|
+
ShowTotalRows: string;
|
|
1607
1615
|
allResults: string;
|
|
1608
1616
|
Columns: string;
|
|
1609
1617
|
DragDropListsInfo: string;
|
|
@@ -1639,6 +1647,7 @@ declare const i18nIUIMe: {
|
|
|
1639
1647
|
DueToLargeAmountOfDataReportIsBeingSentToEmail: string;
|
|
1640
1648
|
TotalRows: string;
|
|
1641
1649
|
FastLinks: string;
|
|
1650
|
+
BusinessYear: string;
|
|
1642
1651
|
CharMin: string;
|
|
1643
1652
|
CharRange: string;
|
|
1644
1653
|
CharNumber: string;
|