-
Notifications
You must be signed in to change notification settings - Fork 1
Feature/#7 공통 컴포넌트 구현 #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
3ebc9f6
feat: Button 컴포넌트에 restProps 추가
leeleeleeleejun 389eedf
feat: Chip 컴포넌트에서 type을 chipType으로 변경
leeleeleeleejun 674eda4
feat: SearchBar 컴포넌트에 aria-label 추가
leeleeleeleejun f3ada25
feat: Button 컴포넌트에서 restProps rest 연산자 사용
leeleeleeleejun 6d6ba78
fix: Tailwind 설정 로딩을 위한 CSS import 순서 수정
leeleeleeleejun cbe5dfd
feat: Textarea 컴포넌트에 useId 훅 추가 및 name 속성 설정
leeleeleeleejun ff5cc77
fix: IconMap에서 kakkoLogo의 이름을 kakaoLogo로 수정
leeleeleeleejun fe20a82
fix: Chip.stories.tsx에서 type 속성을 chipType으로 변경
leeleeleeleejun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| /* Component-level styles for the UI package */ | ||
| @config "../tailwind.config.ts"; | ||
| @import "tailwindcss" prefix(ui); | ||
| @import "@repo/tailwind-config"; | ||
| @config "../tailwind.config.ts"; | ||
| @import "@repo/tailwind-config"; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
prop 사용처 업데이트가 완료되었습니다.
destructuring과 내부 사용처에서
type을chipType으로 일관되게 변경했습니다.Chip.stories.tsx 파일에서 이 변경사항을 반영했는지 확인해보겠습니다.
Also applies to: 70-70
🏁 Script executed:
Length of output: 299
ripgrep의
--type=tsx설정이 인식되지 않아 검색이 실패했습니다. glob 패턴으로.tsx/.ts파일을 직접 지정해 다시 확인해보겠습니다.🏁 Script executed:
Length of output: 1472
Chip.stories.tsx에서
type→chipType프로퍼티 명 변경 필요스토리 파일에 아직
type=사용 예시가 남아 있어, 새로 도입된chipType=으로 수정해야 합니다.• packages/ui/src/components/Chip/Chip.stories.tsx
– 줄 17:
<Chip type='SOLO_FRIENDLY' />– 줄 18:
<Chip type='GOOD_AMBIENCE' />– 줄 19:
<Chip type='VALUE_FOR_MONEY' />– 줄 20:
<Chip type='KIND_SERVICE' />🤖 Prompt for AI Agents