@teamturing/react-kit 2.23.7 → 2.23.8
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 +4 -1
- package/esm/core/FormControl/index.js +4 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -36017,7 +36017,8 @@ const FormControl = ({
|
|
|
36017
36017
|
disabled,
|
|
36018
36018
|
required,
|
|
36019
36019
|
additionalInputComponentCandidates = [],
|
|
36020
|
-
sx
|
|
36020
|
+
sx,
|
|
36021
|
+
...props
|
|
36021
36022
|
}, ref) => {
|
|
36022
36023
|
const [relocatableComponentsObject, restComponents] = useRelocation({
|
|
36023
36024
|
children: propChildren,
|
|
@@ -36044,6 +36045,7 @@ const FormControl = ({
|
|
|
36044
36045
|
columnGap: 2,
|
|
36045
36046
|
...sx
|
|
36046
36047
|
},
|
|
36048
|
+
...props,
|
|
36047
36049
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(View, {
|
|
36048
36050
|
display: 'inline-flex',
|
|
36049
36051
|
children: /*#__PURE__*/React.cloneElement(InputComponent, {
|
|
@@ -36072,6 +36074,7 @@ const FormControl = ({
|
|
|
36072
36074
|
},
|
|
36073
36075
|
...sx
|
|
36074
36076
|
},
|
|
36077
|
+
...props,
|
|
36075
36078
|
children: [relocatableComponentsObject.label, /*#__PURE__*/React.cloneElement(InputComponent, {
|
|
36076
36079
|
id,
|
|
36077
36080
|
disabled,
|
|
@@ -20,7 +20,8 @@ const FormControl = ({
|
|
|
20
20
|
disabled,
|
|
21
21
|
required,
|
|
22
22
|
additionalInputComponentCandidates = [],
|
|
23
|
-
sx
|
|
23
|
+
sx,
|
|
24
|
+
...props
|
|
24
25
|
}, ref) => {
|
|
25
26
|
const [relocatableComponentsObject, restComponents] = useRelocation({
|
|
26
27
|
children: propChildren,
|
|
@@ -47,6 +48,7 @@ const FormControl = ({
|
|
|
47
48
|
columnGap: 2,
|
|
48
49
|
...sx
|
|
49
50
|
},
|
|
51
|
+
...props,
|
|
50
52
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(View, {
|
|
51
53
|
display: 'inline-flex',
|
|
52
54
|
children: /*#__PURE__*/cloneElement(InputComponent, {
|
|
@@ -75,6 +77,7 @@ const FormControl = ({
|
|
|
75
77
|
},
|
|
76
78
|
...sx
|
|
77
79
|
},
|
|
80
|
+
...props,
|
|
78
81
|
children: [relocatableComponentsObject.label, /*#__PURE__*/cloneElement(InputComponent, {
|
|
79
82
|
id,
|
|
80
83
|
disabled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.8",
|
|
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": "4decee0a0fbfa4e99bed2ad3218292d1d41fa573"
|
|
70
70
|
}
|