@availity/mui-dialog 0.1.1 → 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 +7 -0
- package/package.json +1 -1
- package/src/lib/Dialog.stories.tsx +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
|
|
5
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)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -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"
|
|
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>
|