@abgov/react-components 4.17.0-alpha.31 → 4.17.0-alpha.32
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 +6755 -6783
- package/index.js.map +1 -1
- package/index.mjs +6755 -6783
- package/index.mjs.map +1 -1
- package/lib/radio-group/radio.d.ts +3 -1
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ interface RadioItemProps {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
checked?: boolean;
|
|
8
8
|
error?: boolean;
|
|
9
|
+
arialabel?: string;
|
|
9
10
|
}
|
|
10
11
|
declare global {
|
|
11
12
|
namespace JSX {
|
|
@@ -24,6 +25,7 @@ export interface GoARadioItemProps {
|
|
|
24
25
|
error?: boolean;
|
|
25
26
|
children?: React.ReactNode;
|
|
26
27
|
testId?: string;
|
|
28
|
+
ariaLabel?: string;
|
|
27
29
|
}
|
|
28
|
-
export declare function GoARadioItem({ name, label, value, description, disabled, checked, error, testId, children, }: GoARadioItemProps): JSX.Element;
|
|
30
|
+
export declare function GoARadioItem({ name, label, value, description, disabled, checked, error, testId, ariaLabel, children, }: GoARadioItemProps): JSX.Element;
|
|
29
31
|
export default GoARadioItem;
|
package/package.json
CHANGED