@availity/mui-stepper 0.2.4 → 0.3.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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.3.0](https://github.com/Availity/element/compare/@availity/mui-stepper@0.2.4...@availity/mui-stepper@0.3.0) (2025-01-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * **mui-stepper:** add scroll buttons ([5855cfb](https://github.com/Availity/element/commit/5855cfbdf8d43a709a37723c46b553631e115056))
11
+
5
12
  ## [0.2.4](https://github.com/Availity/element/compare/@availity/mui-stepper@0.2.3...@availity/mui-stepper@0.2.4) (2025-01-06)
6
13
 
7
14
  ### Dependency Updates
package/dist/index.d.mts CHANGED
@@ -10,7 +10,7 @@ import { StepperProps as StepperProps$1 } from '@mui/material/Stepper';
10
10
  type StepProps = StepProps$1;
11
11
  declare const Step: ({ children, ...rest }: StepProps) => JSX.Element;
12
12
 
13
- type StepButtonProps = StepButtonProps$1;
13
+ type StepButtonProps = Omit<StepButtonProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
14
14
  declare const StepButton: ({ children, ...rest }: StepButtonProps) => JSX.Element;
15
15
 
16
16
  type StepConnectorProps = StepConnectorProps$1;
@@ -34,11 +34,13 @@ declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps)
34
34
 
35
35
  type StepLabelProps = Pick<StepIconProps, 'warning'> & StepLabelProps$1;
36
36
  declare const StepLabel: {
37
- ({ children, error, warning, ...rest }: StepLabelProps): JSX.Element;
37
+ ({ children, error, optional, warning, ...rest }: StepLabelProps): JSX.Element;
38
38
  muiName: string;
39
39
  };
40
40
 
41
- type StepperProps = Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
42
- declare const Stepper: ({ children, orientation, ...rest }: StepperProps) => JSX.Element;
41
+ type StepperProps = {
42
+ scrollButtons?: boolean;
43
+ } & Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
44
+ declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => JSX.Element;
43
45
 
44
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
@@ -10,7 +10,7 @@ import { StepperProps as StepperProps$1 } from '@mui/material/Stepper';
10
10
  type StepProps = StepProps$1;
11
11
  declare const Step: ({ children, ...rest }: StepProps) => JSX.Element;
12
12
 
13
- type StepButtonProps = StepButtonProps$1;
13
+ type StepButtonProps = Omit<StepButtonProps$1, 'centerRipple' | 'disableRipple' | 'disableTouchRipple' | 'focusRipple' | 'TouchRippleProps' | 'touchRippleRef'>;
14
14
  declare const StepButton: ({ children, ...rest }: StepButtonProps) => JSX.Element;
15
15
 
16
16
  type StepConnectorProps = StepConnectorProps$1;
@@ -34,11 +34,13 @@ declare const StepIcon: ({ error, completed, warning, ...rest }: StepIconProps)
34
34
 
35
35
  type StepLabelProps = Pick<StepIconProps, 'warning'> & StepLabelProps$1;
36
36
  declare const StepLabel: {
37
- ({ children, error, warning, ...rest }: StepLabelProps): JSX.Element;
37
+ ({ children, error, optional, warning, ...rest }: StepLabelProps): JSX.Element;
38
38
  muiName: string;
39
39
  };
40
40
 
41
- type StepperProps = Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
42
- declare const Stepper: ({ children, orientation, ...rest }: StepperProps) => JSX.Element;
41
+ type StepperProps = {
42
+ scrollButtons?: boolean;
43
+ } & Omit<StepperProps$1, 'alternativeLabel' | 'elevation'>;
44
+ declare const Stepper: ({ children, connector, orientation, scrollButtons, ...rest }: StepperProps) => JSX.Element;
43
45
 
44
46
  export { Step, StepButton, type StepButtonProps, StepConnector, type StepConnectorProps, StepContent, type StepContentProps, StepIcon, type StepIconProps, StepLabel, type StepLabelProps, type StepProps, Stepper, type StepperProps };