# @imwebme/clay-components

## 3.4.8

### Patch Changes

- 5344993: hotfix for multi select - select의 tag 를 클릭하면 닫히지 않는 버그 수정

## 3.4.7

### Patch Changes

- Updated dependencies [3837cc9]
  - @imwebme/clay-icons@1.0.15

## 3.4.6

### Patch Changes

- 56abaf5: DS-420: typography 반영 작업

  Typography가 업데이트 되었습니다.

  - 이제 기본 폰트는 imweb sans 입니다.
  - imweb sans / Pretendard / Roboto mono 가 imweb 의 CDN을 통해 제공됩니다.
  - Label 컴포넌트의 bold prop의 default 값은 `true` 입니다.

- Updated dependencies [56abaf5]
  - @imwebme/clay-token@2.1.0

## 3.4.5

### Patch Changes

- 379ece3: hotfix: NumberBadge 수평 정렬 이슈를 해결합니다.
- ba4f643: clay 2.1 버전까지 개발된 사항에서 발견된 지향님 이슈를 반영하여 업데이트합니다.

  - Primary Button의 아이콘 색은 icon-inverse 입니다.
  - Textfield가 disabled 이면 svg 도 icon-disabled 입니다.

## 3.4.4

### Patch Changes

- 9f03b7e: update: checkbox, label 다크테마에 맞게 수정

## 3.4.3

### Patch Changes

- 046a66a: feat: Tooltip에 onClose props이 추가되었습니다.

  ```jsx
  <Tooltip onClose={() => ...}>
    ...
  </Tooltip>
  ```

  과 같은 형태로 prop이 열렸습니다.

## 3.4.2

### Patch Changes

- d2f2ac8: Tabs 인터페이스를 개선합니다.
  기존의 Tabs 는 deprecated 되었습니다. (Legacy에서 export 되고 있습니다)

  DS-383: Tabs를 추가합니다.

  ```tsx
  <Tabs variant="filled">
    <TabList>
      <Tab text="나는 TAB" />
      <Tab text="나는 TAB 2" icon={<Placeholder />} />
      <Tab text="나는 TAB 2" badge="number" badgeValue={256} />
      <Tab text="나는 TAB 2" badge="dot" icon={<Placeholder />} />
      <Tab text="나는 TAB 2" badge="dot" icon={<Placeholder />} status="warning" />
      <Tab text="나는 TAB 2" badge="dot" icon={<Placeholder />} status="success" />
      <Tab text="나는 TAB 3" icon={<Placeholder />} disabled />
    </TabList>

    <TabPanels>
      <TabPanel>tab1</TabPanel>
      <TabPanel>tab2</TabPanel>
      <TabPanel>tab3</TabPanel>
      <TabPanel>tab4</TabPanel>
    </TabPanels>
  </Tabs>
  ```

- Updated dependencies [d2f2ac8]
  - @imwebme/clay-hooks@0.0.15

## 3.4.1

### Patch Changes

- b1e046b: 다크모드에서 TextArea Error 상태 UI가 잘못 표시되는 버그를 수정합니다.

## 3.4.0

### Minor Changes

- d9bc369: SocialLoginButton을 생성합니다.

  - naver, kakao, google, apple, line, facebook 버튼을 사용할 수 있습니다.
  - icon only 버튼으로도 사용 가능합니다.

## 3.3.0

### Minor Changes

- 5b9108c: TextButton
  - leadingIcon, trailingIcon 을 생성합니다. 기존 icon, iconPosition prop을 대체합니다.
  - 로딩상태(isLoading)를 추가합니다.

### Patch Changes

- c2d0399: value 변경없이 onChangeValue만 변경되었을 때, onChangeValue 가 호출되는 문제를 해결합니다.

## 3.2.1

### Patch Changes

- 0051856: Button loading 시 spinner ui의 중심이 틀어져 흔들리는 문제를 해결합니다.

## 3.2.0

### Minor Changes

- eb33b1b: Button

  - `variant='elevate'` 가 제거됩니다.
  - `leftIcon`, `rightIcon` props 이 `leadingIcon`, `trailingIcon` 으로 교체됩니다.
  - Button 컴포넌트의 `text` prop 이 required로 변경됩니다.
  - IconButton 컴포넌트가 추가됩니다.

