Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STTYPES-16 Add the pagingOffset prop to MCL prev-next paging props. #75

Merged
merged 5 commits into from
Dec 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add the pagingOffset prop to MCL prev-next paging props.
Add the `pagingOffset` prop to MCL prev-next paging props.
JohnC-80 authored Dec 19, 2024
commit fe76399bf834c2bcd4355a6672c5871129ef3619
2 changes: 2 additions & 0 deletions components/lib/MultiColumnList/MultiColumnList.d.ts
Original file line number Diff line number Diff line change
@@ -154,6 +154,8 @@
pagingCanGoNext?: boolean;
pagingCanGoPrevious?: boolean;
hidePageIndices?: boolean;
/** optional prop for manually controlling the page numbers indicated on the prev/next controls **/

Check failure on line 157 in components/lib/MultiColumnList/MultiColumnList.d.ts

GitHub Actions / ui / Install and lint / Install and lint

Expected space or tab before '*/' in comment
JohnC-80 marked this conversation as resolved.
Show resolved Hide resolved
pagingOffset? : number;
}
| {
pagingType?: 'click' | 'scroll';