File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1+ export { Step , stepClassNames } from "./step" ;
12export { Stepper } from "./stepper" ;
23export { StepperDialog } from "./stepper-dialog" ;
34export { StepperDialogClassNames } from "./stepper-dialog.styles" ;
45export type { DialogStep , StepperDialogProps } from "./stepper-dialog.types" ;
5- export type { Step , StepperProps } from "./stepper.types" ;
6+ export type { TStep , StepperProps } from "./stepper.types" ;
Original file line number Diff line number Diff line change 1- import { Step } from "./stepper.types" ;
1+ import { TStep } from "./stepper.types" ;
22
3- export type DialogStep = Step & {
3+ export type DialogStep = TStep & {
44 content : JSX . Element ;
55} ;
66
Original file line number Diff line number Diff line change 1- export type Step = {
1+ export type TStep = {
22 name : string ;
33} ;
44
55export type StepperProps = {
66 currentStep : number ;
7- steps : Step [ ] ;
7+ steps : TStep [ ] ;
88 vertical ?: boolean ;
99} ;
You can’t perform that action at this time.
0 commit comments