### Patch Changes

- 2d7f41b: TooltipContent의 arrow가 불필요하게 많은 영역을 차지하고 있는 것을 개선하고, 간격이 figma와 동일하지 않은 이슈를 개선합니다.

## 3.1.3

### Patch Changes

- 11aa020: spinner css 선언을 개선합니다

## 3.1.2

### Patch Changes

- ba96b2d: accent variant 타입이 추론되지 않는 문제를 해결합니다.

## 3.1.1

### Patch Changes

- 50bb505: - 버튼에 변경된 토큰 적용
  - 버튼에 accent variant 추가
- 2585c32: - TabList 컴포넌트의 token이 2.0 가이드에 맞지 않는 이슈를 처리합니다.
  - TabList의 size를 추가합니다. (xlarge, 2xlarge -> I/O only)

## 3.1.0

### Minor Changes

- 26eaa6f: ## BREAKING CHANGE

  Avatar 에서 Avatar.Badge를 사용할 때 NumberBadge와 DotBadge를 사용할 수 있도록 합니다.

  ```diff
  <Avatar>
  -   <Avatar.Dot type="primary" />
  +   <Avatar.Dot variant="accent" />
  </Avatar>

  <Avatar>
  -   <Avatar.DotNumber text="99+" type="primary" on />
  +   <Avatar.DotNumber number="99+" variant="accent" />
  </Avatar>
  ```

  - type 속성을 variant로 변경하고, on 속성을 제거합니다.
  - type 속성의 primary, secondary, critical 값은 variant 속성의 primary, secondary, accent, critical 값으로 변경됩니다.

## 3.0.1

### Patch Changes

- 43fda66: - focus accent 추가
  - DotBadge color token update
- Updated dependencies [43fda66]
  - @imwebme/clay-token@2.0.2

## 3.0.0

### Major Changes

- 0dcd2e3: [Clay 2.0] DS-384: Switch token 변경사항 작업
- 0dcd2e3: #### [DS-375] 업데이트

  - icon fill type 이 추가되었습니다.
  - icon token이 업데이트되었습니다. (iconPrimary -> iconAccent)
  - clay-components 는 이제 clay-icons를 dependency로 갖고 있습니다.

- 0dcd2e3: DS-380: Checkbox 컬러 토큰 반영
- Updated dependencies [0dcd2e3]
- Updated dependencies [0dcd2e3]
  - @imwebme/clay-token@2.0.0
  - @imwebme/clay-icons@1.0.14

## 2.1.41

### Patch Changes

- 6d28f35: refactor: avatar 에서는 강제 로딩이 불필요하기 때문에 제거했습니다.
- Checkbox.Label 에서 sx 가 전달이 되지 않는 문제를 해결합니다.

## 2.1.40

### Patch Changes

- 38bf8e2: new: TabList 가 추가되었습니다.

  - value를 통해서 직접 Tab의 활성화 탭을 컨트롤 해야 합니다.
  - TabPanel은 제공되지 않습니다. (SwitchCase 사용을 권장합니다.)

- Updated dependencies [38bf8e2]
  - @imwebme/clay-hooks@0.0.14

## 2.1.39

### Patch Changes

- f4f9736: [🐞] outlined Button disabled 상태의 outline 문제 #384
- 938c5da: [🐞] 아이콘을 포함한 컴포넌트의 disabled 상태에서 아이콘의 색상은 유지되는 현상 #385

## 2.1.38

### Patch Changes

- 03593d4: hotfix: Elevated Button 에서 Spinner 가 제대로 동작하지 않는 이슈를 해결해요

## 2.1.37

### Patch Changes

- Updated dependencies [cbfacf1]
  - @imwebme/clay-hooks@0.0.13

## 2.1.36

### Patch Changes

- 46ec327: ProgressBar 컴포넌트를 추가합니다.

## 2.1.35

### Patch Changes

- 00184ce: Refactor Tabs component and add external controls

## 2.1.34

### Patch Changes

- 7aece19: hotfix: Tooltip.Trigger의 as가 undefined 일 때도 type: "button" 이 들어가도록 처리

