@availity/mui-breadcrumbs 1.0.0-alpha.0 → 1.0.1

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,27 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.1](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.0...@availity/mui-breadcrumbs@1.0.1) (2025-03-07)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.0`
10
+ * `mui-link` updated to version `1.0.0`
11
+ ## [1.0.0](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@1.0.0-alpha.0...@availity/mui-breadcrumbs@1.0.0) (2025-02-25)
12
+
13
+ ### Dependency Updates
14
+
15
+ * `mui-icon` updated to version `0.4.0`
16
+ * `mui-link` updated to version `0.4.0`
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * upgrade to @mui/material v6
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ * element v1 release ([a6e3567](https://github.com/Availity/element/commit/a6e35671185b9f13d25c7a39c4488ecb8774633e))
25
+
5
26
  ## [1.0.0-alpha.0](https://github.com/Availity/element/compare/@availity/mui-breadcrumbs@0.4.0...@availity/mui-breadcrumbs@1.0.0-alpha.0) (2025-02-24)
6
27
 
7
28
 
package/introduction.mdx CHANGED
@@ -1,7 +1,10 @@
1
1
  import { Markdown } from '@storybook/blocks';
2
2
  import { Meta } from '@storybook/addon-docs';
3
3
  import ReadMe from './README.md?raw';
4
+ import CHANGELOG from './CHANGELOG.md?raw';
4
5
 
5
6
  <Meta title="Components/Breadcrumbs/Introduction" />
6
7
 
7
8
  <Markdown>{ReadMe}</Markdown>
9
+
10
+ <Markdown>{CHANGELOG}</Markdown>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-breadcrumbs",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.1",
4
4
  "description": "Availity MUI Breadcrumbs Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -54,7 +54,7 @@
54
54
  "access": "public"
55
55
  },
56
56
  "dependencies": {
57
- "@availity/mui-icon": "^1.0.0-alpha.0",
58
- "@availity/mui-link": "^1.0.0-alpha.0"
57
+ "@availity/mui-icon": "^1.0.1",
58
+ "@availity/mui-link": "^1.0.1"
59
59
  }
60
60
  }
@@ -6,5 +6,5 @@
6
6
  "types": ["jest", "node", "@testing-library/jest-dom"],
7
7
  "allowJs": true
8
8
  },
9
- "include": ["**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
9
+ "include": ["jest.config.ts", "**/*.test.js", "**/*.test.ts", "**/*.test.tsx", "**/*.d.ts"]
10
10
  }