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.
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +13 -6
- package/dist/ui-mathilde-web.js +2067 -2012
- package/dist/ui-mathilde-web.umd.cjs +34 -33
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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
|
-
|
|
346
|
-
|
|
347
|
-
|
|
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 {
|