@availity/mui-autocomplete 2.2.6 → 2.2.7

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,12 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.2.7](https://github.com/Availity/element/compare/@availity/mui-autocomplete@2.2.6...@availity/mui-autocomplete@2.2.7) (2026-05-27)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-form-utils` updated to version `2.2.6`
10
+ * `mui-textfield` updated to version `2.2.6`
5
11
  ## [2.2.6](https://github.com/Availity/element/compare/@availity/mui-autocomplete@2.2.5...@availity/mui-autocomplete@2.2.6) (2026-03-16)
6
12
 
7
13
 
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  This package extends the MUI Autocomplete component: [MUI Autocomplete Docs](https://mui.com/components/autocomplete/)
12
12
 
13
- Live demo and documentation in our [Storybook](https://availity.github.io/element/?path=/docs/form-components-autocomplete-introduction--docs)
13
+ Live demo and documentation in our [Storybook](https://availity.github.io/element/?path=/docs/form-components-uncontrolled-fields-autocomplete-readme--docs)
14
14
 
15
15
  Availity standards for design and usage can be found in the [Availity Design Guide](https://design.availity.com/2e36e50c7)
16
16
 
package/introduction.mdx CHANGED
@@ -2,7 +2,7 @@ import { Markdown, Meta } from '@storybook/addon-docs/blocks';
2
2
  import ReadMe from './README.md?raw';
3
3
  import CHANGELOG from './CHANGELOG.md?raw';
4
4
 
5
- <Meta title="Form Components/Autocomplete/Introduction" />
5
+ <Meta title="Form Components/Uncontrolled Fields/Autocomplete/README" />
6
6
 
7
7
  <Markdown>{ReadMe}</Markdown>
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-autocomplete",
3
- "version": "2.2.6",
3
+ "version": "2.2.7",
4
4
  "description": "Availity MUI Autocomplete Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -8,7 +8,7 @@
8
8
  "availity",
9
9
  "mui"
10
10
  ],
11
- "homepage": "https://availity.github.io/element/?path=/docs/form-components-autocomplete-introduction--docs",
11
+ "homepage": "https://availity.github.io/element/?path=/docs/form-components-uncontrolled-fields-autocomplete-readme--docs",
12
12
  "bugs": {
13
13
  "url": "https://github.com/Availity/element/issues"
14
14
  },
@@ -45,10 +45,10 @@
45
45
  "qs": "^6.15.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@availity/api-axios": "^12.0.4",
49
- "@availity/mui-form-utils": "^2.0.5",
48
+ "@availity/api-axios": "^12.2.1",
49
+ "@availity/mui-form-utils": "^2.0.6",
50
50
  "@availity/mui-icon": "^2.1.0",
51
- "@availity/mui-textfield": "^2.0.5",
51
+ "@availity/mui-textfield": "^2.0.6",
52
52
  "@mui/material": "^7.3.4",
53
53
  "@tanstack/react-query": "^4.36.1",
54
54
  "react": "19.2.0",
@@ -58,8 +58,8 @@
58
58
  },
59
59
  "peerDependencies": {
60
60
  "@availity/api-axios": "^12.0.0",
61
- "@availity/mui-form-utils": "^2.0.5",
62
- "@availity/mui-textfield": "^2.0.5",
61
+ "@availity/mui-form-utils": "^2.0.6",
62
+ "@availity/mui-textfield": "^2.0.6",
63
63
  "@mui/material": "^7.0.0",
64
64
  "@tanstack/react-query": "^4.36.1",
65
65
  "react": ">=17.0.0"
@@ -6,7 +6,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
6
6
  import { AsyncAutocomplete } from './AsyncAutocomplete';
7
7
 
8
8
  const meta: Meta<typeof AsyncAutocomplete> = {
9
- title: 'Form Components/Autocomplete/AsyncAutocomplete',
9
+ title: 'Form Components/Uncontrolled Fields/AsyncAutocomplete',
10
10
  component: AsyncAutocomplete,
11
11
  tags: ['autodocs'],
12
12
  args: {
@@ -31,7 +31,7 @@ const languages = [
31
31
  ];
32
32
 
33
33
  const meta: Meta<typeof Autocomplete> = {
34
- title: 'Form Components/Autocomplete/Autocomplete',
34
+ title: 'Form Components/Uncontrolled Fields/Autocomplete',
35
35
  component: Autocomplete,
36
36
  tags: ['autodocs'],
37
37
  args: {
@@ -72,7 +72,7 @@ export const _Multi: StoryObj<typeof Autocomplete> = {
72
72
  };
73
73
 
74
74
  /** Notice the new `read-only` styling. We're moving away from `disabled` in favor of `read-only`.
75
- * _See the [Disabled Fields Explainer](./?path=/docs/bs4-migration-form-migration--disabled-fields) for more information on when to use each._
75
+ * _See the [Disabled Fields Explainer](./?path=/docs/upgrading/bs4-migration-form-migration--disabled-fields) for more information on when to use each._
76
76
  */
77
77
  export const _States: StoryObj<typeof Autocomplete> = {
78
78
  render: (args) => (
@@ -196,7 +196,7 @@ export const _Grouped: StoryObj<typeof Autocomplete> = {
196
196
  },
197
197
  };
198
198
 
199
- /** Wrap the fields in a `SearchByFormGroup` from the [@availity/mui-form-utils](./?path=/docs/form-components-formutils-introduction--docs) package for our combined search by styles.
199
+ /** Wrap the fields in a `SearchByFormGroup` from the [@availity/mui-form-utils](./?path=/docs/form-components-uncontrolled-formutils-readme--docs) package for our combined search by styles.
200
200
  *
201
201
  * The "Search By" field id must be passed as the FormGroup supplies the label.
202
202
  */
@@ -5,7 +5,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
5
5
  import { CodesAutocomplete } from './CodesAutocomplete';
6
6
 
7
7
  const meta: Meta<typeof CodesAutocomplete> = {
8
- title: 'Form Components/Autocomplete/CodesAutocomplete',
8
+ title: 'Form Components/Uncontrolled Fields/CodesAutocomplete',
9
9
  component: CodesAutocomplete,
10
10
  tags: ['autodocs'],
11
11
  args: {
@@ -5,7 +5,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
5
5
  import { OrganizationAutocomplete } from './OrganizationAutocomplete';
6
6
 
7
7
  const meta: Meta<typeof OrganizationAutocomplete> = {
8
- title: 'Form Components/Autocomplete/OrganizationAutocomplete',
8
+ title: 'Form Components/Uncontrolled Fields/OrganizationAutocomplete',
9
9
  component: OrganizationAutocomplete,
10
10
  tags: ['autodocs'],
11
11
  args: {
@@ -5,7 +5,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
5
5
  import { ProviderAutocomplete } from './ProviderAutocomplete';
6
6
 
7
7
  const meta: Meta<typeof ProviderAutocomplete> = {
8
- title: 'Form Components/Autocomplete/ProviderAutocomplete',
8
+ title: 'Form Components/Uncontrolled Fields/ProviderAutocomplete',
9
9
  component: ProviderAutocomplete,
10
10
  tags: ['autodocs'],
11
11
  args: {