ui-mathilde-web 0.3.2 → 0.3.4

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.
@@ -340,19 +340,14 @@ declare interface SpinnerProps {
340
340
  description?: string;
341
341
  }
342
342
 
343
- declare interface Step {
344
- title: string;
345
- content: string;
346
- }
347
-
348
- export declare const Stepper: ({ steps, initialStep, onNext, onBack, onFinish, }: StepperProps) => JSX_2.Element;
343
+ export declare const Stepper: ({ steps }: StepperProps) => JSX_2.Element;
349
344
 
350
345
  declare interface StepperProps {
351
- steps: Step[];
352
- initialStep: number;
353
- onNext?: () => void;
354
- onBack?: () => void;
355
- onFinish?: () => void;
346
+ steps: {
347
+ title: string;
348
+ description: string;
349
+ status: 'completed' | 'current' | 'pending';
350
+ }[];
356
351
  }
357
352
 
358
353
  declare interface SubMenuSection {