Skip to content

Commit

Permalink
feat(ui): add pagination component
Browse files Browse the repository at this point in the history
  • Loading branch information
xiejay97 committed Dec 22, 2021
1 parent 59982fe commit 3741be4
Show file tree
Hide file tree
Showing 21 changed files with 822 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v2
Expand All @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v2
Expand All @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: nrwl/nx-set-shas@v2
- uses: actions/setup-node@v2
Expand Down
3 changes: 3 additions & 0 deletions packages/ui/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ export { DInput, DInputAffix } from './input';
export type { DMenuProps, DMenuGroupProps, DMenuItemProps, DMenuSubProps } from './menu';
export { DMenu, DMenuGroup, DMenuItem, DMenuSub } from './menu';

export type { DPaginationProps } from './pagination';
export { DPagination } from './pagination';

export type { DRadioProps, DRadioGroupProps } from './radio';
export { DRadio, DRadioGroup } from './radio';

Expand Down
Loading

0 comments on commit 3741be4

Please sign in to comment.