@availity/mui-dialog 0.1.0 → 0.1.2

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,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-dialog@0.1.1...@availity/mui-dialog@0.1.2) (2024-02-20)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **mui-dialog:** fix accessibility issues in story ([af90247](https://github.com/Availity/element/commit/af902479cd831bd90d8b528ee2edbc5c20e81b46))
11
+
12
+ ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-dialog@0.1.0...@availity/mui-dialog@0.1.1) (2024-02-16)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **mui-dialog:** pass props to Dialog ([5aded05](https://github.com/Availity/element/commit/5aded0581cd7b25e759e3e1f92e79521d95b9e28))
18
+
5
19
  ## 0.1.0 (2024-02-08)
6
20
 
7
21
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-dialog",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Availity MUI Dialog Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -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 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>