@availity/mui-transitions 0.2.5 → 0.3.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 +15 -0
- package/package.json +3 -2
- package/src/lib/Collapse.stories.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.3.1](https://github.com/Availity/element/compare/@availity/mui-transitions@0.3.0...@availity/mui-transitions@0.3.1) (2024-12-09)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-alert` updated to version `0.3.0`
|
|
10
|
+
## [0.3.0](https://github.com/Availity/element/compare/@availity/mui-transitions@0.2.5...@availity/mui-transitions@0.3.0) (2024-11-20)
|
|
11
|
+
|
|
12
|
+
### Dependency Updates
|
|
13
|
+
|
|
14
|
+
* `mui-utils` updated to version `0.2.5`
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **mui-utils:** swap to element utils package ([6025a97](https://github.com/Availity/element/commit/6025a97905473a7db9e01cc47c9653febf221592))
|
|
19
|
+
|
|
5
20
|
## [0.2.5](https://github.com/Availity/element/compare/@availity/mui-transitions@0.2.4...@availity/mui-transitions@0.2.5) (2024-10-31)
|
|
6
21
|
|
|
7
22
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-transitions",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Availity MUI Transitions Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,8 +32,9 @@
|
|
|
32
32
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@availity/mui-alert": "^0.
|
|
35
|
+
"@availity/mui-alert": "^0.7.0",
|
|
36
36
|
"@availity/mui-typography": "^0.2.1",
|
|
37
|
+
"@availity/mui-utils": "0.1.0",
|
|
37
38
|
"@mui/material": "^5.15.15",
|
|
38
39
|
"react": "18.2.0",
|
|
39
40
|
"react-dom": "18.2.0",
|
|
@@ -7,13 +7,13 @@ import Switch from '@mui/material/Switch';
|
|
|
7
7
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
8
8
|
import Box from '@mui/material/Box';
|
|
9
9
|
import Paper from '@mui/material/Paper';
|
|
10
|
-
import visuallyHidden from '@mui/utils/visuallyHidden';
|
|
11
10
|
import Table from '@mui/material/Table';
|
|
12
11
|
import TableHead from '@mui/material/TableHead';
|
|
13
12
|
import TableRow from '@mui/material/TableRow';
|
|
14
13
|
import TableCell from '@mui/material/TableCell';
|
|
15
14
|
import TableBody from '@mui/material/TableBody';
|
|
16
15
|
import { Alert } from '@availity/mui-alert';
|
|
16
|
+
import { visuallyHidden } from '@availity/mui-utils';
|
|
17
17
|
|
|
18
18
|
/** Expand from the start edge of the child element. */
|
|
19
19
|
const meta: Meta<typeof Collapse> = {
|