@abgov/react-components 6.2.2-alpha.3 → 6.2.2-alpha.4

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
@@ -9,7 +9,7 @@ function GoabAccordion({
9
9
  headingContent,
10
10
  iconPosition,
11
11
  maxWidth,
12
- testid,
12
+ testId,
13
13
  onChange,
14
14
  children,
15
15
  mt,
@@ -41,7 +41,7 @@ function GoabAccordion({
41
41
  secondarytext: secondaryText,
42
42
  iconposition: iconPosition,
43
43
  maxwidth: maxWidth,
44
- testid,
44
+ testid: testId,
45
45
  mt,
46
46
  mr,
47
47
  mb,
@@ -3397,9 +3397,10 @@ function GoabText(props) {
3397
3397
  return /* @__PURE__ */ jsx(
3398
3398
  "goa-text",
3399
3399
  {
3400
- as: props.as || "div",
3400
+ as: props.as,
3401
3401
  size: props.size,
3402
- maxwidth: props.maxWidth || "65ch",
3402
+ maxwidth: props.maxWidth,
3403
+ color: props.color,
3403
3404
  mt: props.mt,
3404
3405
  mb: props.mb,
3405
3406
  ml: props.ml,