## 2.1.33

### Patch Changes

- 8cf8118: hotfix: update `Spinner` rotate deg

## 2.1.32

### Patch Changes

- 8731fe7: update textfield addon css

## 2.1.31

### Patch Changes

- 4ef677c: component
  create new Component `Tabs`

  hooks
  create new hook `useDebounce`

- Updated dependencies [4ef677c]
  - @imwebme/clay-hooks@0.0.12

## 2.1.30

### Patch Changes

- ef6b3e1: Add native prop to TextareaCore component

## 2.1.29

### Patch Changes

- 9754492: hotfix: Add cursor pointer to checkbox and radio labels

## 2.1.28

### Patch Changes

- f6c35fa: hotfix: Tooltip.Trigger 는 as 를 사용할 때 더이상 타입 에러를 발생하지 않습니다.

## 2.1.27

### Patch Changes

- da09d2a: #343: Refactor TooltipTrigger component

## 2.1.26

### Patch Changes

- 40bfdd6: DS-357: new props for Avatar `selected`
- 3daa219: hotfix: Update appearance of search cancel button and spin buttons in Textfield.css.ts

## 2.1.25

### Patch Changes

- 4e6dc2b: Textfield, Textarea, Select 컴포넌트의 disabled 상태의 배경색을 수정합니다.
  field-disabled 를 추가합니다.
- Updated dependencies [4e6dc2b]
  - @imwebme/clay-token@1.0.16

## 2.1.24

### Patch Changes

- ba6fc63: DS-357: new props for Avatar `selected`

## 2.1.23

### Patch Changes

- 04be7c4: radio-group 의 prop이름을 개선합니다.
  onChange -> onChangeValue
- 9dda910: hotfix: checkbox icon이 체크 상태에 따라 들쑥날쑥 되는 현상

## 2.1.22

### Patch Changes

- f430336: Checkbox/Radio types을 개선합니다.
  - Checkbox/Radio 는 type을 받을 수 없습니다.
  - useCheckboxGroup 과 useIndeterminateCheckboxGroup 의 getCheckboxProps은 Checkbox.Label prop을 반환합니다.

## 2.1.21

### Patch Changes

- 1725789: - Textarea가 isError 일 때 border 가 hover 해도 나타나지 않는 현상
  - Textarea의 focus border width 1px -> 2px
  - Textarea가 focus 되어도 배경색이 surface가 되지 않는 현상
  - Radio.Label 의 iconPosition right 가 동작하지 않는 현상
  - Storybook 빌드 에러 해결

## 2.1.20

### Patch Changes

- 0272ee5: Radio 컴포넌트를 개편하고, 컬러 토큰을 추가합니다.
- Updated dependencies [0272ee5]
  - @imwebme/clay-token@1.0.15

## 2.1.19

### Patch Changes

- 9e348bb: ## update

  Checkbox

  - 구조가 변경됩니다. / Set, Label, Checkbox
  - checkbox는 이제 아이콘만 있는 케이스입니다.
  - Checkbox.Label 에서 children 구조로 아이콘과 라벨을 분리할 수 있습니다.

  Button

  - onClick 을 제외한 props는 이제 native 안으로 들어갑니다.

## 2.1.18

### Patch Changes

- cd2116d: hotfix for #321
  - button has `type` props in one depth
  - default value is `button`

## 2.1.17

### Patch Changes

- ed525ee: DS-337: optionList의 background 는 popOver 일 때만 흰색입니다.

## 2.1.16

### Patch Changes

- ea29367: #312: textfield invalid 상태에서 focus는 상태를 보여주지 않습니다.

## 2.1.15

### Patch Changes

- 880df9a: DS-335: hotfix for textfield cover with 120px

## 2.1.14

### Patch Changes

- 923f603: DS-273: update optionList checked color

## 2.1.13

### Patch Changes

- 2071184: - checkbox가 체크 된 상태에서 disabled 일 때, 색상이 figma와 다른 버그를 해결합니다.
  - textfield 의 type이 password 이면, placeholder의 fontSize와 letterSpacing이 달라지는 버그를 해결합니다.

## 2.1.12

