@availity/mui-avatar 0.1.2 → 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,13 @@
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-avatar@0.1.2...@availity/mui-avatar@0.1.3) (2023-08-16)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **mui-avatar:** add alt text to the ImageAvater story for 508 compliance ([29c024c](https://github.com/Availity/element/commit/29c024c80b45e0951a748464ca695aee6ca92e0c))
11
+
5
12
  ## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-avatar@0.1.1...@availity/mui-avatar@0.1.2) (2023-07-13)
6
13
 
7
14
  ## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-avatar@0.1.0...@availity/mui-avatar@0.1.1) (2023-06-26)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-avatar",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Availity MUI Avatar Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -48,6 +48,6 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@availity/design-tokens": "^0.4.6"
51
+ "@availity/design-tokens": "^0.4.9"
52
52
  }
53
53
  }
@@ -29,6 +29,7 @@ export const _ImageAvatar: StoryObj<typeof Avatar> = {
29
29
  render: (args: AvatarProps) => <Avatar {...args} />,
30
30
  args: {
31
31
  src: 'https://avatars.githubusercontent.com/u/329985?s=100',
32
+ alt: 'Orange circle with interlocking AV logo',
32
33
  },
33
34
  };
34
35