@qodo/design-system 0.20.21 → 0.20.22

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
@@ -814,7 +814,7 @@ declare const switchVariants: (props?: ({
814
814
  size?: "small" | "large" | null | undefined;
815
815
  } & ClassProp) | undefined) => string;
816
816
 
817
- export declare const Table: <T extends RowData>({ table, emptyStateComponent, noResultsComponent, errorComponent, isLoading, isError, onRowClick, emptyStateTitle, emptyStateDescription, noResultsTitle, wrapperClassName, loadingRowsCount, activeRowId, paginationMode, onLoadMore, hasMore, loadMoreThreshold, endOfResultsMessage, className: propsClassName, ...restTableProps }: TableProps<T & WithId>) => JSX_2.Element;
817
+ export declare const Table: <T extends RowData>({ table, emptyStateComponent, noResultsComponent, errorComponent, isLoading, isError, hasActiveFilter, onRowClick, emptyStateTitle, emptyStateDescription, noResultsTitle, wrapperClassName, loadingRowsCount, activeRowId, paginationMode, onLoadMore, hasMore, loadMoreThreshold, endOfResultsMessage, className: propsClassName, ...restTableProps }: TableProps<T & WithId>) => JSX_2.Element;
818
818
 
819
819
  declare const Table_2: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLTableElement> & {
820
820
  wrapperClassName?: string;
@@ -827,6 +827,7 @@ export declare type TableProps<T extends RowData> = {
827
827
  errorComponent?: () => ReactNode;
828
828
  isLoading?: boolean;
829
829
  isError?: boolean;
830
+ hasActiveFilter?: boolean;
830
831
  onRowClick?: (row: T) => void;
831
832
  emptyStateTitle?: string;
832
833
  emptyStateDescription?: string;