ui-mathilde-web 0.3.1 → 0.3.3

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.
@@ -300,6 +300,8 @@ declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectE
300
300
  options: Option_2[];
301
301
  label?: string;
302
302
  error?: string;
303
+ id: string;
304
+ classSelect?: string;
303
305
  }
304
306
 
305
307
  export declare const SidebarPro: default_2.FC<SidebarProProps>;
@@ -338,14 +340,19 @@ declare interface SpinnerProps {
338
340
  description?: string;
339
341
  }
340
342
 
341
- export declare const Stepper: ({ steps }: StepperProps) => JSX_2.Element;
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;
342
349
 
343
350
  declare interface StepperProps {
344
- steps: {
345
- title: string;
346
- description: string;
347
- status: 'completed' | 'current' | 'pending';
348
- }[];
351
+ steps: Step[];
352
+ initialStep: number;
353
+ onNext?: () => void;
354
+ onBack?: () => void;
355
+ onFinish?: () => void;
349
356
  }
350
357
 
351
358
  declare interface SubMenuSection {