@oliasoft-open-source/react-ui-library 4.18.1-beta-1 → 4.19.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
@@ -670,6 +670,8 @@ declare interface IListItem {
670
670
  disabled?: boolean;
671
671
  onClick?: (evt: any) => void;
672
672
  title?: string;
673
+ details?: string;
674
+ metadata?: string;
673
675
  testId?: string;
674
676
  level?: number;
675
677
  label?: ILabel;
@@ -1128,12 +1130,9 @@ export declare interface IRowProps {
1128
1130
  }
1129
1131
 
1130
1132
  declare interface IScrollDetails {
1131
- scrollable?: boolean;
1132
1133
  hideScrollbar?: boolean;
1133
1134
  triggerScrollToActiveItem?: boolean;
1134
1135
  infiniteScroll?: boolean;
1135
- infiniteScrollTarget?: string;
1136
- limit?: number;
1137
1136
  }
1138
1137
 
1139
1138
  declare interface ISelectCell extends TCommonCell {
@@ -1346,28 +1345,30 @@ export declare interface ITableProps {
1346
1345
  from: number;
1347
1346
  to: number;
1348
1347
  }) => void;
1349
- table: {
1350
- name?: TStringOrNumber | ReactNode;
1351
- actionsRight?: boolean;
1352
- fixedWidth?: TStringOrNumber;
1353
- maxHeight?: TStringOrNumber;
1354
- columnWidths?: string[];
1355
- className?: string;
1356
- columnHeaderAlignments?: Array<TAlign | string>;
1357
- columnAlignment?: Array<TAlign | string>;
1358
- infiniteScroll?: boolean;
1359
- headers?: any[];
1360
- rows?: TRowsType;
1361
- footer?: IFooterProps;
1362
- draggable?: boolean;
1363
- bordered?: boolean;
1364
- striped?: boolean;
1365
- testId?: string;
1366
- onAddRow?: any;
1367
- defaultEmptyRow?: any;
1368
- stickyHeaders?: string | boolean;
1369
- actions?: any;
1370
- };
1348
+ table: ITableTableProps;
1349
+ }
1350
+
1351
+ declare interface ITableTableProps {
1352
+ name?: TStringOrNumber | ReactNode;
1353
+ actionsRight?: boolean;
1354
+ fixedWidth?: TStringOrNumber;
1355
+ maxHeight?: TStringOrNumber;
1356
+ columnWidths?: string[];
1357
+ className?: string;
1358
+ columnHeaderAlignments?: Array<TAlign | string>;
1359
+ columnAlignment?: Array<TAlign | string>;
1360
+ infiniteScroll?: boolean;
1361
+ headers?: any[];
1362
+ rows?: TRowsType;
1363
+ footer?: IFooterProps;
1364
+ draggable?: boolean;
1365
+ bordered?: boolean;
1366
+ striped?: boolean;
1367
+ testId?: string;
1368
+ onAddRow?: any;
1369
+ defaultEmptyRow?: any;
1370
+ stickyHeaders?: string | boolean;
1371
+ actions?: any;
1371
1372
  }
1372
1373
 
1373
1374
  declare interface ITabOption {