@abgov/react-components 6.2.2-alpha.3 → 6.2.2-alpha.5
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 +2 -2
- package/index.js +11 -8
- package/index.js.map +1 -1
- package/index.mjs +11 -8
- package/index.mjs.map +1 -1
- package/lib/accordion/accordion.d.ts +3 -3
- package/lib/link/link.d.ts +5 -3
- package/lib/text/text.d.ts +3 -1
- package/lib/textarea/textarea.d.ts +2 -2
- 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,
|
|
@@ -2921,12 +2921,13 @@ function GoabInputNumber({
|
|
|
2921
2921
|
function GoabInputRange(props) {
|
|
2922
2922
|
return /* @__PURE__ */ jsx(GoabInput, { ...props, type: "range" });
|
|
2923
2923
|
}
|
|
2924
|
-
function
|
|
2924
|
+
function GoabLink(props) {
|
|
2925
2925
|
return /* @__PURE__ */ jsx(
|
|
2926
2926
|
"goa-link",
|
|
2927
2927
|
{
|
|
2928
2928
|
leadingicon: props.leadingIcon,
|
|
2929
2929
|
trailingicon: props.trailingIcon,
|
|
2930
|
+
testid: props.testId,
|
|
2930
2931
|
mt: props.mt,
|
|
2931
2932
|
mb: props.mb,
|
|
2932
2933
|
ml: props.ml,
|
|
@@ -3397,9 +3398,10 @@ function GoabText(props) {
|
|
|
3397
3398
|
return /* @__PURE__ */ jsx(
|
|
3398
3399
|
"goa-text",
|
|
3399
3400
|
{
|
|
3400
|
-
as: props.as
|
|
3401
|
+
as: props.as,
|
|
3401
3402
|
size: props.size,
|
|
3402
|
-
maxwidth: props.maxWidth
|
|
3403
|
+
maxwidth: props.maxWidth,
|
|
3404
|
+
color: props.color,
|
|
3403
3405
|
mt: props.mt,
|
|
3404
3406
|
mb: props.mb,
|
|
3405
3407
|
ml: props.ml,
|
|
@@ -3408,7 +3410,7 @@ function GoabText(props) {
|
|
|
3408
3410
|
}
|
|
3409
3411
|
);
|
|
3410
3412
|
}
|
|
3411
|
-
function
|
|
3413
|
+
function GoabTextArea({
|
|
3412
3414
|
name,
|
|
3413
3415
|
value,
|
|
3414
3416
|
placeholder,
|
|
@@ -3568,7 +3570,6 @@ const GoabFilterChip = ({
|
|
|
3568
3570
|
);
|
|
3569
3571
|
};
|
|
3570
3572
|
export {
|
|
3571
|
-
GoALink,
|
|
3572
3573
|
GoALinkButton,
|
|
3573
3574
|
GoabAccordion,
|
|
3574
3575
|
GoabAppFooter,
|
|
@@ -3621,6 +3622,7 @@ export {
|
|
|
3621
3622
|
GoabInputText,
|
|
3622
3623
|
GoabInputTime,
|
|
3623
3624
|
GoabInputUrl,
|
|
3625
|
+
GoabLink,
|
|
3624
3626
|
GoabMicrositeHeader,
|
|
3625
3627
|
GoabModal,
|
|
3626
3628
|
GoabNotification,
|
|
@@ -3643,7 +3645,8 @@ export {
|
|
|
3643
3645
|
GoabTableSortHeader,
|
|
3644
3646
|
GoabTabs,
|
|
3645
3647
|
GoabText,
|
|
3646
|
-
|
|
3648
|
+
GoabTextArea,
|
|
3649
|
+
GoabTextArea as GoabTextarea,
|
|
3647
3650
|
GoabThreeColumnLayout,
|
|
3648
3651
|
GoabTooltip,
|
|
3649
3652
|
GoabTwoColumnLayout
|