@availity/mui-transitions 2.0.0 → 2.0.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,18 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.0.2](https://github.com/Availity/element/compare/@availity/mui-transitions@2.0.1...@availity/mui-transitions@2.0.2) (2026-02-02)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-alert` updated to version `2.0.1`
10
+ ## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-transitions@2.0.0...@availity/mui-transitions@2.0.1) (2025-12-03)
11
+
12
+ ### Dependency Updates
13
+
14
+ * `mui-alert` updated to version `2.0.0`
15
+ * `mui-typography` updated to version `2.0.0`
16
+ * `mui-utils` updated to version `2.0.0`
5
17
  ## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-transitions@1.0.7...@availity/mui-transitions@2.0.0) (2025-11-17)
6
18
 
7
19
  ### Dependency Updates
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [![Version](https://img.shields.io/npm/v/@availity/mui-transitions.svg?style=for-the-badge)](https://www.npmjs.com/package/@availity/mui-transitions)
6
6
  [![NPM Downloads](https://img.shields.io/npm/dt/@availity/mui-transitions.svg?style=for-the-badge)](https://www.npmjs.com/package/@availity/mui-transitions)
7
- [![Dependency Status](https://img.shields.io/librariesio/release/npm/@availity/mui-transitions?style=for-the-badge)](https://github.com/Availity/element/blob/main/packages/mui-transitions/package.json)
7
+ [![Dependency Status](https://img.shields.io/librariesio/release/npm/@availity/mui-transitions?style=for-the-badge)](https://github.com/Availity/element/blob/main/packages/transitions/package.json)
8
8
 
9
9
  ## Documentation
10
10
 
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": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Availity MUI Transitions Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,9 +40,9 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-alert": "^2.0.0",
44
- "@availity/mui-typography": "^2.0.0",
45
- "@availity/mui-utils": "2.0.0",
43
+ "@availity/mui-alert": "^2.0.2",
44
+ "@availity/mui-typography": "^2.0.1",
45
+ "@availity/mui-utils": "2.0.1",
46
46
  "@mui/material": "^7.3.4",
47
47
  "react": "19.2.0",
48
48
  "react-dom": "19.2.0",
@@ -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';
@@ -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