@availity/mui-autocomplete 0.9.9 → 0.9.11

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.9.11](https://github.com/Availity/element/compare/@availity/mui-autocomplete@0.9.10...@availity/mui-autocomplete@0.9.11) (2025-01-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **mui-autocomplete:** add aria-label to LoadingIndicator ([79f47b4](https://github.com/Availity/element/commit/79f47b466b7a6838430cf20b101b937e9b810d3c))
11
+
12
+ ## [0.9.10](https://github.com/Availity/element/compare/@availity/mui-autocomplete@0.9.9...@availity/mui-autocomplete@0.9.10) (2025-01-27)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `mui-form-utils` updated to version `0.9.9`
17
+ * `mui-textfield` updated to version `0.9.9`
5
18
  ## [0.9.9](https://github.com/Availity/element/compare/@availity/mui-autocomplete@0.9.8...@availity/mui-autocomplete@0.9.9) (2025-01-23)
6
19
 
7
20
 
package/dist/index.js CHANGED
@@ -102,7 +102,7 @@ var PopupIndicatorWrapper = (0, import_react.forwardRef)((props, ref) => /* @__P
102
102
  /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_IconButton.default, __spreadProps(__spreadValues({}, props), { ref }))
103
103
  ] }));
104
104
  var progressSx = { marginRight: ".5rem" };
105
- var LoadingIndicator = () => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_CircularProgress.default, { size: 20, sx: progressSx });
105
+ var LoadingIndicator = () => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_CircularProgress.default, { "aria-label": "Loading", size: 20, sx: progressSx });
106
106
  var Autocomplete = (_a) => {
107
107
  var _b = _a, {
108
108
  FieldProps
package/dist/index.mjs CHANGED
@@ -66,7 +66,7 @@ var PopupIndicatorWrapper = forwardRef((props, ref) => /* @__PURE__ */ jsxs(Frag
66
66
  /* @__PURE__ */ jsx(MuiIconButton, __spreadProps(__spreadValues({}, props), { ref }))
67
67
  ] }));
68
68
  var progressSx = { marginRight: ".5rem" };
69
- var LoadingIndicator = () => /* @__PURE__ */ jsx(CircularProgress, { size: 20, sx: progressSx });
69
+ var LoadingIndicator = () => /* @__PURE__ */ jsx(CircularProgress, { "aria-label": "Loading", size: 20, sx: progressSx });
70
70
  var Autocomplete = (_a) => {
71
71
  var _b = _a, {
72
72
  FieldProps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-autocomplete",
3
- "version": "0.9.9",
3
+ "version": "0.9.11",
4
4
  "description": "Availity MUI Autocomplete Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -37,8 +37,8 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@availity/api-axios": "^9.0.6",
40
- "@availity/mui-form-utils": "^0.16.4",
41
- "@availity/mui-textfield": "^0.6.18",
40
+ "@availity/mui-form-utils": "^0.16.5",
41
+ "@availity/mui-textfield": "^0.6.19",
42
42
  "@mui/material": "^5.15.15",
43
43
  "@tanstack/react-query": "^4.36.1",
44
44
  "react": "18.2.0",
@@ -48,8 +48,8 @@
48
48
  },
49
49
  "peerDependencies": {
50
50
  "@availity/api-axios": "^8.0.7",
51
- "@availity/mui-form-utils": "^0.16.4",
52
- "@availity/mui-textfield": "^0.6.18",
51
+ "@availity/mui-form-utils": "^0.16.5",
52
+ "@availity/mui-textfield": "^0.6.19",
53
53
  "@mui/material": "^5.11.9",
54
54
  "@tanstack/react-query": "^4.36.1",
55
55
  "react": ">=16.3.0"
@@ -55,7 +55,7 @@ const PopupIndicatorWrapper = forwardRef<HTMLButtonElement, MuiIconButtonProps>(
55
55
 
56
56
  const progressSx = { marginRight: '.5rem' };
57
57
 
58
- const LoadingIndicator = () => <CircularProgress size={20} sx={progressSx} />;
58
+ const LoadingIndicator = () => <CircularProgress aria-label="Loading" size={20} sx={progressSx} />;
59
59
 
60
60
  export const Autocomplete = <
61
61
  T,