@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 CHANGED
@@ -712,6 +712,7 @@ function GoabDropdown(props) {
712
712
  testid: props.testId,
713
713
  width: props.width,
714
714
  relative: props.relative ? "true" : void 0,
715
+ autocomplete: props.autoComplete,
715
716
  id: props.id,
716
717
  children: props.children
717
718
  }
@@ -2844,6 +2845,7 @@ function GoabInput({
2844
2845
  name,
2845
2846
  type,
2846
2847
  autoCapitalize,
2848
+ autoComplete,
2847
2849
  leadingIcon,
2848
2850
  trailingIcon,
2849
2851
  variant = "goa",
@@ -2923,6 +2925,7 @@ function GoabInput({
2923
2925
  type,
2924
2926
  name,
2925
2927
  autocapitalize: autoCapitalize,
2928
+ autocomplete: autoComplete,
2926
2929
  id,
2927
2930
  leadingicon: leadingIcon,
2928
2931
  trailingicon: trailingIcon,
@@ -3634,6 +3637,7 @@ function GoabTextArea({
3634
3637
  mr,
3635
3638
  mb,
3636
3639
  ml,
3640
+ autoComplete,
3637
3641
  onChange,
3638
3642
  onKeyPress
3639
3643
  }) {
@@ -3690,7 +3694,8 @@ function GoabTextArea({
3690
3694
  mt,
3691
3695
  mr,
3692
3696
  mb,
3693
- ml
3697
+ ml,
3698
+ autocomplete: autoComplete
3694
3699
  }
3695
3700
  );
3696
3701
  }