### Patch Changes

- f20fb1d: Hotfix: heading과 text 컴포넌트는 두 줄 사용이 가능합니다.

## 2.1.11

### Patch Changes

- db849fb: Textfield

  - Size 에 따라 paddingX 가 달라집니다.
  - Textfield의 built-in icon의 색상을 변경했습니다. icon -> iconSecondary
  - Textfield.Container -> Textfield.Box 네이밍 변경
  - type="input" 으로 설정해도 built-in 화살표가 보이지 않습니다.
  - TextfieldNumericInput 가 추가되었습니다.

  Card

  - Card.Header 의 header prop을 size prop으로 변경했습니다. deprecated 예정

## 2.1.10

### Patch Changes

- 392619d: DS-276: update for icons (tsDocs), apply prettier formatting

## 2.1.9

### Patch Changes

- af052bb: card 퍼블리싱 수정, 불필요한 `head` prop 삭제

## 2.1.8

### Patch Changes

- a1fef63: - textfield 는 이제 width 를 가질 수 있으며, width 설정 값에 따라 inline 여부가 결정됩니다.
  - type=search 설정에 따라 clearButton 을 가질 수 있습니다.

## 2.1.7

### Patch Changes

- dfa7a92: modal 의 use case interface를 개선하고, 퍼블리싱이 figma와 맞지 않는 이슈를 개선합니다.

## 2.1.6

### Patch Changes

- 8fdef5a: 스크롤 여부에 따라 Select 위치가 달라지는 버그를 개선합니다.

## 2.1.5

### Patch Changes

- b999973: Clay에 native Props를 추가했습니다. (구 HTMLProps)

  - 이젠 as에 맞게 native 객체가 추론됩니다.

  Textfield 구조를 개편했습니다.

## 2.1.4

### Patch Changes

- 1ffc76e: Button의 iconPosition을 없애고, icon deprecated 에서 원복했습니다.

## 2.1.3

### Patch Changes

- 0e124bf: DS-298: hotfix avatar dummy rerendering

## 2.1.2

### Patch Changes

- 7542d86: [DS-277] modal update

  - modal은 더이상 minWidth 로 결정되지 않습니다. small / medium / large / full 로 결정됩니다.
  - modal 구조가 변경되었습니다.
  - VisualModal이 추가되었습니다.

- Updated dependencies [7542d86]
  - @imwebme/clay-hooks@0.0.11

## 2.1.1

### Patch Changes

- d2ebff3: DS-279: select 동작 버그를 해결합니다.

## 2.1.0

### Minor Changes

- b6f8926: 컴포넌트 범위에서 자잘한 버그들을 수정했습니다.

  - Flex에 id를 줄 수 없는 이슈
  - FlexCenter -> Flex.Center 로 변경
  - Avatar Size 이슈
  - Textbutton 에 data attribute 추가 안 되는 이슈
  - textarea에 name 추가
  - button height 가 "fit-content" 로 들어가서 CSS 버그로 인식되는 이슈
  - checkbox, OptionItem, OptionItemComposition 에 onClick 추가

## 2.0.22

### Patch Changes

- 154140c: DS-161: ButtonGroup clearFix 추가 & fullWidth -> isInline prop 네이밍 수정

## 2.0.21

### Patch Changes

- 8273749: DS-159, DS-160 을 대응합니다.
  icon은 이제 leftIcon과 rightIcon으로 분리되었습니다.
  iconPosition은 이에 따라 deprecated 되었습니다. 2.0에서 제거가 될 예정입니다.
  variant elevated 에 disabled가 색상이 적용이 잘못된 내용이 반영됩니다.
- 716035a: DS-275: textfield가 type과 name을 받을 수 있도록 수정

## 2.0.20

### Patch Changes

- 0c96779: feat: 아바타 컴포넌트를 추가합니다.
- Updated dependencies [0c96779]
  - @imwebme/clay-hooks@0.0.10
  - @imwebme/clay-token@1.0.14

## 2.0.19

### Patch Changes

- 0e5c812: feat(new/component): Heading 컴포넌트를 추가합니다.

## 2.0.18

### Patch Changes

- a119def: fix: #257 select portal 의 minWidth auto로 수정

