-
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.
* feat: TET-169 Badge docs component * Merge branch 'development' into feat/TET-132/storybook-docs * feat: TET-170 add Button helper functions * feat: TET-170 add all configuration of buttons to docs * feat: TET-170 finish styling Button docs * feat: TET-171 add ChcekboxDocs and create Section * fix: TET-170 fix styling in ButtonDocs * fix: TET-169 fix BadgeDocs styling bug * fix: TET-168 fix AvatarDocs styling bug * feat: TET-170 CheckboxDocs ready * feat: TET-171 add States to CheckboxDocs * feat: TET-303 add header to each component, create files for each component Docs * feat: TET-319 create CheckboxGroupDocs * feat: TET-320 add HelperTextDocs * feat: TET-321 add StatusDotDocs * fix: NO-JIRA remove emphases object from BadgeProps * fix: NO-JIRA add key to a maping * fix: NO-JIRA add key to States component * feat: TET-303: add empty SocialButtonDocs * fix: NO-JIRA: remove docs link from SocialButton * fix: NO-JIRA fix lint error * chore: NO-JIRA refactor ButtonDocs component
- Loading branch information
1 parent
b156ade
commit 4582c7d
Showing
65 changed files
with
1,077 additions
and
321 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
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,16 +1,19 @@ | ||
export type BadgeAppearance = | ||
| 'blue' | ||
| 'green' | ||
| 'grey' | ||
| 'red' | ||
| 'orange' | ||
| 'raspberry' | ||
| 'magenta' | ||
| 'purple' | ||
| 'grape' | ||
| 'violet' | ||
| 'cyan' | ||
| 'teal' | ||
| 'aquamarine' | ||
| 'emerald' | ||
| 'outline'; | ||
export const badgeAppearances = [ | ||
'blue', | ||
'green', | ||
'grey', | ||
'red', | ||
'orange', | ||
'raspberry', | ||
'magenta', | ||
'purple', | ||
'grape', | ||
'violet', | ||
'cyan', | ||
'teal', | ||
'aquamarine', | ||
'emerald', | ||
'outline', | ||
] as const; | ||
|
||
export type BadgeAppearance = (typeof badgeAppearances)[number]; |
Oops, something went wrong.