@availity/mui-dialog 0.1.1 → 0.1.3

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
+ ## [0.1.3](https://github.com/Availity/element/compare/@availity/mui-dialog@0.1.2...@availity/mui-dialog@0.1.3) (2024-02-20)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-button` updated to version `0.6.2`
10
+ * `mui-layout` updated to version `0.1.4`
11
+ ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-dialog@0.1.1...@availity/mui-dialog@0.1.2) (2024-02-20)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **mui-dialog:** fix accessibility issues in story ([af90247](https://github.com/Availity/element/commit/af902479cd831bd90d8b528ee2edbc5c20e81b46))
17
+
5
18
  ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-dialog@0.1.0...@availity/mui-dialog@0.1.1) (2024-02-16)
6
19
 
7
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-dialog",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Availity MUI Dialog Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -32,8 +32,8 @@
32
32
  "publish:canary": "yarn npm publish --access public --tag canary"
33
33
  },
34
34
  "devDependencies": {
35
- "@availity/mui-button": "0.6.1",
36
- "@availity/mui-layout": "0.1.3",
35
+ "@availity/mui-button": "0.6.2",
36
+ "@availity/mui-layout": "0.1.4",
37
37
  "@mui/material": "^5.11.9",
38
38
  "react": "18.2.0",
39
39
  "react-dom": "18.2.0",
@@ -36,8 +36,10 @@ export const _Dialog: StoryObj<typeof Dialog> = {
36
36
  return (
37
37
  <>
38
38
  <Button onClick={handleOpen}>Open Dialog</Button>
39
- <Dialog {...args} open={open} onClose={handleClose}>
40
- <DialogTitle id="alert-dialog-title">Availity Dialog</DialogTitle>
39
+ <Dialog {...args} open={open} onClose={handleClose} aria-labelledby="alert-dialog-title">
40
+ <DialogTitle id="alert-dialog-title" component="h1">
41
+ Availity Dialog
42
+ </DialogTitle>
41
43
  <DialogContent>
42
44
  <DialogContentText>{args.children}</DialogContentText>
43
45
  </DialogContent>
File without changes