@abgov/react-components 6.2.2-alpha.4 → 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 +1 -1
- package/index.js +6 -4
- package/index.js.map +1 -1
- package/index.mjs +6 -4
- package/index.mjs.map +1 -1
- package/lib/link/link.d.ts +5 -3
- package/lib/textarea/textarea.d.ts +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export * from './lib/table/table-sort-header';
|
|
|
53
53
|
export * from './lib/tabs/tabs';
|
|
54
54
|
export * from './lib/tab/tab';
|
|
55
55
|
export * from './lib/text/text';
|
|
56
|
-
export
|
|
56
|
+
export { GoabTextArea, GoabTextArea as GoabTextarea } from './lib/textarea/textarea';
|
|
57
57
|
export * from './lib/three-column-layout/three-column-layout';
|
|
58
58
|
export * from './lib/tooltip/tooltip';
|
|
59
59
|
export * from './lib/two-column-layout/two-column-layout';
|
package/index.js
CHANGED
|
@@ -2923,12 +2923,13 @@ function GoabInputNumber({
|
|
|
2923
2923
|
function GoabInputRange(props) {
|
|
2924
2924
|
return /* @__PURE__ */ jsxRuntime.jsx(GoabInput, { ...props, type: "range" });
|
|
2925
2925
|
}
|
|
2926
|
-
function
|
|
2926
|
+
function GoabLink(props) {
|
|
2927
2927
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
2928
2928
|
"goa-link",
|
|
2929
2929
|
{
|
|
2930
2930
|
leadingicon: props.leadingIcon,
|
|
2931
2931
|
trailingicon: props.trailingIcon,
|
|
2932
|
+
testid: props.testId,
|
|
2932
2933
|
mt: props.mt,
|
|
2933
2934
|
mb: props.mb,
|
|
2934
2935
|
ml: props.ml,
|
|
@@ -3411,7 +3412,7 @@ function GoabText(props) {
|
|
|
3411
3412
|
}
|
|
3412
3413
|
);
|
|
3413
3414
|
}
|
|
3414
|
-
function
|
|
3415
|
+
function GoabTextArea({
|
|
3415
3416
|
name,
|
|
3416
3417
|
value,
|
|
3417
3418
|
placeholder,
|
|
@@ -3571,7 +3572,6 @@ const GoabFilterChip = ({
|
|
|
3571
3572
|
);
|
|
3572
3573
|
};
|
|
3573
3574
|
exports.GoabIcon = icon.GoabIcon;
|
|
3574
|
-
exports.GoALink = GoALink;
|
|
3575
3575
|
exports.GoALinkButton = GoALinkButton;
|
|
3576
3576
|
exports.GoabAccordion = GoabAccordion;
|
|
3577
3577
|
exports.GoabAppFooter = GoabAppFooter;
|
|
@@ -3623,6 +3623,7 @@ exports.GoabInputTel = GoabInputTel;
|
|
|
3623
3623
|
exports.GoabInputText = GoabInputText;
|
|
3624
3624
|
exports.GoabInputTime = GoabInputTime;
|
|
3625
3625
|
exports.GoabInputUrl = GoabInputUrl;
|
|
3626
|
+
exports.GoabLink = GoabLink;
|
|
3626
3627
|
exports.GoabMicrositeHeader = GoabMicrositeHeader;
|
|
3627
3628
|
exports.GoabModal = GoabModal;
|
|
3628
3629
|
exports.GoabNotification = GoabNotification;
|
|
@@ -3645,7 +3646,8 @@ exports.GoabTable = GoabTable;
|
|
|
3645
3646
|
exports.GoabTableSortHeader = GoabTableSortHeader;
|
|
3646
3647
|
exports.GoabTabs = GoabTabs;
|
|
3647
3648
|
exports.GoabText = GoabText;
|
|
3648
|
-
exports.
|
|
3649
|
+
exports.GoabTextArea = GoabTextArea;
|
|
3650
|
+
exports.GoabTextarea = GoabTextArea;
|
|
3649
3651
|
exports.GoabThreeColumnLayout = GoabThreeColumnLayout;
|
|
3650
3652
|
exports.GoabTooltip = GoabTooltip;
|
|
3651
3653
|
exports.GoabTwoColumnLayout = GoabTwoColumnLayout;
|