@teamturing/react-kit 2.51.10 → 2.52.0
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
|
@@ -5127,6 +5127,7 @@ const TextInput = ({
|
|
|
5127
5127
|
inputRef.current?.focus();
|
|
5128
5128
|
};
|
|
5129
5129
|
return /*#__PURE__*/jsxRuntime.jsxs(TextInputWrapper$1, {
|
|
5130
|
+
className: 'text_input__wrapper',
|
|
5130
5131
|
disabled: disabled,
|
|
5131
5132
|
onClick: focusInput,
|
|
5132
5133
|
hasLeadingVisual: !utils.isNullable(LeadingVisual),
|
|
@@ -6052,10 +6053,12 @@ const Textarea = /*#__PURE__*/React.forwardRef(({
|
|
|
6052
6053
|
}
|
|
6053
6054
|
}, [ref]);
|
|
6054
6055
|
return /*#__PURE__*/jsxRuntime.jsxs(TextareaWrapper, {
|
|
6056
|
+
className: 'textarea__wrapper',
|
|
6055
6057
|
disabled: disabled,
|
|
6056
6058
|
onClick: focusInput,
|
|
6057
6059
|
validationStatus: validationStatus,
|
|
6058
6060
|
children: [/*#__PURE__*/jsxRuntime.jsx(ReactTextareaAutosize__default.default, {
|
|
6061
|
+
className: 'textarea__react_textarea_autosize',
|
|
6059
6062
|
minRows: 1,
|
|
6060
6063
|
...props,
|
|
6061
6064
|
ref: e => {
|
|
@@ -6065,6 +6068,7 @@ const Textarea = /*#__PURE__*/React.forwardRef(({
|
|
|
6065
6068
|
disabled: disabled,
|
|
6066
6069
|
onChange: handleChange
|
|
6067
6070
|
}), /*#__PURE__*/jsxRuntime.jsx(TextareaCount, {
|
|
6071
|
+
className: 'textarea__count',
|
|
6068
6072
|
children: renderCount(count, {
|
|
6069
6073
|
validationStatus,
|
|
6070
6074
|
disabled,
|
|
@@ -30,10 +30,12 @@ const Textarea = /*#__PURE__*/forwardRef(({
|
|
|
30
30
|
}
|
|
31
31
|
}, [ref]);
|
|
32
32
|
return /*#__PURE__*/jsxs(TextareaWrapper, {
|
|
33
|
+
className: 'textarea__wrapper',
|
|
33
34
|
disabled: disabled,
|
|
34
35
|
onClick: focusInput,
|
|
35
36
|
validationStatus: validationStatus,
|
|
36
37
|
children: [/*#__PURE__*/jsx(ReactTextareaAutosize, {
|
|
38
|
+
className: 'textarea__react_textarea_autosize',
|
|
37
39
|
minRows: 1,
|
|
38
40
|
...props,
|
|
39
41
|
ref: e => {
|
|
@@ -43,6 +45,7 @@ const Textarea = /*#__PURE__*/forwardRef(({
|
|
|
43
45
|
disabled: disabled,
|
|
44
46
|
onChange: handleChange
|
|
45
47
|
}), /*#__PURE__*/jsx(TextareaCount, {
|
|
48
|
+
className: 'textarea__count',
|
|
46
49
|
children: renderCount(count, {
|
|
47
50
|
validationStatus,
|
|
48
51
|
disabled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.52.0",
|
|
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",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"react-textarea-autosize": "^8.5.3",
|
|
67
67
|
"styled-system": "^5.1.5"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "e6dbce300d459f6e987ae5e8a4194cf02fa4896c"
|
|
70
70
|
}
|