hplx-react-elements-dev 1.1.28 → 1.1.29
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 +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -2961,13 +2961,13 @@ var TextAreaField = function TextAreaField(_a) {
|
|
|
2961
2961
|
var handleFocus = function handleFocus(event) {
|
|
2962
2962
|
setActive(true);
|
|
2963
2963
|
onFocus && onFocus(event);
|
|
2964
|
-
isDynamicHeight && handleHeight();
|
|
2965
2964
|
setTimeout(function () {
|
|
2966
2965
|
var textarea = ref.current;
|
|
2967
2966
|
textarea.focus();
|
|
2968
2967
|
textarea.value += ' ';
|
|
2969
2968
|
textarea.value = textarea.value.trim();
|
|
2970
2969
|
}, 0);
|
|
2970
|
+
isDynamicHeight && handleHeight();
|
|
2971
2971
|
};
|
|
2972
2972
|
|
|
2973
2973
|
var handleBlur = function handleBlur(event) {
|