-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tp): pagination for browse jobseekers page (#915)
* Install & configure TailwindCSS, wip * Fix tailwind styles not applying for TP platform * Setup shadcn/ui, wip * Setup shadcn/ui, wip * Setup shadcn/ui CLI * Fix TailwindCSS & shadcn/ui configuration * Add Paginate component and implement pagination, wip * Add new icons, update chevron icon in diff components, replace radix-ui icons in pagination.tsx * Implement pagination, wip * Fix pagination implementation * Fix console warnings * Fix displaying pagination * Fix pagination for favorited jobseeker profiles * Style pagination items * Fix location usage in LoggedIn.tsx for TP * Consolidate styles in global.scss in shared-atomic-design-components library to share across our apps; remove duplicated style files * Remove TailwindCSS testing code * Remove TailwindCSS testing code * Fix workspace.json and yarn.lock files * Fix yarn.lock file * Remove comments * Fix styling of the pagination component * Update the README.md file in libs/shared-shadcn-ui-components * Fixes according to the PR comments * Fix the component's name * Update README file following the PR comments * Rename the cn function to classNames, update README * Update README file * Refactor * Fix a typo
- Loading branch information
1 parent
100f570
commit d3dfac8
Showing
26 changed files
with
425 additions
and
88 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 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
3 changes: 3 additions & 0 deletions
3
libs/shared-atomic-design-components/src/assets/images/chevron-left.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
libs/shared-atomic-design-components/src/assets/images/chevron-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
libs/shared-atomic-design-components/src/assets/images/ellipsis-horizontal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -32,4 +32,8 @@ | |
&--active { | ||
cursor: pointer; | ||
} | ||
|
||
&--disabled path { | ||
fill: $grey-light; | ||
} | ||
} |
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
5 changes: 5 additions & 0 deletions
5
libs/shared-atomic-design-components/src/lib/molecules/Pagination.scss
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 @@ | ||
@import '../styles/_variables.scss'; | ||
|
||
.icon-hover:hover path { | ||
fill: $redi-orange-dark; | ||
} |
Oops, something went wrong.