@availity/mui-pagination 1.0.0-alpha.0 → 1.0.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,30 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.1](https://github.com/Availity/element/compare/@availity/mui-pagination@1.0.0...@availity/mui-pagination@1.0.1) (2025-03-07)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.0`
10
+ * `mui-layout` updated to version `1.0.0`
11
+ * `mui-list` updated to version `1.0.0`
12
+ ## [1.0.0](https://github.com/Availity/element/compare/@availity/mui-pagination@1.0.0-alpha.0...@availity/mui-pagination@1.0.0) (2025-02-25)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `mui-icon` updated to version `0.4.2`
17
+ * `mui-layout` updated to version `0.4.2`
18
+ * `mui-list` updated to version `0.4.2`
19
+ * `@availity/mock` updated to version `0.4.2`
20
+
21
+ ### ⚠ BREAKING CHANGES
22
+
23
+ * upgrade to @mui/material v6
24
+
25
+ ### Miscellaneous Chores
26
+
27
+ * element v1 release ([a6e3567](https://github.com/Availity/element/commit/a6e35671185b9f13d25c7a39c4488ecb8774633e))
28
+
5
29
  ## [1.0.0-alpha.0](https://github.com/Availity/element/compare/@availity/mui-pagination@0.4.2...@availity/mui-pagination@1.0.0-alpha.0) (2025-02-24)
6
30
 
7
31
 
package/introduction.mdx CHANGED
@@ -1,7 +1,10 @@
1
1
  import { Markdown } from '@storybook/blocks';
2
2
  import { Meta } from '@storybook/addon-docs';
3
3
  import ReadMe from './README.md?raw';
4
+ import CHANGELOG from './CHANGELOG.md?raw';
4
5
 
5
6
  <Meta title="Components/Pagination/Introduction" />
6
7
 
7
8
  <Markdown>{ReadMe}</Markdown>
9
+
10
+ <Markdown>{CHANGELOG}</Markdown>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-pagination",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.1",
4
4
  "description": "Availity MUI Pagination Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,7 +40,7 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-icon": "1.0.0-alpha.0",
43
+ "@availity/mui-icon": "1.0.1",
44
44
  "@mui/material": "^6.4.5",
45
45
  "@tanstack/react-query": "^4.36.1",
46
46
  "react": "18.2.0",
@@ -49,7 +49,7 @@
49
49
  "typescript": "^5.4.5"
50
50
  },
51
51
  "peerDependencies": {
52
- "@availity/mui-icon": "1.0.0-alpha.0",
52
+ "@availity/mui-icon": "1.0.1",
53
53
  "@mui/material": "^6.4.5",
54
54
  "@tanstack/react-query": "^4.36.1",
55
55
  "react": ">=16.3.0"
@@ -6,5 +6,5 @@
6
6
  "types": ["jest", "node", "@testing-library/jest-dom"],
7
7
  "allowJs": true
8
8
  },
9
- "include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
9
+ "include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
10
10
  }