@availity/mui-autocomplete 2.0.0 → 2.0.1
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 +8 -0
- package/introduction.mdx +1 -2
- package/package.json +6 -6
- package/src/lib/AsyncAutocomplete.stories.tsx +1 -1
- package/src/lib/Autocomplete.stories.tsx +1 -1
- package/src/lib/CodesAutocomplete.stories.tsx +1 -1
- package/src/lib/OrganizationAutocomplete.stories.tsx +1 -1
- package/src/lib/ProviderAutocomplete.stories.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-autocomplete@2.0.0...@availity/mui-autocomplete@2.0.1) (2025-12-03)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-form-utils` updated to version `2.0.0`
|
|
10
|
+
* `mui-textfield` updated to version `2.0.0`
|
|
11
|
+
* `mui-icon` updated to version `2.0.0`
|
|
12
|
+
* `mui-layout` updated to version `2.0.0`
|
|
5
13
|
## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-autocomplete@1.2.7...@availity/mui-autocomplete@2.0.0) (2025-11-17)
|
|
6
14
|
|
|
7
15
|
### Dependency Updates
|
package/introduction.mdx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-autocomplete",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Availity MUI Autocomplete Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@availity/api-axios": "^11.0.0",
|
|
49
|
-
"@availity/mui-form-utils": "^2.0.
|
|
50
|
-
"@availity/mui-icon": "^2.0.
|
|
51
|
-
"@availity/mui-textfield": "^2.0.
|
|
49
|
+
"@availity/mui-form-utils": "^2.0.1",
|
|
50
|
+
"@availity/mui-icon": "^2.0.1",
|
|
51
|
+
"@availity/mui-textfield": "^2.0.1",
|
|
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": "^8.0.7",
|
|
61
|
-
"@availity/mui-form-utils": "^2.0.
|
|
62
|
-
"@availity/mui-textfield": "^2.0.
|
|
61
|
+
"@availity/mui-form-utils": "^2.0.1",
|
|
62
|
+
"@availity/mui-textfield": "^2.0.1",
|
|
63
63
|
"@mui/material": "^7.0.0",
|
|
64
64
|
"@tanstack/react-query": "^4.36.1",
|
|
65
65
|
"react": ">=17.0.0"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
3
|
import AvApi, { ApiConfig } from '@availity/api-axios';
|
|
4
4
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
5
5
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
2
|
import { useState } from 'react';
|
|
3
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
4
4
|
import { Autocomplete, createFilterOptions } from './Autocomplete';
|
|
5
5
|
import { FilterOptionsState } from '@mui/material';
|
|
6
6
|
import { InputAdornment, SearchByFormGroup } from '@availity/mui-form-utils';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
3
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
4
4
|
|
|
5
5
|
import { CodesAutocomplete } from './CodesAutocomplete';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
3
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
4
4
|
|
|
5
5
|
import { OrganizationAutocomplete } from './OrganizationAutocomplete';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
3
3
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
4
4
|
|
|
5
5
|
import { ProviderAutocomplete } from './ProviderAutocomplete';
|