@oliasoft-open-source/react-ui-library 4.17.0-beta-2 → 4.17.0

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 CHANGED
@@ -1128,8 +1128,12 @@ export declare interface IRowProps {
1128
1128
  }
1129
1129
 
1130
1130
  declare interface IScrollDetails {
1131
+ scrollable?: boolean;
1131
1132
  hideScrollbar?: boolean;
1132
1133
  triggerScrollToActiveItem?: boolean;
1134
+ infiniteScroll?: boolean;
1135
+ infiniteScrollTarget?: string;
1136
+ limit?: number;
1133
1137
  }
1134
1138
 
1135
1139
  declare interface ISelectCell extends TCommonCell {
@@ -1333,30 +1337,28 @@ export declare interface ITableProps {
1333
1337
  from: number;
1334
1338
  to: number;
1335
1339
  }) => void;
1336
- table: ITableTableProps;
1337
- }
1338
-
1339
- declare interface ITableTableProps {
1340
- name?: TStringOrNumber | ReactNode;
1341
- actionsRight?: boolean;
1342
- fixedWidth?: TStringOrNumber;
1343
- maxHeight?: TStringOrNumber;
1344
- columnWidths?: string[];
1345
- className?: string;
1346
- columnHeaderAlignments?: Array<TAlign | string>;
1347
- columnAlignment?: Array<TAlign | string>;
1348
- infiniteScroll?: boolean;
1349
- headers?: any[];
1350
- rows?: TRowsType;
1351
- footer?: IFooterProps;
1352
- draggable?: boolean;
1353
- bordered?: boolean;
1354
- striped?: boolean;
1355
- testId?: string;
1356
- onAddRow?: any;
1357
- defaultEmptyRow?: any;
1358
- stickyHeaders?: string | boolean;
1359
- actions?: any;
1340
+ table: {
1341
+ name?: TStringOrNumber | ReactNode;
1342
+ actionsRight?: boolean;
1343
+ fixedWidth?: TStringOrNumber;
1344
+ maxHeight?: TStringOrNumber;
1345
+ columnWidths?: string[];
1346
+ className?: string;
1347
+ columnHeaderAlignments?: Array<TAlign | string>;
1348
+ columnAlignment?: Array<TAlign | string>;
1349
+ infiniteScroll?: boolean;
1350
+ headers?: any[];
1351
+ rows?: TRowsType;
1352
+ footer?: IFooterProps;
1353
+ draggable?: boolean;
1354
+ bordered?: boolean;
1355
+ striped?: boolean;
1356
+ testId?: string;
1357
+ onAddRow?: any;
1358
+ defaultEmptyRow?: any;
1359
+ stickyHeaders?: string | boolean;
1360
+ actions?: any;
1361
+ };
1360
1362
  }
1361
1363
 
1362
1364
  declare interface ITabOption {