@abgov/react-components 6.2.1-alpha.1 → 6.2.1-alpha.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.
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/index.mjs +3 -3
- package/index.mjs.map +1 -1
- package/lib/filter-chip/filter-chip.d.ts +4 -3
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ interface WCProps extends Margins {
|
|
|
5
5
|
icontheme: GoabFilterChipTheme;
|
|
6
6
|
error: boolean;
|
|
7
7
|
content: string;
|
|
8
|
+
testid?: string;
|
|
8
9
|
}
|
|
9
10
|
declare global {
|
|
10
11
|
namespace JSX {
|
|
@@ -13,12 +14,12 @@ declare global {
|
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
|
-
export interface
|
|
17
|
+
export interface GoabFilterChipProps extends Margins {
|
|
17
18
|
onClick?: () => void;
|
|
18
19
|
iconTheme?: GoabFilterChipTheme;
|
|
19
20
|
error?: boolean;
|
|
20
21
|
content: string;
|
|
21
22
|
testId?: string;
|
|
22
23
|
}
|
|
23
|
-
export declare const
|
|
24
|
-
export default
|
|
24
|
+
export declare const GoabFilterChip: ({ iconTheme, error, content, onClick, mt, mr, mb, ml, testId, }: GoabFilterChipProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export default GoabFilterChip;
|