@availity/mui-pagination 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/lib/Pagination.stories.tsx +4 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -33,13 +33,13 @@ export const _Variants: StoryObj<typeof Pagination> = {
|
|
|
33
33
|
Text
|
|
34
34
|
</Grid>
|
|
35
35
|
<Grid item xs={10}>
|
|
36
|
-
<Pagination variant="text" count={10} />
|
|
36
|
+
<Pagination variant="text" count={10} aria-label="text pagination" />
|
|
37
37
|
</Grid>
|
|
38
38
|
<Grid item xs={2}>
|
|
39
39
|
Outlined
|
|
40
40
|
</Grid>
|
|
41
41
|
<Grid item xs={10}>
|
|
42
|
-
<Pagination variant="outlined" count={10} />
|
|
42
|
+
<Pagination variant="outlined" count={10} aria-label="outlined pagination" />
|
|
43
43
|
</Grid>
|
|
44
44
|
</Grid>
|
|
45
45
|
),
|
|
@@ -54,6 +54,7 @@ export const _FirstLast: StoryObj<typeof Pagination> = {
|
|
|
54
54
|
<Grid item xs={10}>
|
|
55
55
|
<Pagination
|
|
56
56
|
variant="text"
|
|
57
|
+
aria-label="text pagination"
|
|
57
58
|
count={10}
|
|
58
59
|
boundaryCount={0}
|
|
59
60
|
hideNextButton
|
|
@@ -68,6 +69,7 @@ export const _FirstLast: StoryObj<typeof Pagination> = {
|
|
|
68
69
|
<Grid item xs={10}>
|
|
69
70
|
<Pagination
|
|
70
71
|
variant="outlined"
|
|
72
|
+
aria-label="outlined pagination"
|
|
71
73
|
count={10}
|
|
72
74
|
boundaryCount={0}
|
|
73
75
|
hideNextButton
|