-
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.
Features - Increase CSS class rename from 6 to 8 letters - Add games section - Add APICount component - Add game methods to service - Add game explorer and details pages - Add width to icon and Align to center on InfoBox component - Add Description component - Add SubTitle component - Add Section components and Validation before showing links - Add SimpleIcon component - Add flexibility to Alert component - Add (fixed) height to PaginationItem Changes - Update dependencies - Update VerticalCard style - Replace import type from Card components - Replace import type from Link components - Replace import type from Title components - Replace h1 tag with Title Component - Rename SimpleTitle to Title Fixes - Application crashing when handling null reference *Bump version to 1.2.0* *Upgrade to yarn 4.X*
- Loading branch information
Showing
71 changed files
with
3,903 additions
and
2,463 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
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 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,11 +1,4 @@ | ||
import HorizontalCard from './HorizontalCard'; | ||
import PersonCard from './PersonCard'; | ||
import SimpleCard from './SimpleCard'; | ||
import VerticalCard from './VerticalCard'; | ||
|
||
export const Card = { | ||
Simple: SimpleCard, | ||
Horizontal: HorizontalCard, | ||
Vertical: VerticalCard, | ||
Person: PersonCard, | ||
}; | ||
export * from './HorizontalCard'; | ||
export * from './PersonCard'; | ||
export * from './SimpleCard'; | ||
export * from './VerticalCard'; |
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 @@ | ||
.description { | ||
width: 100%; | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} |
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,22 @@ | ||
import type { Property } from 'csstype'; | ||
import styles from './Description.module.css'; | ||
|
||
interface Props { | ||
value?: string; | ||
children?: string; | ||
textAlign?: Property.TextAlign; | ||
fontSize?: string; | ||
} | ||
|
||
export function Description({ | ||
value, | ||
children, | ||
textAlign = 'initial', | ||
fontSize = '1em', | ||
}: Props) { | ||
return ( | ||
<p className={styles.description} style={{ textAlign, fontSize }}> | ||
{value ?? children} | ||
</p> | ||
); | ||
} |
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,9 +1,3 @@ | ||
import { PrimaryLink } from './PrimaryLink'; | ||
import { SecondaryLink } from './SecondaryLink'; | ||
import SimpleLink from './SimpleLink'; | ||
|
||
export const Link = { | ||
Primary: PrimaryLink, | ||
Secondary: SecondaryLink, | ||
Simple: SimpleLink, | ||
}; | ||
export * from './PrimaryLink'; | ||
export * from './SecondaryLink'; | ||
export * from './SimpleLink'; |
Empty file.
Oops, something went wrong.