💄 Refined the paginator#135
Open
ckersey2 wants to merge 4 commits into
Open
Conversation
ckersey2
commented
Jul 20, 2024
Contributor
Author
ckersey2
left a comment
There was a problem hiding this comment.
Just a small tweek.
If we are on the first page of the data, the "Previous" button is not shown. If we are on the last page of the data, the "Next" button is not shown. I've updated the following tests: - easy-paginator.spec.ts - paginator.spec.ts All tests pass.
Clearing linting issues
james-gre
added a commit
to ExodusForks/slack-block-builder
that referenced
this pull request
Jan 27, 2026
…rius#135) - Hide Previous button on first page - Hide Next button on last page - Updated tests to reflect new behavior Implements upstream PR raycharius#135 by @ckersey2
This was referenced Jan 27, 2026
james-gre
added a commit
to ExodusForks/slack-block-builder
that referenced
this pull request
Jan 27, 2026
* chore: bump version to 2.9.4 * feat(paginator): hide prev/next buttons at page boundaries (PR raycharius#135) - Hide Previous button on first page - Hide Next button on last page - Updated tests to reflect new behavior Implements upstream PR raycharius#135 by @ckersey2 * feat(timepicker): add timezone support (Issue raycharius#137) - Add Timezone method mixin - Add timezone prop constant - Add timezone to TimePickerBuilder interface - Add timezone to TimePickerParams Implements upstream Issue raycharius#137 by @melchii * chore: bump version to 2.10.0
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
💄 Refined the paginator
Updated the pagination actions buttons
If we are on the first page of the data, the "Previous" button is not shown.
If we are on the last page of the data, the "Next" button is not shown.