@teamturing/react-kit 2.19.45 → 2.19.46
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 +1 -1
- package/esm/core/Textarea/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -23030,13 +23030,13 @@ const Textarea = /*#__PURE__*/React.forwardRef(({
|
|
|
23030
23030
|
onClick: focusInput,
|
|
23031
23031
|
validationStatus: validationStatus,
|
|
23032
23032
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(ReactTextareaAutosize__default.default, {
|
|
23033
|
+
minRows: 1,
|
|
23033
23034
|
...props,
|
|
23034
23035
|
ref: e => {
|
|
23035
23036
|
isFunction$1(ref) ? ref(e) : null;
|
|
23036
23037
|
inputRef.current = e;
|
|
23037
23038
|
},
|
|
23038
23039
|
disabled: disabled,
|
|
23039
|
-
minRows: 7,
|
|
23040
23040
|
onChange: handleChange
|
|
23041
23041
|
}), /*#__PURE__*/jsxRuntimeExports.jsxs(TextareaCount, {
|
|
23042
23042
|
children: [commaizeNumber(count), "\uC790"]
|
|
@@ -35,13 +35,13 @@ const Textarea = /*#__PURE__*/forwardRef(({
|
|
|
35
35
|
onClick: focusInput,
|
|
36
36
|
validationStatus: validationStatus,
|
|
37
37
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(ReactTextareaAutosize, {
|
|
38
|
+
minRows: 1,
|
|
38
39
|
...props,
|
|
39
40
|
ref: e => {
|
|
40
41
|
isFunction(ref) ? ref(e) : null;
|
|
41
42
|
inputRef.current = e;
|
|
42
43
|
},
|
|
43
44
|
disabled: disabled,
|
|
44
|
-
minRows: 7,
|
|
45
45
|
onChange: handleChange
|
|
46
46
|
}), /*#__PURE__*/jsxRuntimeExports.jsxs(TextareaCount, {
|
|
47
47
|
children: [commaizeNumber(count), "\uC790"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.46",
|
|
4
4
|
"description": "React components, hooks for create teamturing web application",
|
|
5
5
|
"author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
|
|
6
6
|
"homepage": "https://github.com/weareteamturing/bombe#readme",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"react-textarea-autosize": "^8.5.3",
|
|
66
66
|
"styled-system": "^5.1.5"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "1cd63d66b40289a82a276112e2b0c37f30b9c588"
|
|
69
69
|
}
|