@abgov/react-components 6.5.0 → 6.6.0-alpha.1
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 +6 -1
- package/index.js.map +1 -1
- package/index.mjs +6 -1
- package/index.mjs.map +1 -1
- package/lib/dropdown/dropdown.d.ts +2 -0
- package/lib/file-upload-card/file-upload-card.d.ts +1 -1
- package/lib/input/input.d.ts +3 -1
- package/lib/textarea/textarea.d.ts +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -710,6 +710,7 @@ function GoabDropdown(props) {
|
|
|
710
710
|
testid: props.testId,
|
|
711
711
|
width: props.width,
|
|
712
712
|
relative: props.relative ? "true" : void 0,
|
|
713
|
+
autocomplete: props.autoComplete,
|
|
713
714
|
id: props.id,
|
|
714
715
|
children: props.children
|
|
715
716
|
}
|
|
@@ -2842,6 +2843,7 @@ function GoabInput({
|
|
|
2842
2843
|
name,
|
|
2843
2844
|
type,
|
|
2844
2845
|
autoCapitalize,
|
|
2846
|
+
autoComplete,
|
|
2845
2847
|
leadingIcon,
|
|
2846
2848
|
trailingIcon,
|
|
2847
2849
|
variant = "goa",
|
|
@@ -2921,6 +2923,7 @@ function GoabInput({
|
|
|
2921
2923
|
type,
|
|
2922
2924
|
name,
|
|
2923
2925
|
autocapitalize: autoCapitalize,
|
|
2926
|
+
autocomplete: autoComplete,
|
|
2924
2927
|
id,
|
|
2925
2928
|
leadingicon: leadingIcon,
|
|
2926
2929
|
trailingicon: trailingIcon,
|
|
@@ -3632,6 +3635,7 @@ function GoabTextArea({
|
|
|
3632
3635
|
mr,
|
|
3633
3636
|
mb,
|
|
3634
3637
|
ml,
|
|
3638
|
+
autoComplete,
|
|
3635
3639
|
onChange,
|
|
3636
3640
|
onKeyPress
|
|
3637
3641
|
}) {
|
|
@@ -3688,7 +3692,8 @@ function GoabTextArea({
|
|
|
3688
3692
|
mt,
|
|
3689
3693
|
mr,
|
|
3690
3694
|
mb,
|
|
3691
|
-
ml
|
|
3695
|
+
ml,
|
|
3696
|
+
autocomplete: autoComplete
|
|
3692
3697
|
}
|
|
3693
3698
|
);
|
|
3694
3699
|
}
|