@availity/mui-event-tracker 1.0.15 → 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 +31 -0
  2. package/package.json +14 -13
package/CHANGELOG.md CHANGED
@@ -2,6 +2,37 @@
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-event-tracker@1.0.16...@availity/mui-event-tracker@2.0.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-button` updated to version `1.0.16`
10
+ * `mui-form-utils` updated to version `1.0.16`
11
+ * `mui-layout` updated to version `1.0.16`
12
+ * `mui-menu` updated to version `1.0.16`
13
+ * `mui-textfield` updated to version `1.0.16`
14
+ * `mui-typography` updated to version `1.0.16`
15
+
16
+ ### ⚠ BREAKING CHANGES
17
+
18
+ * @mui/material upgraded to v7
19
+ * @mui/x-* upgraded to v8
20
+ * react upgraded to v19
21
+
22
+ ### Features
23
+
24
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
25
+
26
+ ## [1.0.16](https://github.com/Availity/element/compare/@availity/mui-event-tracker@1.0.15...@availity/mui-event-tracker@1.0.16) (2025-10-30)
27
+
28
+ ### Dependency Updates
29
+
30
+ * `mui-button` updated to version `1.0.15`
31
+ * `mui-form-utils` updated to version `1.0.15`
32
+ * `mui-layout` updated to version `1.0.15`
33
+ * `mui-menu` updated to version `1.0.15`
34
+ * `mui-textfield` updated to version `1.0.15`
35
+ * `mui-typography` updated to version `1.0.15`
5
36
  ## [1.0.15](https://github.com/Availity/element/compare/@availity/mui-event-tracker@1.0.14...@availity/mui-event-tracker@1.0.15) (2025-05-29)
6
37
 
7
38
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-event-tracker",
3
- "version": "1.0.15",
3
+ "version": "2.0.0",
4
4
  "description": "Availity MUI EventTracker Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,26 +40,27 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-button": "^1.1.4",
44
- "@availity/mui-form-utils": "^1.3.2",
45
- "@availity/mui-layout": "^1.0.2",
46
- "@availity/mui-menu": "^1.0.6",
47
- "@availity/mui-textfield": "^1.3.1",
48
- "@availity/mui-typography": "^1.0.2",
49
- "@mui/material": "^6.4.5",
50
- "react": "18.2.0",
51
- "react-dom": "18.2.0",
43
+ "@availity/mui-button": "^2.0.0",
44
+ "@availity/mui-form-utils": "^2.0.0",
45
+ "@availity/mui-layout": "^2.0.0",
46
+ "@availity/mui-menu": "^2.0.0",
47
+ "@availity/mui-textfield": "^2.0.0",
48
+ "@availity/mui-typography": "^2.0.0",
49
+ "@mui/material": "^7.3.4",
50
+ "react": "19.2.0",
51
+ "react-dom": "19.2.0",
52
52
  "tsup": "^8.4.0",
53
53
  "typescript": "^5.4.5"
54
54
  },
55
55
  "peerDependencies": {
56
- "@mui/material": "^6.4.5",
57
- "react": ">=16.3.0"
56
+ "@mui/material": "^7.0.0",
57
+ "react": ">=17.0.0"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
62
  "dependencies": {
63
63
  "@availity/analytics-core": "^6.0.0"
64
- }
64
+ },
65
+ "sideEffects": false
65
66
  }