@availity/mui-disclaimer 1.0.6 → 2.0.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 +23 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/introduction.mdx +1 -2
- package/package.json +8 -8
- package/src/lib/Disclaimer.stories.tsx +1 -1
- package/src/lib/Disclaimer.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-disclaimer@2.0.0...@availity/mui-disclaimer@2.0.1) (2025-12-03)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-link` updated to version `2.0.0`
|
|
10
|
+
* `mui-typography` updated to version `2.0.0`
|
|
11
|
+
## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-disclaimer@1.0.6...@availity/mui-disclaimer@2.0.0) (2025-11-17)
|
|
12
|
+
|
|
13
|
+
### Dependency Updates
|
|
14
|
+
|
|
15
|
+
* `mui-link` updated to version `1.0.6`
|
|
16
|
+
* `mui-typography` updated to version `1.0.6`
|
|
17
|
+
|
|
18
|
+
### ⚠ BREAKING CHANGES
|
|
19
|
+
|
|
20
|
+
* @mui/material upgraded to v7
|
|
21
|
+
* @mui/x-* upgraded to v8
|
|
22
|
+
* react upgraded to v19
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
|
|
27
|
+
|
|
5
28
|
## [1.0.6](https://github.com/Availity/element/compare/@availity/mui-disclaimer@1.0.5...@availity/mui-disclaimer@1.0.6) (2025-10-30)
|
|
6
29
|
|
|
7
30
|
### Dependency Updates
|
package/dist/index.d.mts
CHANGED
|
@@ -17,6 +17,6 @@ interface DisclaimerProps extends AvDisclaimerProps {
|
|
|
17
17
|
/** The link to display */
|
|
18
18
|
link?: LinkProps;
|
|
19
19
|
}
|
|
20
|
-
declare const Disclaimer: ({ accent, dense, description, headerText, link, ...rest }: DisclaimerProps) => JSX.Element;
|
|
20
|
+
declare const Disclaimer: ({ accent, dense, description, headerText, link, ...rest }: DisclaimerProps) => React.JSX.Element;
|
|
21
21
|
|
|
22
22
|
export { Disclaimer, type DisclaimerProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,6 @@ interface DisclaimerProps extends AvDisclaimerProps {
|
|
|
17
17
|
/** The link to display */
|
|
18
18
|
link?: LinkProps;
|
|
19
19
|
}
|
|
20
|
-
declare const Disclaimer: ({ accent, dense, description, headerText, link, ...rest }: DisclaimerProps) => JSX.Element;
|
|
20
|
+
declare const Disclaimer: ({ accent, dense, description, headerText, link, ...rest }: DisclaimerProps) => React.JSX.Element;
|
|
21
21
|
|
|
22
22
|
export { Disclaimer, type DisclaimerProps };
|
package/introduction.mdx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-disclaimer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Availity MUI Disclaimer Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@mui/material": "^
|
|
44
|
-
"react": "
|
|
45
|
-
"react-dom": "
|
|
43
|
+
"@mui/material": "^7.3.4",
|
|
44
|
+
"react": "19.2.0",
|
|
45
|
+
"react-dom": "19.2.0",
|
|
46
46
|
"tsup": "^8.4.0",
|
|
47
47
|
"typescript": "^5.4.5"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@mui/material": "^
|
|
51
|
-
"react": ">=
|
|
50
|
+
"@mui/material": "^7.0.0",
|
|
51
|
+
"react": ">=17.0.0"
|
|
52
52
|
},
|
|
53
53
|
"publishConfig": {
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@availity/mui-link": "^
|
|
58
|
-
"@availity/mui-typography": "^
|
|
57
|
+
"@availity/mui-link": "^2.0.1",
|
|
58
|
+
"@availity/mui-typography": "^2.0.1"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false
|
|
61
61
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
2
|
|
|
3
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
4
4
|
import { Disclaimer, DisclaimerProps } from './Disclaimer';
|
|
5
5
|
|
|
6
6
|
const meta: Meta<typeof Disclaimer> = {
|
package/src/lib/Disclaimer.tsx
CHANGED