@availity/mui-avatar 1.0.4 → 1.0.5

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,11 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.5](https://github.com/Availity/element/compare/@availity/mui-avatar@1.0.4...@availity/mui-avatar@1.0.5) (2025-10-30)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `1.0.4`
5
10
  ## [1.0.4](https://github.com/Availity/element/compare/@availity/mui-avatar@1.0.3...@availity/mui-avatar@1.0.4) (2025-05-29)
6
11
 
7
12
  ## [1.0.3](https://github.com/Availity/element/compare/@availity/mui-avatar@1.0.2...@availity/mui-avatar@1.0.3) (2025-04-30)
package/dist/index.js CHANGED
@@ -112,7 +112,7 @@ var Avatar = (_a) => {
112
112
  var _b = _a, { children, size = "xl", src, sx } = _b, rest = __objRest(_b, ["children", "size", "src", "sx"]);
113
113
  const [avatar, setAvatar] = import_react.default.useState();
114
114
  (0, import_react.useEffect)(() => {
115
- const fetchAvatar = () => __async(void 0, null, function* () {
115
+ const fetchAvatar = () => __async(null, null, function* () {
116
116
  if (src) {
117
117
  setAvatar(src);
118
118
  } else {
package/dist/index.mjs CHANGED
@@ -79,7 +79,7 @@ var Avatar = (_a) => {
79
79
  var _b = _a, { children, size = "xl", src, sx } = _b, rest = __objRest(_b, ["children", "size", "src", "sx"]);
80
80
  const [avatar, setAvatar] = React.useState();
81
81
  useEffect(() => {
82
- const fetchAvatar = () => __async(void 0, null, function* () {
82
+ const fetchAvatar = () => __async(null, null, function* () {
83
83
  if (src) {
84
84
  setAvatar(src);
85
85
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-avatar",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Availity MUI Avatar Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,7 +40,7 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-icon": "^1.1.0",
43
+ "@availity/mui-icon": "^1.1.1",
44
44
  "@mui/material": "^6.4.5",
45
45
  "react": "18.2.0",
46
46
  "react-dom": "18.2.0",
@@ -48,7 +48,7 @@
48
48
  "typescript": "^5.4.5"
49
49
  },
50
50
  "peerDependencies": {
51
- "@availity/mui-icon": "^1.1.0",
51
+ "@availity/mui-icon": "^1.1.1",
52
52
  "@mui/material": "^6.4.5",
53
53
  "react": ">=16.3.0"
54
54
  },
@@ -57,5 +57,6 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@availity/api-axios": "^11.0.0"
60
- }
60
+ },
61
+ "sideEffects": false
61
62
  }