ados-rcm 1.1.632 → 1.1.634

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.
@@ -473,7 +473,7 @@ export interface IATableState<T extends IItem, K extends IItem = any> {
473
473
  export interface IATableActions<T extends IItem> {
474
474
  applyFilteration: (cb?: (oldFilteration: TATableFilteration<T>) => TATableFilteration<T>) => TPromisable<void>;
475
475
  fireOnStateChange: (cb?: (oldState: IATableState<T>) => IATableState<T>) => TPromisable<void>;
476
- scrollToSelected: () => void;
476
+ scrollToSelected: (block?: ScrollLogicalPosition) => void;
477
477
  }
478
478
  export interface IATableProps<T extends IItem> {
479
479
  /**
@@ -18,7 +18,7 @@ interface IATableBodyProps<T extends IItem> {
18
18
  isTableDisabled?: string | boolean;
19
19
  noDefHeader?: boolean;
20
20
  noMarking?: boolean;
21
- onScrollToSelectedReady?: (scrollToSelected: () => void) => void;
21
+ onScrollToSelectedReady?: (scrollToSelected: (block?: ScrollLogicalPosition) => void) => void;
22
22
  pagedItems: T[];
23
23
  pagination: IATablePagination;
24
24
  rProps?: TCanCallback<IATableTRProps<T>, IABaseProps>;