@availity/mui-transitions 1.0.7 → 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 CHANGED
@@ -2,6 +2,31 @@
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-transitions@2.0.0...@availity/mui-transitions@2.0.1) (2025-12-03)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-alert` updated to version `2.0.0`
10
+ * `mui-typography` updated to version `2.0.0`
11
+ * `mui-utils` updated to version `2.0.0`
12
+ ## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-transitions@1.0.7...@availity/mui-transitions@2.0.0) (2025-11-17)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `mui-alert` updated to version `1.0.7`
17
+ * `mui-typography` updated to version `1.0.7`
18
+ * `mui-utils` updated to version `1.0.7`
19
+
20
+ ### ⚠ BREAKING CHANGES
21
+
22
+ * @mui/material upgraded to v7
23
+ * @mui/x-* upgraded to v8
24
+ * react upgraded to v19
25
+
26
+ ### Features
27
+
28
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
29
+
5
30
  ## [1.0.7](https://github.com/Availity/element/compare/@availity/mui-transitions@1.0.6...@availity/mui-transitions@1.0.7) (2025-10-30)
6
31
 
7
32
  ### Dependency Updates
package/dist/index.d.mts CHANGED
@@ -2,9 +2,9 @@ import { CollapseProps as CollapseProps$1 } from '@mui/material/Collapse';
2
2
  import { FadeProps as FadeProps$1 } from '@mui/material/Fade';
3
3
 
4
4
  type CollapseProps = CollapseProps$1;
5
- declare const Collapse: (props: CollapseProps) => JSX.Element;
5
+ declare const Collapse: (props: CollapseProps) => React.JSX.Element;
6
6
 
7
7
  type FadeProps = FadeProps$1;
8
- declare const Fade: (props: FadeProps) => JSX.Element;
8
+ declare const Fade: (props: FadeProps) => React.JSX.Element;
9
9
 
10
10
  export { Collapse, type CollapseProps, Fade, type FadeProps };
package/dist/index.d.ts CHANGED
@@ -2,9 +2,9 @@ import { CollapseProps as CollapseProps$1 } from '@mui/material/Collapse';
2
2
  import { FadeProps as FadeProps$1 } from '@mui/material/Fade';
3
3
 
4
4
  type CollapseProps = CollapseProps$1;
5
- declare const Collapse: (props: CollapseProps) => JSX.Element;
5
+ declare const Collapse: (props: CollapseProps) => React.JSX.Element;
6
6
 
7
7
  type FadeProps = FadeProps$1;
8
- declare const Fade: (props: FadeProps) => JSX.Element;
8
+ declare const Fade: (props: FadeProps) => React.JSX.Element;
9
9
 
10
10
  export { Collapse, type CollapseProps, Fade, type FadeProps };
package/introduction.mdx CHANGED
@@ -1,5 +1,4 @@
1
- import { Markdown } from '@storybook/blocks';
2
- import { Meta } from '@storybook/addon-docs';
1
+ import { Markdown, Meta } from '@storybook/addon-docs/blocks';
3
2
  import ReadMe from './README.md?raw';
4
3
  import CHANGELOG from './CHANGELOG.md?raw';
5
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-transitions",
3
- "version": "1.0.7",
3
+ "version": "2.0.1",
4
4
  "description": "Availity MUI Transitions Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,18 +40,18 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-alert": "^1.0.7",
44
- "@availity/mui-typography": "^1.0.3",
45
- "@availity/mui-utils": "1.0.3",
46
- "@mui/material": "^6.4.5",
47
- "react": "18.2.0",
48
- "react-dom": "18.2.0",
43
+ "@availity/mui-alert": "^2.0.1",
44
+ "@availity/mui-typography": "^2.0.1",
45
+ "@availity/mui-utils": "2.0.1",
46
+ "@mui/material": "^7.3.4",
47
+ "react": "19.2.0",
48
+ "react-dom": "19.2.0",
49
49
  "tsup": "^8.4.0",
50
50
  "typescript": "^5.4.5"
51
51
  },
52
52
  "peerDependencies": {
53
- "@mui/material": "^6.4.5",
54
- "react": ">=16.3.0"
53
+ "@mui/material": "^7.0.0",
54
+ "react": ">=17.0.0"
55
55
  },
56
56
  "publishConfig": {
57
57
  "access": "public"
@@ -1,7 +1,7 @@
1
1
  // Each exported component in the package should have its own stories file
2
2
 
3
3
  import { useState } from 'react';
4
- import type { Meta, StoryObj } from '@storybook/react';
4
+ import type { Meta, StoryObj } from '@storybook/react-vite';
5
5
  import { Collapse, CollapseProps } from './Collapse';
6
6
  import Switch from '@mui/material/Switch';
7
7
  import FormControlLabel from '@mui/material/FormControlLabel';
@@ -2,6 +2,6 @@ import MuiCollapse, { CollapseProps as MuiCollapseProps } from '@mui/material/Co
2
2
 
3
3
  export type CollapseProps = MuiCollapseProps;
4
4
 
5
- export const Collapse = (props: CollapseProps): JSX.Element => {
5
+ export const Collapse = (props: CollapseProps): React.JSX.Element => {
6
6
  return <MuiCollapse {...props} />;
7
7
  };
@@ -1,7 +1,7 @@
1
1
  // Each exported component in the package should have its own stories file
2
2
 
3
3
  import { useState } from 'react';
4
- import type { Meta, StoryObj } from '@storybook/react';
4
+ import type { Meta, StoryObj } from '@storybook/react-vite';
5
5
  import { Alert } from '@availity/mui-alert';
6
6
  import { Fade, FadeProps } from './Fade';
7
7
 
package/src/lib/Fade.tsx CHANGED
@@ -2,6 +2,6 @@ import MuiFade, { FadeProps as MuiFadeProps } from '@mui/material/Fade';
2
2
 
3
3
  export type FadeProps = MuiFadeProps;
4
4
 
5
- export const Fade = (props: FadeProps): JSX.Element => {
5
+ export const Fade = (props: FadeProps): React.JSX.Element => {
6
6
  return <MuiFade {...props} />;
7
7
  };