@teamturing/react-kit 2.32.1 → 2.32.3
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
|
@@ -6873,7 +6873,7 @@ const ActionListItem = ({
|
|
|
6873
6873
|
gapX: 2,
|
|
6874
6874
|
gapY: 0.5,
|
|
6875
6875
|
wrap: true,
|
|
6876
|
-
alignItems: '
|
|
6876
|
+
alignItems: 'center',
|
|
6877
6877
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(Grid$1.Unit, {
|
|
6878
6878
|
size: descriptionLayout === 'inline' ? 'min' : 1,
|
|
6879
6879
|
sx: {
|
|
@@ -36883,6 +36883,7 @@ const FormControlLabel = ({
|
|
|
36883
36883
|
disabled: disabled,
|
|
36884
36884
|
children: [children, typeof required === 'boolean' && required === false ? /*#__PURE__*/jsxRuntimeExports.jsx(View, {
|
|
36885
36885
|
as: 'span',
|
|
36886
|
+
className: 'form_control_label__required__false',
|
|
36886
36887
|
"aria-hidden": "true",
|
|
36887
36888
|
children: ' (선택)'
|
|
36888
36889
|
}) : null]
|
|
@@ -36931,7 +36932,7 @@ const LabelWrapper = styled__default.default(View)`
|
|
|
36931
36932
|
disabled
|
|
36932
36933
|
}) => disabled ? 'not-allowed' : 'pointer'};
|
|
36933
36934
|
|
|
36934
|
-
span {
|
|
36935
|
+
span.form_control_label__required__false {
|
|
36935
36936
|
font-size: inherit;
|
|
36936
36937
|
font-weight: inherit;
|
|
36937
36938
|
color: ${({
|
|
@@ -28,6 +28,7 @@ const FormControlLabel = ({
|
|
|
28
28
|
disabled: disabled,
|
|
29
29
|
children: [children, typeof required === 'boolean' && required === false ? /*#__PURE__*/jsxRuntimeExports.jsx(View, {
|
|
30
30
|
as: 'span',
|
|
31
|
+
className: 'form_control_label__required__false',
|
|
31
32
|
"aria-hidden": "true",
|
|
32
33
|
children: ' (선택)'
|
|
33
34
|
}) : null]
|
|
@@ -76,7 +77,7 @@ const LabelWrapper = styled(View)`
|
|
|
76
77
|
disabled
|
|
77
78
|
}) => disabled ? 'not-allowed' : 'pointer'};
|
|
78
79
|
|
|
79
|
-
span {
|
|
80
|
+
span.form_control_label__required__false {
|
|
80
81
|
font-size: inherit;
|
|
81
82
|
font-weight: inherit;
|
|
82
83
|
color: ${({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.32.
|
|
3
|
+
"version": "2.32.3",
|
|
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": "56d2473afc39512754a840dcfcfc473251089c6a"
|
|
70
70
|
}
|