@teamturing/react-kit 2.19.5 → 2.19.7
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 -5
- package/esm/core/FormControl/FormControlCaption.js +1 -1
- package/esm/core/FormControl/FormControlErrorMessage.js +1 -1
- package/esm/core/FormControl/FormControlSuccessMessage.js +1 -1
- package/esm/core/FormControl/index.js +1 -1
- package/esm/core/OverlaySelectInput/index.js +0 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -21067,7 +21067,6 @@ const BaseInput$1 = styled__default.default(UnstyledInput$1)`
|
|
|
21067
21067
|
|
|
21068
21068
|
white-space: pre;
|
|
21069
21069
|
text-overflow: ellipsis;
|
|
21070
|
-
pointer-events: none;
|
|
21071
21070
|
`;
|
|
21072
21071
|
var OverlaySelectInput$1 = /*#__PURE__*/React.forwardRef(OverlaySelectInput);
|
|
21073
21072
|
|
|
@@ -21580,7 +21579,7 @@ const FormControlCaption = ({
|
|
|
21580
21579
|
return /*#__PURE__*/jsxRuntimeExports.jsx(Text, {
|
|
21581
21580
|
as: 'span',
|
|
21582
21581
|
id: id,
|
|
21583
|
-
typography: '
|
|
21582
|
+
typography: 'xxs',
|
|
21584
21583
|
color: 'text/neutral/subtlest',
|
|
21585
21584
|
children: children
|
|
21586
21585
|
});
|
|
@@ -21594,7 +21593,7 @@ const FormControlErrorMessage = ({
|
|
|
21594
21593
|
} = React.useContext(FormControlContext);
|
|
21595
21594
|
return /*#__PURE__*/jsxRuntimeExports.jsx(StyledText$1, {
|
|
21596
21595
|
id: id,
|
|
21597
|
-
typography: '
|
|
21596
|
+
typography: 'xxs',
|
|
21598
21597
|
color: 'text/danger',
|
|
21599
21598
|
children: children
|
|
21600
21599
|
});
|
|
@@ -21691,7 +21690,7 @@ const FormControlSuccessMessage = ({
|
|
|
21691
21690
|
} = React.useContext(FormControlContext);
|
|
21692
21691
|
return /*#__PURE__*/jsxRuntimeExports.jsx(StyledText, {
|
|
21693
21692
|
id: id,
|
|
21694
|
-
typography: '
|
|
21693
|
+
typography: 'xxs',
|
|
21695
21694
|
color: 'text/success',
|
|
21696
21695
|
children: children
|
|
21697
21696
|
});
|
|
@@ -21751,7 +21750,7 @@ const FormControl = ({
|
|
|
21751
21750
|
}), /*#__PURE__*/jsxRuntimeExports.jsxs(View, {
|
|
21752
21751
|
sx: {
|
|
21753
21752
|
'& > span': {
|
|
21754
|
-
mt: 0
|
|
21753
|
+
mt: 0.5
|
|
21755
21754
|
}
|
|
21756
21755
|
},
|
|
21757
21756
|
children: [relocatableComponentsObject.label, relocatableComponentsObject.caption, relocatableComponentsObject.errorMessage, relocatableComponentsObject.successMessage]
|
|
@@ -52,7 +52,7 @@ const FormControl = ({
|
|
|
52
52
|
}), /*#__PURE__*/jsxRuntimeExports.jsxs(View, {
|
|
53
53
|
sx: {
|
|
54
54
|
'& > span': {
|
|
55
|
-
mt: 0
|
|
55
|
+
mt: 0.5
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
children: [relocatableComponentsObject.label, relocatableComponentsObject.caption, relocatableComponentsObject.errorMessage, relocatableComponentsObject.successMessage]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.7",
|
|
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",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"react-is": "^18.2.0",
|
|
63
63
|
"styled-system": "^5.1.5"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "b4ae7f169a8281f95f95425f817bdf2968d32269"
|
|
66
66
|
}
|