-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from yourssu/develop
v1.0.0
- Loading branch information
Showing
125 changed files
with
686 additions
and
121 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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,13 @@ | ||
# ISSUE ✅ : | ||
|
||
## 📖 Summary | ||
|
||
버그를 간단히 요약해주세요. | ||
|
||
## Error Script | ||
|
||
에러 내용 전체를 첨부해주세요. | ||
|
||
## Photo | ||
|
||
버그 재현 스크린샷을 첨부해주세요. |
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,5 @@ | ||
# ISSUE ✅ : | ||
|
||
## 📖 Summary | ||
|
||
이슈를 간단히 요약해주세요. |
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 |
---|---|---|
|
@@ -25,5 +25,5 @@ dist-ssr | |
.yarn | ||
storybook-static | ||
package.tgz | ||
icons | ||
iconsAsset | ||
.storybook |
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
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
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { SemanticBGColor } from '@/style'; | ||
|
||
export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement> { | ||
/** 배경 색상 */ | ||
color?: SemanticBGColor; | ||
/** Badge 안에 들어갈 텍스트 */ | ||
children?: React.ReactNode; | ||
/** 텍스트 왼쪽에 들어갈 아이콘 */ | ||
leftIcon?: React.ReactNode; | ||
} |
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
export type CheckBoxSize = 'small' | 'medium' | 'large'; | ||
|
||
export interface CheckBoxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> { | ||
/** CheckBox의 크기를 결정하는 속성 */ | ||
size?: CheckBoxSize; | ||
/** CheckBox의 선택 여부를 결정하는 속성 */ | ||
isSelected?: HTMLInputElement['checked']; | ||
/** CheckBox의 비활성화 여부를 결정하는 속성 */ | ||
isDisabled?: HTMLInputElement['disabled']; | ||
/** CheckBox의 내용 */ | ||
children?: React.ReactNode; | ||
} |
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
export interface ListItemProps extends React.HTMLAttributes<HTMLLIElement> { | ||
/** ListItem의 선택 여부를 나타내는 속성 */ | ||
isPressed?: boolean; | ||
/** ListItem의 width */ | ||
width?: string | number; | ||
/** ListItem의 내용 */ | ||
children?: React.ReactNode; | ||
/** ListItem의 왼쪽에 들어갈 아이콘 */ | ||
leftIcon?: React.ReactNode; | ||
/** ListItem의 오른쪽에 들어갈 아이콘 */ | ||
rightIcon?: React.ReactNode; | ||
} |
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
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
export type PlainButtonSize = 'small' | 'medium' | 'large'; | ||
|
||
export interface PlainButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> { | ||
/** PlainButton의 크기를 결정하는 속성 */ | ||
size: PlainButtonSize; | ||
/** PlainButton의 Pointed 여부를 결정하는 속성 */ | ||
isPointed: boolean; | ||
/** PlainButton의 경고 여부를 결정하는 속성 */ | ||
isWarned: boolean; | ||
/** PlainButton의 왼쪽에 들어갈 아이콘 */ | ||
leftIcon?: React.ReactNode; | ||
/** PlainButton의 내용 */ | ||
children?: React.ReactNode; | ||
/** PlainButton의 오른쪽에 들어갈 아이콘 */ | ||
rightIcon?: React.ReactNode; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.