@availity/mui-link 1.1.1 → 2.0.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-link@1.1.2...@availity/mui-link@2.0.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.1.2`
10
+
11
+ ### ⚠ BREAKING CHANGES
12
+
13
+ * @mui/material upgraded to v7
14
+ * @mui/x-* upgraded to v8
15
+ * react upgraded to v19
16
+
17
+ ### Features
18
+
19
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
20
+
21
+ ## [1.1.2](https://github.com/Availity/element/compare/@availity/mui-link@1.1.1...@availity/mui-link@1.1.2) (2025-10-30)
22
+
23
+ ### Dependency Updates
24
+
25
+ * `mui-icon` updated to version `1.1.1`
5
26
  ## [1.1.1](https://github.com/Availity/element/compare/@availity/mui-link@1.1.0...@availity/mui-link@1.1.1) (2025-04-30)
6
27
 
7
28
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-link",
3
- "version": "1.1.1",
3
+ "version": "2.0.0",
4
4
  "description": "Availity MUI Link Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,20 +40,21 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@mui/material": "^6.4.5",
44
- "react": "18.2.0",
45
- "react-dom": "18.2.0",
43
+ "@mui/material": "^7.3.4",
44
+ "react": "19.2.0",
45
+ "react-dom": "19.2.0",
46
46
  "tsup": "^8.4.0",
47
47
  "typescript": "^5.4.5"
48
48
  },
49
49
  "peerDependencies": {
50
- "@mui/material": "^6.4.5",
51
- "react": ">=16.3.0"
50
+ "@mui/material": "^7.0.0",
51
+ "react": ">=17.0.0"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
56
  "dependencies": {
57
- "@availity/mui-icon": "^1.1.0"
58
- }
57
+ "@availity/mui-icon": "^2.0.0"
58
+ },
59
+ "sideEffects": false
59
60
  }