ui-mathilde-web 0.3.6 → 0.3.7
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.
|
@@ -447,6 +447,15 @@ declare interface TermsCheckboxProps {
|
|
|
447
447
|
label?: string;
|
|
448
448
|
}
|
|
449
449
|
|
|
450
|
+
export declare function Toggle({ label, checked, disabled, onChange, }: ToggleProps): JSX_2.Element;
|
|
451
|
+
|
|
452
|
+
declare interface ToggleProps {
|
|
453
|
+
label?: string;
|
|
454
|
+
checked?: boolean;
|
|
455
|
+
disabled?: boolean;
|
|
456
|
+
onChange?: (checked: boolean) => void;
|
|
457
|
+
}
|
|
458
|
+
|
|
450
459
|
declare interface ValidationListProps {
|
|
451
460
|
validations: {
|
|
452
461
|
hasMinLength: boolean;
|
package/dist/ui-mathilde-web.js
CHANGED
|
@@ -29653,5 +29653,6 @@ export {
|
|
|
29653
29653
|
LI as TableOfContents,
|
|
29654
29654
|
jI as TabsComponent,
|
|
29655
29655
|
AI as TermsCheckbox,
|
|
29656
|
+
X2 as Toggle,
|
|
29656
29657
|
FI as ValidationPassword
|
|
29657
29658
|
};
|