@availity/mui-autocomplete 0.9.10 → 0.10.0

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,24 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.10.0](https://github.com/Availity/element/compare/@availity/mui-autocomplete@0.9.11...@availity/mui-autocomplete@0.10.0) (2025-02-04)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-form-utils` updated to version `0.9.11`
10
+ * `mui-textfield` updated to version `0.9.11`
11
+
12
+ ### Features
13
+
14
+ * configure package.json to allow esm to be used ([5a5393d](https://github.com/Availity/element/commit/5a5393de761f52608e714dd94a05106937dd95db))
15
+
16
+ ## [0.9.11](https://github.com/Availity/element/compare/@availity/mui-autocomplete@0.9.10...@availity/mui-autocomplete@0.9.11) (2025-01-28)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **mui-autocomplete:** add aria-label to LoadingIndicator ([79f47b4](https://github.com/Availity/element/commit/79f47b466b7a6838430cf20b101b937e9b810d3c))
22
+
5
23
  ## [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
24
 
7
25
  ### 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-autocomplete",
3
- "version": "0.9.10",
3
+ "version": "0.10.0",
4
4
  "description": "Availity MUI Autocomplete Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -23,6 +23,14 @@
23
23
  "main": "./dist/index.js",
24
24
  "module": "./dist/index.mjs",
25
25
  "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ "./package.json": "./package.json",
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.mjs",
31
+ "require": "./dist/index.js"
32
+ }
33
+ },
26
34
  "scripts": {
27
35
  "build": "tsup src/index.ts --format esm,cjs --dts",
28
36
  "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
@@ -37,8 +45,8 @@
37
45
  },
38
46
  "devDependencies": {
39
47
  "@availity/api-axios": "^9.0.6",
40
- "@availity/mui-form-utils": "^0.16.5",
41
- "@availity/mui-textfield": "^0.6.19",
48
+ "@availity/mui-form-utils": "^0.17.0",
49
+ "@availity/mui-textfield": "^0.7.0",
42
50
  "@mui/material": "^5.15.15",
43
51
  "@tanstack/react-query": "^4.36.1",
44
52
  "react": "18.2.0",
@@ -48,8 +56,8 @@
48
56
  },
49
57
  "peerDependencies": {
50
58
  "@availity/api-axios": "^8.0.7",
51
- "@availity/mui-form-utils": "^0.16.5",
52
- "@availity/mui-textfield": "^0.6.19",
59
+ "@availity/mui-form-utils": "^0.17.0",
60
+ "@availity/mui-textfield": "^0.7.0",
53
61
  "@mui/material": "^5.11.9",
54
62
  "@tanstack/react-query": "^4.36.1",
55
63
  "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,