-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: 모든 커스텀 훅에 대해여 setter return토록 변경 * refactor: useCheckbox, useRadio initValue 타입 완화 * feat: useCheckbox 선택된 값들만 return 하는 프로퍼티 추가 * refactor: useRadio 선택된 값의 이름을 return 하는 프로퍼티 추가 * refactor: selected return 값 보장을 위한 타입 강제 변경 및 변수 네이밍 수정 * refactor: checkbox, radio Container 타입 커스텀 훅에 맞게 변경 * refactor: user-select: none 옵션 제거 (사용자가 텍스트를 드래그할 수 있도록 변경합니다.) * chore: 테스트 공간 key 오류 해결 * feat: 스켈레톤 컴포넌트 추가 * feat: 스피너 컴포넌트 추가 * refactor: Skeleton import theme 경로 수정 * storybook: Skeleton Storybook 추가 * storybook: Spinner 스토리북 추가 * feat: Alert 컴포넌트 및 스토리북 추가 * feat: Confirm 컴포넌트 및 스토리북 추가 * refactor: useCheckbox, useRadio 관련 컴포넌트 및 훅 타입 강제 변경 내부로직상 id와 name 프로퍼티 모두 필요하므로 해당 프로퍼티들을 강제하되 다른 프로퍼티가 올 수 있도록 열어둔다. * fix: Alert 및 Confirm Storybook import 오류 수정 * refactor: Alert, Confirm 컴포넌트 불필요한 theme import 제거 * feat: Checkbox 컴포넌트 추가 CheckboxContainer의 item 역할을 하는 컴포넌트입니다. * feat: Radio 컴포넌트 추가 RadioContainer의 Item 역할을 하는 컴포넌트입니다. * chore: MIT License 추가 * storybook: Checkbox 스토리북 추가 * refactor: Radio 컴포넌트 gap 기본값 위치 수정 * storybook: Radio 컴포넌트 스토리북 추가 * test: Alert 컴포넌트 스토리북 상호작용 테스트 추가 * test: Confirm 컴포넌트 스토리북 상호작용 테스트 * refactor: Spinner 컴포넌트 추후 테스트를 위한 attributes 받도록 변경 * storybook: ImageView 에러 케이스 추가 * chore: 추가한 컴포넌트 export 목록에 추가 및 테스트 환경 App 업데이트 * refactor: Radio 및 Checkbox 불필요한 타입 제거 * refactor: useCheckbox selectedCheckboxId로 네이밍 수정 (객체 반환이므로) * feat: Input 컴포넌트 및 스토리북 추가 * feat: Textarea 컴포넌트 및 스토리북 추가 * chore: Input, Textarea 컴포넌트 export * docs: Readme 업데이트 * chore: 0.5.0 버전 업데이트 * storybook: 누락된 ImageView ratio 설명 추가 * refactor: useRadio, useCheckbox selectedValue에 대해서 useMemo 적용 * chore: 5.0.1 버전 배포
- Loading branch information
1 parent
88d62cb
commit 9d10c85
Showing
33 changed files
with
2,161 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 ConceptBe | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.