@availity/mui-textfield 0.5.13 → 0.5.15
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 +17 -0
- package/package.json +3 -3
- package/src/lib/TextField.stories.tsx +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.5.15](https://github.com/Availity/element/compare/@availity/mui-textfield@0.5.14...@availity/mui-textfield@0.5.15) (2024-04-04)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-form-utils` updated to version `0.10.1`
|
|
10
|
+
* `mui-icon` updated to version `0.8.1`
|
|
11
|
+
* `mui-button` updated to version `0.6.5`
|
|
12
|
+
|
|
13
|
+
### Performance Improvements
|
|
14
|
+
|
|
15
|
+
* **mui-textfield:** use path imports for material deps ([7b3bd82](https://github.com/Availity/element/commit/7b3bd82bf703cc7f6cc422bfa085980a42229207))
|
|
16
|
+
|
|
17
|
+
## [0.5.14](https://github.com/Availity/element/compare/@availity/mui-textfield@0.5.13...@availity/mui-textfield@0.5.14) (2024-03-22)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
* `mui-form-utils` updated to version `0.10.0`
|
|
5
22
|
## [0.5.13](https://github.com/Availity/element/compare/@availity/mui-textfield@0.5.12...@availity/mui-textfield@0.5.13) (2024-03-15)
|
|
6
23
|
|
|
7
24
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-textfield",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.15",
|
|
4
4
|
"description": "Availity MUI Textfield Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@availity/mui-form-utils": "0.
|
|
36
|
-
"@availity/mui-icon": "0.8.
|
|
35
|
+
"@availity/mui-form-utils": "0.10.1",
|
|
36
|
+
"@availity/mui-icon": "0.8.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@mui/material": "^5.14.12",
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
2
|
import { useState } from 'react';
|
|
3
3
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
4
|
-
import
|
|
4
|
+
import Box from '@mui/material/Box';
|
|
5
|
+
import Chip from '@mui/material/Chip';
|
|
6
|
+
import InputAdornment from '@mui/material/InputAdornment';
|
|
7
|
+
import MenuItem from '@mui/material/MenuItem';
|
|
8
|
+
import { SelectChangeEvent } from '@mui/material/Select';
|
|
9
|
+
import Stack from '@mui/material/Stack';
|
|
5
10
|
import { EyeIcon, EyeSlashIcon, SearchIcon } from '@availity/mui-icon';
|
|
6
11
|
import { IconButton } from '@availity/mui-button';
|
|
7
12
|
|