@mw-kit/mw-ui 1.7.1 → 1.7.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.
@@ -4,4 +4,4 @@ import { AppliedFilter } from '../interfaces';
4
4
  export interface Common {
5
5
  appliedFilters: [AppliedFilter[], React.Dispatch<React.SetStateAction<AppliedFilter[]>>];
6
6
  }
7
- export declare type AppliedFiltersProps = Common & ButtonProps;
7
+ export declare type AppliedFiltersProps = Common & Omit<ButtonProps, 'getContent'>;
@@ -42,5 +42,5 @@ export interface Common {
42
42
  items: Filter[];
43
43
  setAppliedFilters: React.Dispatch<React.SetStateAction<AppliedFilter[]>>;
44
44
  }
45
- export declare type FiltersProps = Common & ButtonProps;
45
+ export declare type FiltersProps = Common & Omit<ButtonProps, 'getContent'>;
46
46
  export {};