@availity/mui-chip 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,25 @@
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-chip@1.0.0...@availity/mui-chip@1.0.1) (2025-03-07)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-avatar` updated to version `1.0.0`
10
+ ## [1.0.0](https://github.com/Availity/element/compare/@availity/mui-chip@1.0.0-alpha.0...@availity/mui-chip@1.0.0) (2025-02-25)
11
+
12
+ ### Dependency Updates
13
+
14
+ * `mui-avatar` updated to version `0.3.0`
15
+
16
+ ### ⚠ BREAKING CHANGES
17
+
18
+ * upgrade to @mui/material v6
19
+
20
+ ### Miscellaneous Chores
21
+
22
+ * element v1 release ([a6e3567](https://github.com/Availity/element/commit/a6e35671185b9f13d25c7a39c4488ecb8774633e))
23
+
5
24
  ## [1.0.0-alpha.0](https://github.com/Availity/element/compare/@availity/mui-chip@0.3.0...@availity/mui-chip@1.0.0-alpha.0) (2025-02-24)
6
25
 
7
26
 
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/Chip/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-chip",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.1",
4
4
  "description": "Availity MUI Chip Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,7 +40,7 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-avatar": "^1.0.0-alpha.0",
43
+ "@availity/mui-avatar": "^1.0.1",
44
44
  "@mui/material": "^6.4.5",
45
45
  "react": "18.2.0",
46
46
  "react-dom": "18.2.0",
@@ -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
  }