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