@true-engineering/true-react-common-ui-kit 4.0.0-alpha16 → 4.0.0-alpha17
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/components/TextArea/TextArea.d.ts +1 -3
- package/dist/true-react-common-ui-kit.js +6 -4
- package/dist/true-react-common-ui-kit.js.map +1 -1
- package/dist/true-react-common-ui-kit.umd.cjs +6 -4
- package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/src/components/TextArea/TextArea.tsx +8 -5
|
@@ -31397,9 +31397,8 @@
|
|
|
31397
31397
|
}
|
|
31398
31398
|
var DEFAULT_VALUE = "";
|
|
31399
31399
|
var TextArea = /* @__PURE__ */ React.forwardRef(function(_param, ref) {
|
|
31400
|
-
var _param_value = _param.value, value = _param_value === void 0 ? DEFAULT_VALUE : _param_value,
|
|
31400
|
+
var _param_value = _param.value, value = _param_value === void 0 ? DEFAULT_VALUE : _param_value, placeholder = _param.placeholder, name = _param.name, shouldFocusOnMount = _param.shouldFocusOnMount, _param_hasCounter = _param.hasCounter, hasCounter = _param_hasCounter === void 0 ? true : _param_hasCounter, shouldTrimAfterMaxLength = _param.shouldTrimAfterMaxLength, _param_isAutoSized = _param.isAutoSized, isAutoSized = _param_isAutoSized === void 0 ? true : _param_isAutoSized, shouldAlwaysShowPlaceholder = _param.shouldAlwaysShowPlaceholder, isActive = _param.isActive, maxLength = _param.maxLength, rows = _param.rows, data = _param.data, testId = _param.testId, tweakStyles = _param.tweakStyles, onChange = _param.onChange, onPaste = _param.onPaste, onFocus = _param.onFocus, onBlur = _param.onBlur, infoMessage = _param.infoMessage, errorMessage = _param.errorMessage, label = _param.label, isDisabled = _param.isDisabled, isInvalid = _param.isInvalid, isRequired = _param.isRequired, size = _param.size, groupPlacement = _param.groupPlacement, textAreaProps = _object_without_properties$3(_param, [
|
|
31401
31401
|
"value",
|
|
31402
|
-
"label",
|
|
31403
31402
|
"placeholder",
|
|
31404
31403
|
"name",
|
|
31405
31404
|
"shouldFocusOnMount",
|
|
@@ -31407,7 +31406,6 @@
|
|
|
31407
31406
|
"shouldTrimAfterMaxLength",
|
|
31408
31407
|
"isAutoSized",
|
|
31409
31408
|
"shouldAlwaysShowPlaceholder",
|
|
31410
|
-
"isDisabled",
|
|
31411
31409
|
"isActive",
|
|
31412
31410
|
"maxLength",
|
|
31413
31411
|
"rows",
|
|
@@ -31420,9 +31418,12 @@
|
|
|
31420
31418
|
"onBlur",
|
|
31421
31419
|
"infoMessage",
|
|
31422
31420
|
"errorMessage",
|
|
31421
|
+
"label",
|
|
31422
|
+
"isDisabled",
|
|
31423
31423
|
"isInvalid",
|
|
31424
31424
|
"isRequired",
|
|
31425
|
-
"size"
|
|
31425
|
+
"size",
|
|
31426
|
+
"groupPlacement"
|
|
31426
31427
|
]);
|
|
31427
31428
|
var classes = useStyles$4({
|
|
31428
31429
|
theme: tweakStyles
|
|
@@ -31468,6 +31469,7 @@
|
|
|
31468
31469
|
hasValue,
|
|
31469
31470
|
isInvalid,
|
|
31470
31471
|
isRequired,
|
|
31472
|
+
groupPlacement,
|
|
31471
31473
|
size,
|
|
31472
31474
|
isFullWidth: true,
|
|
31473
31475
|
children: /* @__PURE__ */ jsx("div", _object_spread_props$5(_object_spread$5({
|