File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 1
1
import { $ , component$ , PropFunction , Component } from '@builder.io/qwik' ;
2
2
import { Button as HeadlessButton } from '@qwik-ui/primitives' ;
3
3
4
+ /**
5
+ * PAGINATION TODOs
6
+ * - Get storybook testing to work
7
+ *
8
+ * PROPS
9
+ * pageIndex: default pagination value
10
+ * activeStyles: The styles of the active page button
11
+ * normalStyles: The styles of the inactive page buttons
12
+ * disabled: enable/disable paginator
13
+ * color: primary | secondary
14
+ * variant: outlined (show border without bg)
15
+ * shape: rounded | square
16
+ * size: 'sm' | 'md' | 'lg'
17
+ * customArrowIcons: { previous, next }
18
+ * paginationRange (see https://mui.com/material-ui/react-pagination/#pagination-ranges)
19
+ *
20
+ * EVENTS
21
+ * onPageChange
22
+ *
23
+ */
4
24
export interface IPaginationProps extends IGetPaginationItemsOptions {
5
25
pages : number ;
6
26
page : number ;
You can’t perform that action at this time.
0 commit comments