@availity/mui-transitions 0.1.0 → 0.1.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 +7 -0
- package/package.json +1 -1
- package/src/lib/Collapse.stories.tsx +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-transitions@0.1.0...@availity/mui-transitions@0.1.1) (2024-04-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Performance Improvements
|
|
9
|
+
|
|
10
|
+
* **mui-transitions:** use path imports for material deps ([84f8510](https://github.com/Availity/element/commit/84f8510f8516cb200fb51816e6e6928f348d4f18))
|
|
11
|
+
|
|
5
12
|
## 0.1.0 (2024-02-22)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
import { useState } from 'react';
|
|
4
4
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
5
5
|
import { Collapse, CollapseProps } from './Collapse';
|
|
6
|
-
import Switch from '@mui/material/Switch
|
|
7
|
-
import FormControlLabel from '@mui/material/FormControlLabel
|
|
8
|
-
import Box from '@mui/material/Box
|
|
9
|
-
import Paper from '@mui/material/Paper
|
|
6
|
+
import Switch from '@mui/material/Switch';
|
|
7
|
+
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
8
|
+
import Box from '@mui/material/Box';
|
|
9
|
+
import Paper from '@mui/material/Paper';
|
|
10
10
|
import visuallyHidden from '@mui/utils/visuallyHidden';
|
|
11
|
-
import Table from '@mui/material/Table
|
|
12
|
-
import TableHead from '@mui/material/TableHead
|
|
13
|
-
import TableRow from '@mui/material/TableRow
|
|
14
|
-
import TableCell from '@mui/material/TableCell
|
|
15
|
-
import TableBody from '@mui/material/TableBody
|
|
16
|
-
import Alert from '@mui/material/Alert
|
|
11
|
+
import Table from '@mui/material/Table';
|
|
12
|
+
import TableHead from '@mui/material/TableHead';
|
|
13
|
+
import TableRow from '@mui/material/TableRow';
|
|
14
|
+
import TableCell from '@mui/material/TableCell';
|
|
15
|
+
import TableBody from '@mui/material/TableBody';
|
|
16
|
+
import Alert from '@mui/material/Alert';
|
|
17
17
|
|
|
18
18
|
/** Expand from the start edge of the child element. */
|
|
19
19
|
const meta: Meta<typeof Collapse> = {
|