@availity/mui-breadcrumbs 1.0.5 → 1.0.7

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,19 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.7](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.6...@availity/mui-breadcrumbs@1.0.7) (2025-10-30)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.6`
10
+ * `mui-link` updated to version `1.0.6`
11
+ ## [1.0.6](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.5...@availity/mui-breadcrumbs@1.0.6) (2025-08-21)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **mui-breadcrumbs:** default homeUrl to cloud dashboard ([b955baa](https://github.com/Availity/element/commit/b955baa32644b44dfa840439fb0df9be65c7067c))
17
+
5
18
  ## [1.0.5](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.4...@availity/mui-breadcrumbs@1.0.5) (2025-04-30)
6
19
 
7
20
  ### Dependency Updates
package/dist/index.js CHANGED
@@ -82,7 +82,7 @@ var Breadcrumbs = (_a) => {
82
82
  children,
83
83
  crumbs,
84
84
  emptyState = "...",
85
- homeUrl = "/public/apps/dashboard",
85
+ homeUrl = "/static/web/onb/onboarding-ui-apps/dashboard-ui/",
86
86
  LinkProps: LinkProps2
87
87
  } = _b, rest = __objRest(_b, [
88
88
  "active",
package/dist/index.mjs CHANGED
@@ -49,7 +49,7 @@ var Breadcrumbs = (_a) => {
49
49
  children,
50
50
  crumbs,
51
51
  emptyState = "...",
52
- homeUrl = "/public/apps/dashboard",
52
+ homeUrl = "/static/web/onb/onboarding-ui-apps/dashboard-ui/",
53
53
  LinkProps: LinkProps2
54
54
  } = _b, rest = __objRest(_b, [
55
55
  "active",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-breadcrumbs",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Availity MUI Breadcrumbs Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -54,7 +54,8 @@
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": "^1.1.1",
58
+ "@availity/mui-link": "^1.1.2"
59
+ },
60
+ "sideEffects": false
60
61
  }
@@ -21,7 +21,7 @@ describe('Breadcrumbs', () => {
21
21
 
22
22
  const homeBreadcrumb = breadcrumbs[0].getElementsByTagName('a')[0];
23
23
  expect(homeBreadcrumb).toHaveAttribute('aria-label', 'Home');
24
- expect(homeBreadcrumb).toHaveAttribute('href', '/public/apps/dashboard');
24
+ expect(homeBreadcrumb).toHaveAttribute('href', '/static/web/onb/onboarding-ui-apps/dashboard-ui/');
25
25
  expect(homeBreadcrumb).toHaveTextContent('Home');
26
26
 
27
27
  const grandparentBreadcrumb = breadcrumbs[1].getElementsByTagName('a')[0];
@@ -51,7 +51,7 @@ describe('Breadcrumbs', () => {
51
51
 
52
52
  const homeBreadcrumb = breadcrumbs[0].getElementsByTagName('a')[0];
53
53
  expect(homeBreadcrumb).toHaveAttribute('aria-label', 'Home');
54
- expect(homeBreadcrumb).toHaveAttribute('href', '/public/apps/dashboard');
54
+ expect(homeBreadcrumb).toHaveAttribute('href', '/static/web/onb/onboarding-ui-apps/dashboard-ui/');
55
55
  expect(homeBreadcrumb).toHaveTextContent('Home');
56
56
 
57
57
  const customBreadcrumb = breadcrumbs[1].getElementsByTagName('a')[0];
@@ -82,7 +82,7 @@ describe('Breadcrumbs', () => {
82
82
 
83
83
  const homeBreadcrumb = breadcrumbs[0].getElementsByTagName('a')[0];
84
84
  expect(homeBreadcrumb).toHaveAttribute('aria-label', 'Home');
85
- expect(homeBreadcrumb).toHaveAttribute('href', '/public/apps/dashboard');
85
+ expect(homeBreadcrumb).toHaveAttribute('href', '/static/web/onb/onboarding-ui-apps/dashboard-ui/');
86
86
  expect(homeBreadcrumb).toHaveTextContent('Home');
87
87
 
88
88
  const grandparentBreadcrumb = breadcrumbs[1].getElementsByTagName('a')[0];
@@ -52,7 +52,7 @@ export const Breadcrumbs = ({
52
52
  children,
53
53
  crumbs,
54
54
  emptyState = '...',
55
- homeUrl = '/public/apps/dashboard',
55
+ homeUrl = '/static/web/onb/onboarding-ui-apps/dashboard-ui/',
56
56
  LinkProps,
57
57
  ...rest
58
58
  }: BreadcrumbsProps): JSX.Element => {