@teamturing/react-kit 2.32.4 → 2.32.5
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.
|
@@ -24,7 +24,7 @@ type Props = {
|
|
|
24
24
|
* 로딩 상태를 정의합니다.
|
|
25
25
|
*/
|
|
26
26
|
loading?: boolean;
|
|
27
|
-
} & Pick<UnstyledButtonProps, 'type' | 'onClick'>;
|
|
27
|
+
} & Pick<UnstyledButtonProps, 'type' | 'onClick' | 'sx'>;
|
|
28
28
|
declare const IconButton: import("react").ForwardRefExoticComponent<{
|
|
29
29
|
/**
|
|
30
30
|
* IconButton에 사용할 아이콘을 정의합니다.
|
|
@@ -48,6 +48,6 @@ declare const IconButton: import("react").ForwardRefExoticComponent<{
|
|
|
48
48
|
* 로딩 상태를 정의합니다.
|
|
49
49
|
*/
|
|
50
50
|
loading?: boolean | undefined;
|
|
51
|
-
} & Pick<UnstyledButtonProps, "type" | "onClick"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
51
|
+
} & Pick<UnstyledButtonProps, "type" | "onClick" | "sx"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
52
52
|
export default IconButton;
|
|
53
53
|
export type { Props as IconButtonProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.32.
|
|
3
|
+
"version": "2.32.5",
|
|
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": "583fce93dc916787ee7b22c77c3f81d287aefdb1"
|
|
70
70
|
}
|