- Welcome
- Getting started
- Latest updates
- Foundations
-
Components
- Accordion
- Alert
- Alignment
- Aria live
- Autosuggest
- Badge
- Banner alert
- Bar chart
- Blockquote
- Bottom navigation
- Bottom sheet
- Breadcrumb
- Breakpoint
- Button
- Calendar
- Card
- Card List
- Card button
- Carousel
- Checkbox
- Chip
- Chip group
- Code
- Content cards
- Data Table
- Datepicker
- Description list
- Dialog
- Divider
- Drawer
- Field Set
- Flare
- Flat list
- Flight leg
- Floating action button
- Floating notification
- Form label
- Form validation
- Graphic promotion
- Horizontal navigation
- Icon
- Image
- Infinite scroll
- Link
- List
- Map
- Mobile scroll container
- Modal
- Navigation bar
- Nudger
- Overlay
- Page indicator
- Pagination
- Panel
- Phone input
- Picker
- Popover
- Price
- Progress bar
- Radio button
- Rating
- Scrollable calendar
- Section header
- Section list
- Select
- Skeleton
- Skip link
- Slider
- Snackbar
- Snippet
- Spinner
- Split input
- Star rating
- Switch
- Table
- Text
- Text input
- Theming
- Ticket
- Toast
- Tooltip
- Touchable native feedback
- Touchable overlay
- Content
- Accessibility
Pagination
The pagination component is used to indicate a series of related content exists across multiple views/pages.
Default
This is the default pagination.
Visible range
Customize the range of pages to be displayed in the middle. e.g. visibleRange={5}.
bpk-component-pagination
Backpack pagination component.
Installation
Check the main Readme for a complete installation guide.
Usage
import BpkPagination from '@skyscanner/backpack-web/bpk-component-pagination';
const Pagination = () => (
<BpkPagination
pageCount={20}
selectedPageIndex={0}
onPageChange={pageIndex => alert(`page ${pageIndex + 1}`)}
previousLabel="previous"
nextLabel="next"
visibleRange={3}
pageLabel={(page, isSelected) => `page ${page}`}
/>
);
Props
Property | PropType | Required | Default Value |
---|---|---|---|
pageCount | number | true | - |
selectedPageIndex | number | true | - |
previousLabel | string | true | - |
nextLabel | string | true | - |
paginationLabel | string | true | - |
pageLabel | func | true | - |
onPageChange | func | false | null |
visibleRange | number | false | 3 |
className | string | false | null |
Theme Props
- buttonSecondaryTextColor
- buttonSecondaryHoverTextColor
- buttonSecondaryActiveTextColor
- buttonSecondaryBorderColor
- buttonSecondaryHoverBorderColor
- buttonSecondaryActiveBorderColor
- buttonSecondaryBackgroundColor
- buttonSecondaryHoverBackgroundColor
- buttonSecondaryActiveBackgroundColor
- paginationNudgerActiveColor
- paginationNudgerColor
- paginationNudgerHoverColor
- paginationSelectedBackgroundColor
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Nov 2, 2022, 12:33