mig-schema-table 5.0.12 → 5.0.13

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.
@@ -121,6 +121,10 @@ export declare interface ISchemaTableProps<T> {
121
121
  autoRender?: boolean;
122
122
  }
123
123
 
124
+ export declare interface ISchemaTableRef {
125
+ getFilteredSortedData: () => IRenderData[] | undefined;
126
+ }
127
+
124
128
  export declare interface ITableDataState {
125
129
  columnFilterMap: IColumnFilterMap;
126
130
  searchQuery: string;
@@ -147,7 +151,9 @@ export declare const RESIZER_WIDTH = 3;
147
151
 
148
152
  export declare const SchemaTable: typeof SchemaTable_2;
149
153
 
150
- declare const SchemaTable_2: <T>({ CustomElement, CustomSearchInput, Heading, autoRender, checkedIndexes, config, customElementProps, data, defaultColumnFilters, defaultSortAsc, defaultSortColumn, disabledCheckedIndexes, displayTimezone, enableAutoFocus, enableRowCounter, getRowClassName, getRowSelected, getSearchQueryFilterResult, infiniteLoaderRef, isColumnFilterable, isExportable, isResizable, isSearchable, isSortable, itemCount, loadMoreItems, maxHeight, onRowClick, onRowDoubleClick, onSearchEnter, onTableDataStateChange, rowHeight, schema, searchPlaceholder, setCheckedIndexes, settingsStorageKey, style, translate, useFilterStateHash, variableSizeGridRef, width, }: ISchemaTableProps<T>) => JSX.Element;
154
+ declare const SchemaTable_2: <T>(props: ISchemaTableProps<T> & {
155
+ ref?: default_2.Ref<ISchemaTableRef>;
156
+ }) => default_2.ReactElement;
151
157
 
152
158
  export declare const Th: typeof Th_2;
153
159