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.
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +6 -11
- package/dist/ui-mathilde-web.js +2006 -2061
- package/dist/ui-mathilde-web.umd.cjs +29 -30
- package/package.json +1 -1
|
@@ -340,19 +340,14 @@ declare interface SpinnerProps {
|
|
|
340
340
|
description?: string;
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
-
declare
|
|
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:
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
346
|
+
steps: {
|
|
347
|
+
title: string;
|
|
348
|
+
description: string;
|
|
349
|
+
status: 'completed' | 'current' | 'pending';
|
|
350
|
+
}[];
|
|
356
351
|
}
|
|
357
352
|
|
|
358
353
|
declare interface SubMenuSection {
|