## 2.0.17

### Patch Changes

- a455668: fix: [🐞] textfield invalid 상태의 hover design #256

## 2.0.16

### Patch Changes

- 77f2ba7: hotfix: button tonal status in variant secondary case
- Updated dependencies [77f2ba7]
  - @imwebme/clay-token@1.0.13

## 2.0.15

### Patch Changes

- 6b946a2: feat(component): add LocalColorSchemeArea
  feat(theme): add depreacted JSDoc

## 2.0.14

### Patch Changes

- 3d86e1e: chore: fix select component
  chore: rename Float to Absolute

## 2.0.13

### Patch Changes

- ef51b32: hotfix(component): select portal 개선
  feat(component): add new component - Float

## 2.0.12

### Patch Changes

- 2c1c0c6: feat: button height: fit-content 추가 / next-theme 지원

## 2.0.11

### Patch Changes

- d97eb19: docs: Badge 문서 개선

## 2.0.10

### Patch Changes

- 8fda21e: fix: clay-components는 이제 더이상 icon 을 의존성으로 갖지 않습니다.

## 2.0.9

### Patch Changes

- 780f00b: hotfix: button 은 text 가 없어도 됩니다. (icon-only)

## 2.0.8

### Patch Changes

- b458b69: refactoring: PageBanner remove import clay-icon
- Updated dependencies [b458b69]
  - @imwebme/clay-icons@1.0.10

## 2.0.7

### Patch Changes

- c2bd5cb: chore: delete icon import from contentBanner
- Updated dependencies [c2bd5cb]
  - @imwebme/clay-icons@1.0.9

## 2.0.6

### Patch Changes

- Updated dependencies [c1d9a70]
  - @imwebme/clay-hooks@0.0.9

## 2.0.5

### Patch Changes

- eb4084c: Feat/token/add tonel
- Updated dependencies [eb4084c]
  - @imwebme/clay-token@1.0.12

## 2.0.4

### Patch Changes

- update clay
- Updated dependencies
  - @imwebme/clay-hooks@0.0.8
  - @imwebme/clay-icons@1.0.8
  - @imwebme/clay-token@1.0.11

## 2.0.3

### Patch Changes

- update build config

## 2.0.2

### Patch Changes

- component: update disabled color for textfield

## 2.0.1

### Patch Changes

- add enabled props to TooltipTrigger
- Updated dependencies
  - @imwebme/clay-hooks@0.0.7

## 2.0.0

### Major Changes

- hotfix: for #212 add ref to textarea and textfield

## 1.1.72

### Patch Changes

- update token value
- Updated dependencies
  - @imwebme/clay-token@1.0.10

## 1.1.71

### Patch Changes

- change token value for actionBackdrop and name to backdrop
- Updated dependencies
  - @imwebme/clay-token@1.0.9

## 1.1.70

### Patch Changes

- add inputId props to checkbox

## 1.1.68

### Patch Changes

- change CardHeader description type string to ReactNode and add button, a css

## 1.1.67

### Patch Changes

- fix height issue to ContentBanner and add hover effect to ContentBanner text button

## 1.1.66

### Patch Changes

- Add description prop to CardHeader

## 1.1.65

### Patch Changes

- update content banner - minimal

## 1.1.62

### Patch Changes

- 13f27d7: refactoring: icon & components package tree shaking

## 1.1.61

### Patch Changes

- c4c5bb3: select input 의 chevron color token을 고정합니다.

## 1.1.60

### Patch Changes

- 7431f86: hotfix: PageBanner Icon 의 크기가 title의 두 줄 여부에 따라 달라지는 이슈 처리

## 1.1.59

### Patch Changes

- 55661cf: hotfix: select input component 에 sx 를 전달할 수 있습니다.

## 1.1.58

### Patch Changes

- 88bc76b: hotfix: add sx props to Select Portal component

## 1.1.57

### Patch Changes

- 7ef8084: hotfix: AD Squad 이슈 제보로 인한 개선 및 수정
- Updated dependencies [7ef8084]
  - @imwebme/clay-hooks@0.0.6

## 1.1.56

### Patch Changes

