@teamturing/react-kit 2.19.0 → 2.19.1

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.
@@ -21,7 +21,7 @@ type Props = {
21
21
  *
22
22
  * FormControl이 허용하는 Input 컴포넌트를 추가로 정의합니다.
23
23
  */
24
- additionalInputComponentCandidates: any[];
24
+ additionalInputComponentCandidates?: any[];
25
25
  };
26
26
  type FormControlFieldProps = {
27
27
  name: string;
package/dist/index.js CHANGED
@@ -21520,7 +21520,7 @@ const FormControl = ({
21520
21520
  id,
21521
21521
  disabled,
21522
21522
  required,
21523
- additionalInputComponentCandidates
21523
+ additionalInputComponentCandidates = []
21524
21524
  }, ref) => {
21525
21525
  const [relocatableComponentsObject, restComponents] = useRelocation({
21526
21526
  children: propChildren,
@@ -17,7 +17,7 @@ const FormControl = ({
17
17
  id,
18
18
  disabled,
19
19
  required,
20
- additionalInputComponentCandidates
20
+ additionalInputComponentCandidates = []
21
21
  }, ref) => {
22
22
  const [relocatableComponentsObject, restComponents] = useRelocation({
23
23
  children: propChildren,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.19.0",
3
+ "version": "2.19.1",
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": "0a40eab032d58877e2176890d7ea32f758366e26"
65
+ "gitHead": "71cf5d8aaaeb02aa59d3500041a9e1d55c6a4b1a"
66
66
  }