@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.d.ts +1 -1
- package/index.js +5 -4
- package/index.js.map +1 -1
- package/index.mjs +5 -4
- package/index.mjs.map +1 -1
- package/lib/accordion/accordion.d.ts +3 -3
- package/lib/text/text.d.ts +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ function GoabAccordion({
|
|
|
9
9
|
headingContent,
|
|
10
10
|
iconPosition,
|
|
11
11
|
maxWidth,
|
|
12
|
-
|
|
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
|
|
3400
|
+
as: props.as,
|
|
3401
3401
|
size: props.size,
|
|
3402
|
-
maxwidth: props.maxWidth
|
|
3402
|
+
maxwidth: props.maxWidth,
|
|
3403
|
+
color: props.color,
|
|
3403
3404
|
mt: props.mt,
|
|
3404
3405
|
mb: props.mb,
|
|
3405
3406
|
ml: props.ml,
|