@abgov/react-components 6.2.2-alpha.4 → 6.2.2-alpha.6
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 +7 -5
- package/index.js.map +1 -1
- package/index.mjs +7 -5
- package/index.mjs.map +1 -1
- package/lib/date-picker/date-picker.d.ts +3 -0
- package/lib/dropdown/dropdown.d.ts +3 -0
- package/lib/link/link.d.ts +5 -3
- package/lib/popover/popover.d.ts +3 -0
- package/lib/text/text.d.ts +2 -0
- package/lib/textarea/textarea.d.ts +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -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,7 +3398,7 @@ function GoabText(props) {
|
|
|
3397
3398
|
return /* @__PURE__ */ jsx(
|
|
3398
3399
|
"goa-text",
|
|
3399
3400
|
{
|
|
3400
|
-
as: props.as,
|
|
3401
|
+
as: props.as || props.tag,
|
|
3401
3402
|
size: props.size,
|
|
3402
3403
|
maxwidth: props.maxWidth,
|
|
3403
3404
|
color: props.color,
|
|
@@ -3409,7 +3410,7 @@ function GoabText(props) {
|
|
|
3409
3410
|
}
|
|
3410
3411
|
);
|
|
3411
3412
|
}
|
|
3412
|
-
function
|
|
3413
|
+
function GoabTextArea({
|
|
3413
3414
|
name,
|
|
3414
3415
|
value,
|
|
3415
3416
|
placeholder,
|
|
@@ -3569,7 +3570,6 @@ const GoabFilterChip = ({
|
|
|
3569
3570
|
);
|
|
3570
3571
|
};
|
|
3571
3572
|
export {
|
|
3572
|
-
GoALink,
|
|
3573
3573
|
GoALinkButton,
|
|
3574
3574
|
GoabAccordion,
|
|
3575
3575
|
GoabAppFooter,
|
|
@@ -3622,6 +3622,7 @@ export {
|
|
|
3622
3622
|
GoabInputText,
|
|
3623
3623
|
GoabInputTime,
|
|
3624
3624
|
GoabInputUrl,
|
|
3625
|
+
GoabLink,
|
|
3625
3626
|
GoabMicrositeHeader,
|
|
3626
3627
|
GoabModal,
|
|
3627
3628
|
GoabNotification,
|
|
@@ -3644,7 +3645,8 @@ export {
|
|
|
3644
3645
|
GoabTableSortHeader,
|
|
3645
3646
|
GoabTabs,
|
|
3646
3647
|
GoabText,
|
|
3647
|
-
|
|
3648
|
+
GoabTextArea,
|
|
3649
|
+
GoabTextArea as GoabTextarea,
|
|
3648
3650
|
GoabThreeColumnLayout,
|
|
3649
3651
|
GoabTooltip,
|
|
3650
3652
|
GoabTwoColumnLayout
|