@vchasno/ui-kit 0.3.26 → 0.3.28
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/Datepicker/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/Menu/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/ProjectsPopover/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/Select/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/SelectCreatable/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/Snackbar/index.cjs.js +1 -1
- package/dist/Snackbar/index.cjs.js.map +1 -1
- package/dist/Snackbar/index.js +1 -1
- package/dist/Snackbar/index.js.map +1 -1
- package/dist/Snackbar/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/TextAreaInput/TextAreaInput.d.ts +4 -4
- package/package.json +1 -1
package/dist/Snackbar/index.js
CHANGED
|
@@ -2773,7 +2773,7 @@ styleInject(css_248z$c);
|
|
|
2773
2773
|
var TextAreaInput = React__default.forwardRef(function (_a, ref) {
|
|
2774
2774
|
var className = _a.className, disabled = _a.disabled, startElement = _a.startElement, endElement = _a.endElement, error = _a.error, label = _a.label, hint = _a.hint, wide = _a.wide, required = _a.required, loading = _a.loading, minRows = _a.minRows, maxRows = _a.maxRows, textareaClassName = _a.textareaClassName, labelProps = _a.labelProps, rest = __rest(_a, ["className", "disabled", "startElement", "endElement", "error", "label", "hint", "wide", "required", "loading", "minRows", "maxRows", "textareaClassName", "labelProps"]);
|
|
2775
2775
|
return (React__default.createElement(Input, { required: required, wide: wide, className: cn(className, 'vchasno-ui-textarea-input-container'), loading: loading, disabled: disabled, label: label, error: error, hint: hint, endElement: endElement, labelProps: labelProps, startElement: startElement },
|
|
2776
|
-
React__default.createElement(TextareaAutosize, __assign({}, rest, { ref: ref, minRows: minRows, maxRows: maxRows, required: required, disabled: disabled,
|
|
2776
|
+
React__default.createElement(TextareaAutosize, __assign({}, rest, { ref: ref, minRows: minRows, maxRows: maxRows, required: required, disabled: disabled, className: cn('vchasno-ui-textarea-input', textareaClassName) }))));
|
|
2777
2777
|
});
|
|
2778
2778
|
TextAreaInput.displayName = 'TextAreaInput';
|
|
2779
2779
|
|