react-magma-dom 2.5.11 → 2.5.12
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/dist/esm/index.js +2 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/react-magma-dom.cjs.development.js +2 -4
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -10943,9 +10943,7 @@ var Textarea = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
10943
10943
|
setValue = _React$useState[1];
|
|
10944
10944
|
|
|
10945
10945
|
React.useEffect(function () {
|
|
10946
|
-
|
|
10947
|
-
setValue(props.value);
|
|
10948
|
-
}
|
|
10946
|
+
setValue(props.value);
|
|
10949
10947
|
}, [props.value]);
|
|
10950
10948
|
|
|
10951
10949
|
function handleChange(event) {
|
|
@@ -10975,7 +10973,7 @@ var Textarea = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
10975
10973
|
style: textareaStyle,
|
|
10976
10974
|
theme: theme,
|
|
10977
10975
|
value: value,
|
|
10978
|
-
width:
|
|
10976
|
+
width: "100%"
|
|
10979
10977
|
})));
|
|
10980
10978
|
});
|
|
10981
10979
|
|