indicator-ui 0.0.47 → 0.0.48
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.js
CHANGED
|
@@ -9795,7 +9795,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
9795
9795
|
|
|
9796
9796
|
|
|
9797
9797
|
|
|
9798
|
-
function TextareaField({ value, name, placeholder, onChange, required = false, disabled = false, isError = false, offFocus = false, className = _styles__WEBPACK_IMPORTED_MODULE_2__.TextareaFieldStyle, }) {
|
|
9798
|
+
function TextareaField({ value, name, placeholder, onChange, required = false, disabled = false, isError = false, offFocus = false, additionStyles, className = _styles__WEBPACK_IMPORTED_MODULE_2__.TextareaFieldStyle, }) {
|
|
9799
9799
|
const handleOnChange = (e) => {
|
|
9800
9800
|
e.preventDefault();
|
|
9801
9801
|
onChange && onChange(e.target.value);
|
|
@@ -9803,7 +9803,7 @@ function TextareaField({ value, name, placeholder, onChange, required = false, d
|
|
|
9803
9803
|
return ((0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("textarea", { name: name, placeholder: placeholder, value: value || '', onChange: handleOnChange, required: required, disabled: disabled, className: (0,clsx__WEBPACK_IMPORTED_MODULE_1__["default"])(className?.textareaField, {
|
|
9804
9804
|
[className?.isError]: isError,
|
|
9805
9805
|
[className?.offFocus]: offFocus,
|
|
9806
|
-
}) }));
|
|
9806
|
+
}, additionStyles) }));
|
|
9807
9807
|
}
|
|
9808
9808
|
|
|
9809
9809
|
|