@abgov/react-components 5.0.0-alpha.13 → 5.0.0-alpha.15
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.js +3 -1
- package/index.js.map +1 -1
- package/index.mjs +3 -1
- package/index.mjs.map +1 -1
- package/lib/textarea/textarea.d.ts +3 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -693,7 +693,7 @@ function GoADropdownOption(props) {
|
|
|
693
693
|
}, []);
|
|
694
694
|
return /* @__PURE__ */ jsx(GoADropdownItem, { ...props });
|
|
695
695
|
}
|
|
696
|
-
function GoADropdownItem({ value, label, filter, name, testId, mountType = "
|
|
696
|
+
function GoADropdownItem({ value, label, filter, name, testId, mountType = "reset" }) {
|
|
697
697
|
return /* @__PURE__ */ jsx(
|
|
698
698
|
"goa-dropdown-item",
|
|
699
699
|
{
|
|
@@ -3425,6 +3425,7 @@ function GoATextarea({
|
|
|
3425
3425
|
value,
|
|
3426
3426
|
placeholder,
|
|
3427
3427
|
rows,
|
|
3428
|
+
readOnly,
|
|
3428
3429
|
disabled,
|
|
3429
3430
|
countBy,
|
|
3430
3431
|
maxCount,
|
|
@@ -3477,6 +3478,7 @@ function GoATextarea({
|
|
|
3477
3478
|
placeholder,
|
|
3478
3479
|
value,
|
|
3479
3480
|
rows,
|
|
3481
|
+
readOnly,
|
|
3480
3482
|
disabled,
|
|
3481
3483
|
countby: countBy,
|
|
3482
3484
|
maxcount: maxCount,
|