@availity/mui-stepper 1.0.7 → 2.0.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 CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-stepper@1.0.8...@availity/mui-stepper@2.0.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-button` updated to version `1.0.8`
10
+ * `mui-layout` updated to version `1.0.8`
11
+ * `mui-paper` updated to version `1.0.8`
12
+ * `mui-typography` updated to version `1.0.8`
13
+ * `mui-icon` updated to version `1.0.8`
14
+
15
+ ### ⚠ BREAKING CHANGES
16
+
17
+ * @mui/material upgraded to v7
18
+ * @mui/x-* upgraded to v8
19
+ * react upgraded to v19
20
+
21
+ ### Features
22
+
23
+ * upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
24
+
25
+ ## [1.0.8](https://github.com/Availity/element/compare/@availity/mui-stepper@1.0.7...@availity/mui-stepper@1.0.8) (2025-10-30)
26
+
27
+ ### Dependency Updates
28
+
29
+ * `mui-button` updated to version `1.0.7`
30
+ * `mui-layout` updated to version `1.0.7`
31
+ * `mui-paper` updated to version `1.0.7`
32
+ * `mui-typography` updated to version `1.0.7`
33
+ * `mui-icon` updated to version `1.0.7`
5
34
  ## [1.0.7](https://github.com/Availity/element/compare/@availity/mui-stepper@1.0.6...@availity/mui-stepper@1.0.7) (2025-05-15)
6
35
 
7
36
 
package/dist/index.d.mts CHANGED
@@ -8,18 +8,18 @@ import { StepLabelProps as StepLabelProps$1 } from '@mui/material/StepLabel';
8
8
  import { StepperProps as StepperProps$1 } from '@mui/material/Stepper';
9
9
 
10
10
  type StepProps = StepProps$1;
11
- declare const Step: ({ children, ...rest }: StepProps) => JSX.Element;
11
+ declare const Step: ({ children, ...rest }: StepProps) => React.JSX.Element;
12
12
 
13
13
  type StepButtonProps = Omit<StepButtonProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
14
- declare const StepButton: ({ children, ...rest }: StepButtonProps) => JSX.Element;
14
+ declare const StepButton: ({ children, ...rest }: StepButtonProps) => React.JSX.Element;
15
15
 
16
16
  type StepConnectorProps = StepConnectorProps$1;
17
- declare const StepConnector: (props: StepConnectorProps) => JSX.Element;
17
+ declare const StepConnector: (props: StepConnectorProps) => React.JSX.Element;
18
18
 
19
19
  type StepContentProps = StepContentProps$1;
20
- declare const StepContent: ({ children, ...rest }: StepContentProps) => JSX.Element;
20
+ declare const StepContent: ({ children, ...rest }: StepContentProps) => React.JSX.Element;
21
21
 
22
- type Tag = ((props: SvgIconProps) => JSX.Element) | null;
22
+ type Tag = ((props: SvgIconProps) => React.JSX.Element) | null;
23
23
  declare module '@mui/material/StepIcon' {
24
24
  interface StepIconProps {
25
25
  as?: Tag;
@@ -30,17 +30,17 @@ type StepIconProps = {
30
30
  /** If `true`, the step will have a warning icon. */
31
31
  warning?: boolean;
32
32
  } & StepIconProps$1;
33
- declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps) => JSX.Element;
33
+ declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps) => React.JSX.Element;
34
34
 
35
35
  type StepLabelProps = Pick<StepIconProps, 'warning'> & StepLabelProps$1;
36
36
  declare const StepLabel: {
37
- ({ children, error, optional, warning, ...rest }: StepLabelProps): JSX.Element;
37
+ ({ children, error, optional, warning, ...rest }: StepLabelProps): React.JSX.Element;
38
38
  muiName: string;
39
39
  };
40
40
 
41
41
  type StepperProps = {
42
42
  scrollButtons?: boolean;
43
43
  } & Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
44
- declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => JSX.Element;
44
+ declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => React.JSX.Element;
45
45
 
46
46
  export { Step, StepButton, type StepButtonProps, StepConnector, type StepConnectorProps, StepContent, type StepContentProps, StepIcon, type StepIconProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps };
package/dist/index.d.ts CHANGED
@@ -8,18 +8,18 @@ import { StepLabelProps as StepLabelProps$1 } from '@mui/material/StepLabel';
8
8
  import { StepperProps as StepperProps$1 } from '@mui/material/Stepper';
9
9
 
10
10
  type StepProps = StepProps$1;
11
- declare const Step: ({ children, ...rest }: StepProps) => JSX.Element;
11
+ declare const Step: ({ children, ...rest }: StepProps) => React.JSX.Element;
12
12
 
13
13
  type StepButtonProps = Omit<StepButtonProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
14
- declare const StepButton: ({ children, ...rest }: StepButtonProps) => JSX.Element;
14
+ declare const StepButton: ({ children, ...rest }: StepButtonProps) => React.JSX.Element;
15
15
 
16
16
  type StepConnectorProps = StepConnectorProps$1;
17
- declare const StepConnector: (props: StepConnectorProps) => JSX.Element;
17
+ declare const StepConnector: (props: StepConnectorProps) => React.JSX.Element;
18
18
 
19
19
  type StepContentProps = StepContentProps$1;
20
- declare const StepContent: ({ children, ...rest }: StepContentProps) => JSX.Element;
20
+ declare const StepContent: ({ children, ...rest }: StepContentProps) => React.JSX.Element;
21
21
 
22
- type Tag = ((props: SvgIconProps) => JSX.Element) | null;
22
+ type Tag = ((props: SvgIconProps) => React.JSX.Element) | null;
23
23
  declare module '@mui/material/StepIcon' {
24
24
  interface StepIconProps {
25
25
  as?: Tag;
@@ -30,17 +30,17 @@ type StepIconProps = {
30
30
  /** If `true`, the step will have a warning icon. */
31
31
  warning?: boolean;
32
32
  } & StepIconProps$1;
33
- declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps) => JSX.Element;
33
+ declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps) => React.JSX.Element;
34
34
 
35
35
  type StepLabelProps = Pick<StepIconProps, 'warning'> & StepLabelProps$1;
36
36
  declare const StepLabel: {
37
- ({ children, error, optional, warning, ...rest }: StepLabelProps): JSX.Element;
37
+ ({ children, error, optional, warning, ...rest }: StepLabelProps): React.JSX.Element;
38
38
  muiName: string;
39
39
  };
40
40
 
41
41
  type StepperProps = {
42
42
  scrollButtons?: boolean;
43
43
  } & Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
44
- declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => JSX.Element;
44
+ declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => React.JSX.Element;
45
45
 
46
46
  export { Step, StepButton, type StepButtonProps, StepConnector, type StepConnectorProps, StepContent, type StepContentProps, StepIcon, type StepIconProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps };