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
Show file tree
Hide file tree
Changes from 3 commits
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## 2.3.0 in progress

[[STTYPES-13](https://folio-org.atlassian.net/browse/STTYPES-13)] Add actual types for `acq-components`, `components`, `core` and `smart-components`.
* [[STTYPES-13](https://folio-org.atlassian.net/browse/STTYPES-13)] Add actual types for `acq-components`, `components`, `core` and `smart-components`.
* [[STTYPES-16](https://folio-org.atlassian.net/browse/STTYPES-16)] Add `pagingOffset` prop to `<MultiColumnList>` paging props.

## [2.2.0](https://github.com/folio-org/stripes-types/tree/v2.2.0) (2024-10-11)

Expand Down
2 changes: 2 additions & 0 deletions components/lib/MultiColumnList/MultiColumnList.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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

View workflow job for this annotation

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';
Expand Down
Loading