@am92/react-design-system 2.7.1 → 2.7.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.
|
@@ -9,7 +9,7 @@ export declare class DsProgressTracker extends PureComponent<DsProgressTrackerPr
|
|
|
9
9
|
orientation?: import("@mui/material").Orientation;
|
|
10
10
|
};
|
|
11
11
|
'ds-variant': "default" | "header" | "steps";
|
|
12
|
-
steps: import("./
|
|
12
|
+
steps: import("./DsProgressStepper.Types").DsProgressStepperStepProps[];
|
|
13
13
|
activeStep: number;
|
|
14
14
|
sx?: import("../DsBox").DsBoxProps;
|
|
15
15
|
nextStepLabelPrefix: React.ReactNode;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { DsBoxProps } from '../DsBox';
|
|
2
|
-
import { DsProgressStepperProps } from './DsProgressStepper.Types';
|
|
3
|
-
export interface DsProgressTrackerStepProps {
|
|
4
|
-
stepName: string;
|
|
5
|
-
}
|
|
2
|
+
import { DsProgressStepperProps, DsProgressStepperStepProps } from './DsProgressStepper.Types';
|
|
6
3
|
export interface DsProgressTrackerProps {
|
|
7
4
|
/** This property can be used to switch between different variants of Progress Indicator where Default will provide a view with expand functionality on click, setsp only provide setp names without header and header provides a header with steps indicator without expandable stepper. */
|
|
8
5
|
'ds-variant': 'default' | 'header' | 'steps';
|
|
9
|
-
steps:
|
|
6
|
+
steps: DsProgressStepperStepProps[];
|
|
10
7
|
activeStep: number;
|
|
11
8
|
StepperProps?: Omit<DsProgressStepperProps, 'activeStep' | 'steps' | 'ref'>;
|
|
12
9
|
sx?: DsBoxProps;
|