@speakapbv/dough-component-library 10.12.0 → 10.12.1
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/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -2978,7 +2978,7 @@ var TextArea = forwardRef(function (props, ref) {
|
|
|
2978
2978
|
if (props.onFocus) {
|
|
2979
2979
|
props.onFocus(getInputValue());
|
|
2980
2980
|
}
|
|
2981
|
-
}, onKeyPress: props.onKeyPress, onKeyDown: props.onKeyDown, onKeyUp: props.onKeyUp, onPaste: props.onPaste, onScroll: props.onScroll, maxLength: props.maxLength, ref: inputRef }),
|
|
2981
|
+
}, onKeyPress: props.onKeyPress, onKeyDown: props.onKeyDown, onKeyUp: props.onKeyUp, onPaste: props.onPaste, onScroll: props.onScroll, maxLength: props.maxLength, ref: inputRef, value: props.value }),
|
|
2982
2982
|
props.endElement && (React.createElement("span", { className: "dough-fe-right-element" }, props.endElement)),
|
|
2983
2983
|
!props.borderless && (React.createElement("span", { className: "dough-input-element-top-border" },
|
|
2984
2984
|
props.label && (React.createElement(React.Fragment, null,
|
package/dist/index.js
CHANGED
|
@@ -2961,7 +2961,7 @@ var TextArea = React.forwardRef(function (props, ref) {
|
|
|
2961
2961
|
if (props.onFocus) {
|
|
2962
2962
|
props.onFocus(getInputValue());
|
|
2963
2963
|
}
|
|
2964
|
-
}, onKeyPress: props.onKeyPress, onKeyDown: props.onKeyDown, onKeyUp: props.onKeyUp, onPaste: props.onPaste, onScroll: props.onScroll, maxLength: props.maxLength, ref: inputRef }),
|
|
2964
|
+
}, onKeyPress: props.onKeyPress, onKeyDown: props.onKeyDown, onKeyUp: props.onKeyUp, onPaste: props.onPaste, onScroll: props.onScroll, maxLength: props.maxLength, ref: inputRef, value: props.value }),
|
|
2965
2965
|
props.endElement && (React__default.createElement("span", { className: "dough-fe-right-element" }, props.endElement)),
|
|
2966
2966
|
!props.borderless && (React__default.createElement("span", { className: "dough-input-element-top-border" },
|
|
2967
2967
|
props.label && (React__default.createElement(React__default.Fragment, null,
|