@abgov/react-components 6.2.0-alpha.1 → 6.2.0-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.mjs CHANGED
@@ -2677,6 +2677,7 @@ function GoabInput({
2677
2677
  leadingContent,
2678
2678
  trailingContent,
2679
2679
  maxLength,
2680
+ trailingIconAriaLabel,
2680
2681
  onTrailingIconClick,
2681
2682
  onChange,
2682
2683
  onFocus,
@@ -2753,6 +2754,7 @@ function GoabInput({
2753
2754
  mb,
2754
2755
  ml,
2755
2756
  handletrailingiconclick: !!onTrailingIconClick,
2757
+ trailingiconarialabel: trailingIconAriaLabel,
2756
2758
  children: [
2757
2759
  leadingContent && /* @__PURE__ */ jsx("div", { slot: "leadingContent", children: leadingContent }),
2758
2760
  trailingContent && /* @__PURE__ */ jsx("div", { slot: "trailingContent", children: trailingContent })