@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: ${({
@@ -52,7 +52,7 @@ const VisuallyHidden = styled.span`
52
52
  }}
53
53
  `;
54
54
  const LabelWrapper = styled(View)`
55
- display: block;
55
+ display: inline-block;
56
56
  align-self: flex-start;
57
57
 
58
58
  font-size: ${({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.19.37",
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": "73945734bdadf5722fb5450dc467d0d267e88540"
68
+ "gitHead": "6f673f701443848c95b7684e0343aedc42ab03cd"
69
69
  }