@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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-pagination@0.1.0...@availity/mui-pagination@0.1.1) (2023-09-11)
6
+
5
7
  ## 0.1.0 (2023-09-11)
6
8
 
7
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-pagination",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Availity MUI Pagination Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -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