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

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,12 +1128,8 @@ export declare interface IRowProps {
1128
1128
  }
1129
1129
 
1130
1130
  declare interface IScrollDetails {
1131
- scrollable?: boolean;
1132
1131
  hideScrollbar?: boolean;
1133
1132
  triggerScrollToActiveItem?: boolean;
1134
- infiniteScroll?: boolean;
1135
- infiniteScrollTarget?: string;
1136
- limit?: number;
1137
1133
  }
1138
1134
 
1139
1135
  declare interface ISelectCell extends TCommonCell {
@@ -1337,28 +1333,30 @@ export declare interface ITableProps {
1337
1333
  from: number;
1338
1334
  to: number;
1339
1335
  }) => void;
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
- };
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;
1362
1360
  }
1363
1361
 
1364
1362
  declare interface ITabOption {