@availity/mui-autocomplete 0.9.10 → 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 +7 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/lib/Autocomplete.tsx +1 -1
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.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
|
+
|
|
5
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)
|
|
6
13
|
|
|
7
14
|
### Dependency Updates
|
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
package/src/lib/Autocomplete.tsx
CHANGED
|
@@ -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,
|