gov-ui-core 1.0.32 → 1.0.34

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.
@@ -2,6 +2,7 @@ import React from 'react';
2
2
  import { IContentHeaderProps } from '../Header/ContentHeader';
3
3
  import { ITableProps } from './';
4
4
  export interface ITableBaseProps extends Omit<ITableProps, 'title' | 'dataSource'>, Omit<IContentHeaderProps, 'title'> {
5
+ ref?: any;
5
6
  title?: React.ReactNode;
6
7
  loadData: (paginationState: any) => void;
7
8
  dataSource?: Record<string, any>[];
@@ -9,8 +10,10 @@ export interface ITableBaseProps extends Omit<ITableProps, 'title' | 'dataSource
9
10
  leftContent?: React.ReactNode;
10
11
  rightContent?: React.ReactNode;
11
12
  useLoading?: boolean;
13
+ tableLoading?: boolean;
12
14
  useSearch?: boolean;
13
15
  searchPlaceholder?: string;
16
+ scrollToTopOnChange?: boolean;
14
17
  }
15
18
  declare const _default: React.NamedExoticComponent<ITableBaseProps>;
16
19
  export default _default;