-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
medium
size to DocThumbnail; tweak shared types (#388)
* Tweak HDS types * Updates `get-product-id` files * Add `medium` size to DocThumbnail * Remove number type * Update `productShortName` getter * Avatar.gts * Basic ProductAvatar implementation * Add `large` size to PersonAvatar * Refactor to class-based sizing * Fix visual bugs, rename SCSS file * Refactor Thumbnail interface * Switch `size` to getters * Remove unused getters * Fix merge conflict * Update thumbnail.ts * Remove unnecessary property * Refactor sizes * Use enum in folder-affordance * Revert css changes * Additional cleanup
- Loading branch information
Showing
8 changed files
with
43 additions
and
37 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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export enum HermesSize { | ||
Small = "small", | ||
Medium = "medium", | ||
Large = "large", | ||
XL = "xl", | ||
} |