@availity/mui-breadcrumbs 1.0.6 → 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,29 @@
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-breadcrumbs@1.0.7...@availity/mui-breadcrumbs@2.0.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.7`
10
+ * `mui-link` updated to version `1.0.7`
11
+
12
+ ### ⚠ BREAKING CHANGES
13
+
14
+ * @mui/material upgraded to v7
15
+ * @mui/x-* upgraded to v8
16
+ * react upgraded to v19
17
+
18
+ ### Features
19
+
20
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
21
+
22
+ ## [1.0.7](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.6...@availity/mui-breadcrumbs@1.0.7) (2025-10-30)
23
+
24
+ ### Dependency Updates
25
+
26
+ * `mui-icon` updated to version `1.0.6`
27
+ * `mui-link` updated to version `1.0.6`
5
28
  ## [1.0.6](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.5...@availity/mui-breadcrumbs@1.0.6) (2025-08-21)
6
29
 
7
30
 
package/dist/index.d.mts CHANGED
@@ -34,6 +34,6 @@ interface BreadcrumbsProps extends Omit<BreadcrumbsProps$1, 'separator' | 'slotP
34
34
  /** Props passed to the Links */
35
35
  LinkProps?: Omit<LinkProps, 'href'>;
36
36
  }
37
- declare const Breadcrumbs: ({ active, children, crumbs, emptyState, homeUrl, LinkProps, ...rest }: BreadcrumbsProps) => JSX.Element;
37
+ declare const Breadcrumbs: ({ active, children, crumbs, emptyState, homeUrl, LinkProps, ...rest }: BreadcrumbsProps) => React.JSX.Element;
38
38
 
39
39
  export { Breadcrumbs, type BreadcrumbsProps };
package/dist/index.d.ts CHANGED
@@ -34,6 +34,6 @@ interface BreadcrumbsProps extends Omit<BreadcrumbsProps$1, 'separator' | 'slotP
34
34
  /** Props passed to the Links */
35
35
  LinkProps?: Omit<LinkProps, 'href'>;
36
36
  }
37
- declare const Breadcrumbs: ({ active, children, crumbs, emptyState, homeUrl, LinkProps, ...rest }: BreadcrumbsProps) => JSX.Element;
37
+ declare const Breadcrumbs: ({ active, children, crumbs, emptyState, homeUrl, LinkProps, ...rest }: BreadcrumbsProps) => React.JSX.Element;
38
38
 
39
39
  export { Breadcrumbs, type BreadcrumbsProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-breadcrumbs",
3
- "version": "1.0.6",
3
+ "version": "2.0.0",
4
4
  "description": "Availity MUI Breadcrumbs Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,21 +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.0",
58
- "@availity/mui-link": "^1.1.1"
59
- }
57
+ "@availity/mui-icon": "^2.0.0",
58
+ "@availity/mui-link": "^2.0.0"
59
+ },
60
+ "sideEffects": false
60
61
  }
@@ -55,7 +55,7 @@ export const Breadcrumbs = ({
55
55
  homeUrl = '/static/web/onb/onboarding-ui-apps/dashboard-ui/',
56
56
  LinkProps,
57
57
  ...rest
58
- }: BreadcrumbsProps): JSX.Element => {
58
+ }: BreadcrumbsProps): React.JSX.Element => {
59
59
  return (
60
60
  <MuiBreadcrumbs
61
61
  {...rest}