@teamturing/react-kit 2.19.37 → 2.19.39
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ComponentType, SVGProps } from 'react';
|
|
2
2
|
import { ResponsiveValue } from 'styled-system';
|
|
3
|
+
import { AsProp } from '../../utils/styled-system';
|
|
3
4
|
import { UnstyledButtonProps } from '../_UnstyledButton';
|
|
4
5
|
type Props = {
|
|
5
6
|
/**
|
|
@@ -32,7 +33,7 @@ type Props = {
|
|
|
32
33
|
* 텍스트 뒤에 보여질 아이콘을 정의합니다.
|
|
33
34
|
*/
|
|
34
35
|
trailingIcon?: ComponentType<SVGProps<SVGSVGElement>>;
|
|
35
|
-
} & UnstyledButtonProps;
|
|
36
|
+
} & UnstyledButtonProps & AsProp;
|
|
36
37
|
declare const Button: import("react").ForwardRefExoticComponent<{
|
|
37
38
|
/**
|
|
38
39
|
* 크기를 정의합니다.
|
|
@@ -64,7 +65,7 @@ declare const Button: import("react").ForwardRefExoticComponent<{
|
|
|
64
65
|
* 텍스트 뒤에 보여질 아이콘을 정의합니다.
|
|
65
66
|
*/
|
|
66
67
|
trailingIcon?: ComponentType<SVGProps<SVGSVGElement>> | undefined;
|
|
67
|
-
} & import("react").ButtonHTMLAttributes<HTMLButtonElement> & import("../../utils/styled-system").SxProp & {
|
|
68
|
+
} & import("react").ButtonHTMLAttributes<HTMLButtonElement> & import("../../utils/styled-system").SxProp & AsProp & {
|
|
68
69
|
children?: import("react").ReactNode;
|
|
69
70
|
} & import("react").RefAttributes<HTMLButtonElement>>;
|
|
70
71
|
export default Button;
|
package/dist/index.js
CHANGED
|
@@ -23257,7 +23257,7 @@ const VisuallyHidden = styled__default.default.span`
|
|
|
23257
23257
|
}}
|
|
23258
23258
|
`;
|
|
23259
23259
|
const LabelWrapper = styled__default.default(View)`
|
|
23260
|
-
display: block;
|
|
23260
|
+
display: inline-block;
|
|
23261
23261
|
align-self: flex-start;
|
|
23262
23262
|
|
|
23263
23263
|
font-size: ${({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.39",
|
|
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",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"react-textarea-autosize": "^8.5.3",
|
|
66
66
|
"styled-system": "^5.1.5"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "6f673f701443848c95b7684e0343aedc42ab03cd"
|
|
69
69
|
}
|