- Updated dependencies [7ba7dc6]
  - @imwebme/clay-token@1.0.8

## 1.1.55

### Patch Changes

- c9504cd: hotfix: OptionItemCheckbox isDisabled 개선

## 1.1.54

### Patch Changes

- c7ced5d: hotfix: checkbox 사용성 개선

## 1.1.53

### Patch Changes

- 12ffb7c: hotfix(components): add \_focus to clay

## 1.1.52

### Patch Changes

- d072b0a: hotfix: add outline-offset and OptionItem size prop

## 1.1.51

### Patch Changes

- 360f9e7: hofix: add contentBanner paddingY

## 1.1.50

### Patch Changes

- 1ecce61: hotfix: buttonGroup의 fullWidth가 default로 true인 것을 제거합니다.

## 1.1.49

### Patch Changes

- 0f4d03c: hotfix: buttonGroup fullWidth

## 1.1.48

### Patch Changes

- 10f5035: hotfix: badge component bg

## 1.1.47

### Patch Changes

- 91ac49d: chore: add clayprops export line

## 1.1.46

### Patch Changes

- 770a70d: feat: add modal component
- 770a70d: feat: add useCheckboxGroup hook
- 770a70d: chore: add export clay props
- Updated dependencies [770a70d]
  - @imwebme/clay-hooks@0.0.5

## 1.1.45

### Patch Changes

- 9b0860b: feat: add modal component
- 9b0860b: feat: add useCheckboxGroup hook
- Updated dependencies [9b0860b]
  - @imwebme/clay-hooks@0.0.4

## 1.1.44

### Patch Changes

- 390dc3b: feat: Flex can have ref

  Flex도 ref를 받을 수 있게 변경했습니다.
  또한 Flex.Center 를 FlexCenter로 Flex.Column 을 Stack 으로 변경했습니다.

## 1.1.43

### Patch Changes

- Updated dependencies [22f9ecb]
  - @imwebme/clay-token@1.0.7

## 1.1.42

### Patch Changes

- 38bd11b: DS-188: Badge 컴포넌트를 추가하고 layer color token 을 추가합니다.
- ce065c9: DS-186: Text component 를 추가합니다.
- Updated dependencies [38bd11b]
  - @imwebme/clay-token@1.0.6

## 1.1.41

### Patch Changes

- 8ca586b: hotfix: disabled 는 border가 없어요

## 1.1.40

### Patch Changes

- 90b5d85: hotfix: selectInput disabled state error

## 1.1.39

### Patch Changes

- ef6fbe1: fix: [DS-114] ContentBanner icon minWidth & alignSelf

## 1.1.38

### Patch Changes

- 1e7f885: fix: add exporting Portal component

## 1.1.37

### Patch Changes

- d44882c: hotfix: checkbox 사용성 개선

## 1.1.36

### Patch Changes

- ab294fd: release: optionItem css 개선, add button input reset css

## 1.1.35

### Patch Changes

- 848b300: hotfix: button HTMLprops 처리

## 1.1.34

### Patch Changes

- 4a50f49: hotfix: select multi select scroll css issue and gap

## 1.1.33

### Patch Changes

- 577c6e8: hotfix: button gap 수정, sx props 사용성 개선

## 1.1.32

### Patch Changes

- 175c5a7: hotfix: Button의 iconPosition comment 를 강화하고, Textfield readonly 를 개선합니다.

## 1.1.31

### Patch Changes

- 888e7a0: hotfix: OptionItem은 커스텀이 가능해야합니다.

## 1.1.30

### Patch Changes

- a964c25: feat: new component addded Select

## 1.1.29

### Patch Changes

- c563760: - checkbox는 선택되면 outline이 없어져야 합니다.
  - radio에게 background 색상을 추가합니다.
  - icon은 이제 colorToken으로 편하게 색상을 주입할 수 있습니다.
  - textfield 버그를 개선합니다.
- 93cb4de: - feat(component): [DS-122] OptionList 컴포넌트를 추가합니다.
  - li의 list-style을 초기화합니다.

## 1.1.28

### Patch Changes

- 6c6c49f: hotfix: build error fix for icon version update

## 1.1.27

### Patch Changes

