@availity/mui-autocomplete 0.9.11 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +13 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
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
+
5
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)
6
17
 
7
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-autocomplete",
3
- "version": "0.9.11",
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"