@availity/mui-progress 1.0.4 → 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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
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-progress@1.0.4...@availity/mui-progress@2.0.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.4`
10
+ * `mui-typography` updated to version `1.0.4`
11
+ * `mui-layout` updated to version `1.0.4`
12
+
13
+ ### ⚠ BREAKING CHANGES
14
+
15
+ * @mui/material upgraded to v7
16
+ * @mui/x-* upgraded to v8
17
+ * react upgraded to v19
18
+
19
+ ### Features
20
+
21
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
22
+
5
23
  ## [1.0.4](https://github.com/Availity/element/compare/@availity/mui-progress@1.0.3...@availity/mui-progress@1.0.4) (2025-10-30)
6
24
 
7
25
  ### Dependency Updates
package/dist/index.d.mts CHANGED
@@ -26,7 +26,7 @@ type StatusIconProps = {
26
26
  status: string;
27
27
  size: 'default' | 'small';
28
28
  };
29
- declare const CircularProgress: ({ loadingCaption, error, success, size, ...props }: CircularProgressProps) => JSX.Element;
29
+ declare const CircularProgress: ({ loadingCaption, error, success, size, ...props }: CircularProgressProps) => React.JSX.Element;
30
30
 
31
31
  type LinearProgressProps = Omit<LinearProgressProps$1, 'color'> & {
32
32
  hidePercentage?: boolean;
package/dist/index.d.ts CHANGED
@@ -26,7 +26,7 @@ type StatusIconProps = {
26
26
  status: string;
27
27
  size: 'default' | 'small';
28
28
  };
29
- declare const CircularProgress: ({ loadingCaption, error, success, size, ...props }: CircularProgressProps) => JSX.Element;
29
+ declare const CircularProgress: ({ loadingCaption, error, success, size, ...props }: CircularProgressProps) => React.JSX.Element;
30
30
 
31
31
  type LinearProgressProps = Omit<LinearProgressProps$1, 'color'> & {
32
32
  hidePercentage?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-progress",
3
- "version": "1.0.4",
3
+ "version": "2.0.0",
4
4
  "description": "Availity MUI Progress Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,22 +40,22 @@
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.1",
58
- "@availity/mui-typography": "^1.0.3"
57
+ "@availity/mui-icon": "^2.0.0",
58
+ "@availity/mui-typography": "^2.0.0"
59
59
  },
60
60
  "sideEffects": false
61
61
  }
@@ -60,7 +60,7 @@ export const CircularProgress = ({
60
60
  success = false,
61
61
  size = 'default',
62
62
  ...props
63
- }: CircularProgressProps): JSX.Element => {
63
+ }: CircularProgressProps): React.JSX.Element => {
64
64
  const [status, setStatus] = useState('loading');
65
65
 
66
66
  useEffect(() => {