@availity/mui-spaces 0.3.6 → 0.3.7-alpha.0
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 +2 -0
- package/README.md +24 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.3.7-alpha.0](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.6...@availity/mui-spaces@0.3.7-alpha.0) (2024-07-31)
|
|
6
|
+
|
|
5
7
|
## [0.3.6](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.5...@availity/mui-spaces@0.3.6) (2024-07-29)
|
|
6
8
|
|
|
7
9
|
### Dependency Updates
|
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.
|
|
37
|
+
_This package has a few peer dependencies. See the [Peer Dependencies](#peer-dependencies) section for more information._
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
40
|
npm install @availity/mui-spaces
|
|
@@ -46,6 +46,29 @@ npm install @availity/mui-spaces
|
|
|
46
46
|
yarn add @availity/mui-spaces
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
#### Peer Dependencies
|
|
50
|
+
|
|
51
|
+
Ensure the following dependencies are installed in your project.
|
|
52
|
+
|
|
53
|
+
- `@availity/mui-button`
|
|
54
|
+
- `@availity/mui-card`
|
|
55
|
+
- `@availity/mui-chip`
|
|
56
|
+
- `@availity/mui-dialog`
|
|
57
|
+
- `@availity/mui-disclaimer`
|
|
58
|
+
- `@availity/mui-favorites`
|
|
59
|
+
- `@availity/mui-icon`
|
|
60
|
+
- `@availity/mui-layout`
|
|
61
|
+
- `@availity/mui-list`
|
|
62
|
+
- `@availity/mui-modal`
|
|
63
|
+
- `@availity/mui-progress`
|
|
64
|
+
- `@availity/mui-typography`
|
|
65
|
+
- `@mui/material`
|
|
66
|
+
- `react`
|
|
67
|
+
|
|
68
|
+
##### Optional Peer Dependencies
|
|
69
|
+
|
|
70
|
+
There are a few specific components that require `react-markdown` to be installed in your project. If you are using any of the SpacesLink, SpacesAgreement, or SpacesDisclaimer components or the useLink hook, `react-markdown` is a required dependency.
|
|
71
|
+
|
|
49
72
|
### Usage
|
|
50
73
|
|
|
51
74
|
#### Import through @availity/element
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-spaces",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7-alpha.0",
|
|
4
4
|
"description": "Availity MUI Spaces Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"@mui/material": "^5.15.15",
|
|
49
49
|
"react": "18.2.0",
|
|
50
50
|
"react-dom": "18.2.0",
|
|
51
|
+
"react-markdown": "^9.0.1",
|
|
51
52
|
"tsup": "^8.0.2",
|
|
52
53
|
"typescript": "^5.4.5"
|
|
53
54
|
},
|
|
@@ -65,7 +66,8 @@
|
|
|
65
66
|
"@availity/mui-progress": "^0.1.9",
|
|
66
67
|
"@availity/mui-typography": "^0.2.0",
|
|
67
68
|
"@mui/material": "^5.11.9",
|
|
68
|
-
"react": ">=16.3.0"
|
|
69
|
+
"react": ">=16.3.0",
|
|
70
|
+
"react-markdown": "^9.0.1"
|
|
69
71
|
},
|
|
70
72
|
"publishConfig": {
|
|
71
73
|
"access": "public"
|
|
@@ -79,7 +81,6 @@
|
|
|
79
81
|
"@tanstack/react-query": "^4.36.1",
|
|
80
82
|
"dayjs": "^1.11.10",
|
|
81
83
|
"qs": "^6.12.1",
|
|
82
|
-
"react-image": "^4.1.0"
|
|
83
|
-
"react-markdown": "^9.0.1"
|
|
84
|
+
"react-image": "^4.1.0"
|
|
84
85
|
}
|
|
85
86
|
}
|