@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.js
CHANGED
|
@@ -695,7 +695,7 @@ function GoADropdownOption(props) {
|
|
|
695
695
|
}, []);
|
|
696
696
|
return /* @__PURE__ */ jsxRuntime.jsx(GoADropdownItem, { ...props });
|
|
697
697
|
}
|
|
698
|
-
function GoADropdownItem({ value, label, filter, name, testId, mountType = "
|
|
698
|
+
function GoADropdownItem({ value, label, filter, name, testId, mountType = "reset" }) {
|
|
699
699
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
700
700
|
"goa-dropdown-item",
|
|
701
701
|
{
|
|
@@ -3427,6 +3427,7 @@ function GoATextarea({
|
|
|
3427
3427
|
value,
|
|
3428
3428
|
placeholder,
|
|
3429
3429
|
rows,
|
|
3430
|
+
readOnly,
|
|
3430
3431
|
disabled,
|
|
3431
3432
|
countBy,
|
|
3432
3433
|
maxCount,
|
|
@@ -3479,6 +3480,7 @@ function GoATextarea({
|
|
|
3479
3480
|
placeholder,
|
|
3480
3481
|
value,
|
|
3481
3482
|
rows,
|
|
3483
|
+
readOnly,
|
|
3482
3484
|
disabled,
|
|
3483
3485
|
countby: countBy,
|
|
3484
3486
|
maxcount: maxCount,
|