gantri-components 2.155.0 → 2.155.2
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/components/table/components/table-actions-wrapper/table-actions-wrapper.types.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface TableActionsWrapperProps<TData extends RowData> {
|
|
|
27
27
|
customAction: CustomActionProps<TData> | undefined;
|
|
28
28
|
filters: FiltersProps | undefined;
|
|
29
29
|
paging: PagingProps | undefined;
|
|
30
|
-
search: SearchProps | undefined;
|
|
30
|
+
search: Omit<SearchProps, 'columns'> | undefined;
|
|
31
31
|
sorting: SortProps | undefined;
|
|
32
32
|
table: Table<TData>;
|
|
33
33
|
}
|
|
@@ -67,7 +67,7 @@ export interface TableProps<TData extends RowData> extends Partial<TableDefaultP
|
|
|
67
67
|
reordering?: RowReorderingProps<TData>;
|
|
68
68
|
/** If using row selection, you must wrap your component in `RowSelectionProviders`. This should be done outside the parent the component using the `Table`. `useRowSelection` provides additional helpful functions you may wish to utilize. */
|
|
69
69
|
rowSelection?: RowSelection<TData>;
|
|
70
|
-
search?: SearchProps
|
|
70
|
+
search?: Omit<SearchProps, 'columns'>;
|
|
71
71
|
sorting?: SortProps;
|
|
72
72
|
syncState?: SyncState;
|
|
73
73
|
}
|