@apolitical/component-library 8.2.1-ac.2 → 8.2.1-ac.3

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.
@@ -6,7 +6,7 @@ export interface FilterType {
6
6
  disabled?: boolean;
7
7
  callback?: () => void;
8
8
  }
9
- interface Props {
9
+ export interface IFiltersProps {
10
10
  /** The filter details */
11
11
  options: FilterType[];
12
12
  /** The default filter */
@@ -40,5 +40,5 @@ interface Props {
40
40
  context?: string;
41
41
  };
42
42
  }
43
- declare const Filters: ({ options, defaultOptions, allOption, allowMultiple, onChange, preventNoOptionSelected, className, styling, gtm, }: Props) => import("react/jsx-runtime").JSX.Element;
43
+ declare const Filters: ({ options, defaultOptions, allOption, allowMultiple, onChange, preventNoOptionSelected, className, styling, gtm, }: IFiltersProps) => import("react/jsx-runtime").JSX.Element;
44
44
  export default Filters;
@@ -1 +1 @@
1
- export { default as Filters } from './filters';
1
+ export { default as Filters, type IFiltersProps, type FilterType } from './filters';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apolitical/component-library",
3
- "version": "8.2.1-ac.2",
3
+ "version": "8.2.1-ac.3",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {