@availity/mui-accordion 0.1.1 → 0.1.2
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,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.2](https://github.com/Availity/element/compare/@availity/mui-accordion@0.1.1...@availity/mui-accordion@0.1.2) (2024-04-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Performance Improvements
|
|
9
|
+
|
|
10
|
+
* **mui-accordion:** move elemend deps to peerDeps and avoid mui deps in stories ([6190f8c](https://github.com/Availity/element/commit/6190f8c99260ae0179dc6bd226823926b3c0e695))
|
|
11
|
+
|
|
5
12
|
## [0.1.1](https://github.com/Availity/element/compare/@availity/mui-accordion@0.1.0...@availity/mui-accordion@0.1.1) (2024-03-27)
|
|
6
13
|
|
|
7
14
|
## 0.1.0 (2024-03-15)
|
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ yarn add @availity/element
|
|
|
34
34
|
|
|
35
35
|
#### NPM
|
|
36
36
|
|
|
37
|
-
_This package has a few peer dependencies. Add `@mui/material
|
|
37
|
+
_This package has a few peer dependencies. Add `@mui/material`, `@emotion/react`, & `@availity/mui-icon` to your project if not already installed._
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
40
|
npm install @availity/mui-accordion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-accordion",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Availity MUI Accordion Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"publish": "yarn npm publish --tolerate-republish --access public",
|
|
32
32
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
33
|
},
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"@availity/mui-icon": "0.8.0"
|
|
36
|
-
},
|
|
37
34
|
"devDependencies": {
|
|
35
|
+
"@availity/mui-button": "^0.6.4",
|
|
36
|
+
"@availity/mui-layout": "^0.1.4",
|
|
37
|
+
"@availity/mui-typography": "^0.1.6",
|
|
38
38
|
"@mui/material": "^5.11.9",
|
|
39
39
|
"react": "18.2.0",
|
|
40
40
|
"react-dom": "18.2.0",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"typescript": "^4.6.4"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
+
"@availity/mui-icon": "^0.8.0",
|
|
45
46
|
"@mui/material": "^5.11.9",
|
|
46
47
|
"react": ">=16.3.0"
|
|
47
48
|
},
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
4
4
|
import { Accordion, AccordionActions, AccordionDetails, AccordionSummary, AccordionProps } from '..';
|
|
5
|
-
import Grid from '@mui
|
|
6
|
-
import Button from '@mui
|
|
7
|
-
import { Typography } from '@mui
|
|
5
|
+
import { Grid } from '@availity/mui-layout';
|
|
6
|
+
import { Button } from '@availity/mui-button';
|
|
7
|
+
import { Typography } from '@availity/mui-typography';
|
|
8
8
|
|
|
9
9
|
const meta: Meta<typeof Accordion> = {
|
|
10
10
|
title: 'Components/Accordion/Accordion',
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
4
4
|
import { AccordionActions, AccordionActionsProps } from '..';
|
|
5
|
-
import Button from '@mui
|
|
5
|
+
import { Button } from '@availity/mui-button';
|
|
6
6
|
|
|
7
7
|
const meta: Meta<typeof AccordionActions> = {
|
|
8
8
|
title: 'Components/Accordion/AccordionActions',
|