- 515e30a: update/hotfix:

  - textfield
    prefix 일경우 addon의 minWidth를 20px로 하고, wrapper 요소에 gap을 추가합니다.

  - textarea
    characterCount 일 경우, paddingBottom 이 다릅니다.

  - switch
    hover, disabled 상태에 따른 색상 변경이 추가되었습니다.
    SwitchBase 컴포넌트가 추가되었습니다. label 없이 활용할 수 있습니다.

  - button
    outline button의 outline을 border 로 수정합니다.
    사라진 onClick 핸들러를 추가합니다.

  - theme, token
    borderSlate 를 추가합니다.

- Updated dependencies [515e30a]
  - @imwebme/clay-token@1.0.5

## 1.1.26

### Patch Changes

- 7b78469: hotfix: Switch Component label props

## 1.1.25

### Patch Changes

- 1ece827: release(component): Switch 컴포넌트에게도 labelProps가 필요합니다.

## 1.1.24

### Patch Changes

- 9abaa8a: refactoring(component): Switch component 사용성 개선

## 1.1.23

### Patch Changes

- d7da926: refactoring(components): RadioGroup union string type

## 1.1.22

### Patch Changes

- 479121e: hotfix(components/theme) radio component 사용성 개선, clay-theme 재배포

## 1.1.21

### Patch Changes

- 489633e: chore: Button fullWidth 가 아니면, fit하게 처리하기

## 1.1.20

### Patch Changes

- 9242cc3: hotfix: DS-157 textarea maxLength fix

## 1.1.19

### Patch Changes

- 8944258: hotfix(components/checkbox): checkbox는 action이 가능해야 한다.

## 1.1.18

### Patch Changes

- e1c5ae6: release: textfield export 빼먹은 이슈

## 1.1.17

### Patch Changes

- 6738ddb: hotfix: Switch 컴포넌트는 오른쪽이 활성화된 버전이었다.

## 1.1.16

### Patch Changes

- 97e9be3: hotfix: add baseProps to tooltip content

## 1.1.15

### Patch Changes

- a04f516: hotfix: remove onHover, popOver to action, add labelProps to Textarea

## 1.1.14

### Patch Changes

- 464e627: hotfix: Clay 컴포넌트 onClick, onHover

## 1.1.13

### Patch Changes

- 1e74776: - Textfield (input) 을 추가합니다.
  - PageBanner type을 개선합니다.
- b46a4ad: refactoring: base props restProps 를 HTMLProps 로 명시적인 전달로 변경합니다.
- 75969e6: add(components): DS-127/radio

## 1.1.12

### Patch Changes

- 3552e54: - wip/hotfix: DS-127/radio
  - fix: typography body-medium-bold fontSize
  - fix: typography label-xsmall fontWeight normal -> medium
- Updated dependencies [3552e54]
  - @imwebme/clay-token@1.0.4

## 1.1.11

### Patch Changes

- 408d564: hotfix: textarea border issue with characterCount

## 1.1.10

### Patch Changes

- f765b44: chore: add src folder to stylesheet
- 1c98a0c: Hotfix/textarea

  Add textarea default outline
  fix textarea height option with "default"

## 1.1.9

### Patch Changes

- 3b10a4a: add(components) DS-101/checkbox

## 1.1.8

### Patch Changes

- 6001385: label 컴포넌트 추가
  icon은 ref를 가질 수 있습니다.
- Updated dependencies [8749d5d]
  - @imwebme/clay-token@1.0.3

## 1.1.7

### Patch Changes

- 8d16dde: [DS-124] Tooltip component 추가
  Flex Component 개선
  Box -> Clay

## 1.1.6

### Patch Changes

- 3469e4c: feat(components, clayground): [DS-123] Portal component 를 추가하고, forwardRef 컴포넌트에 disPlayName 을 추가합니다.

## 1.1.5

### Patch Changes

- Updated dependencies [74ce943]
  - @imwebme/clay-token@1.0.2

## 1.1.4

### Patch Changes

- 5a87f14: chore: release test

## 1.1.3

### Patch Changes

- 0ebf958: Components/label
- Updated dependencies [0ebf958]
  - @imwebme/clay-token@1.0.1
