@zealicsolutions/web-ui 0.1.19 → 0.1.21
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/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/organisms/LoginForm/LoginForm.d.ts +1 -1
- package/dist/cjs/src/organisms/SetPasswordForm/SetPasswordForm.d.ts +1 -1
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/organisms/LoginForm/LoginForm.d.ts +1 -1
- package/dist/esm/src/organisms/SetPasswordForm/SetPasswordForm.d.ts +1 -1
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
@@ -1,8 +1,8 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import type { Callback } from 'typescript';
|
3
3
|
import { UIFields } from '../../fieldsConfiguration';
|
4
|
-
import { LoginFields } from './types';
|
5
4
|
import { TwoFactorAuthProps } from '../TwoFactorAuth/TwoFactorAuth';
|
5
|
+
import { LoginFields } from './types';
|
6
6
|
export declare type LoginFormProps = {
|
7
7
|
fields: UIFields<LoginFields>;
|
8
8
|
logoUrl: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
import {
|
2
|
+
import { MaxRuleValidation, MinRuleValidation, SetPasswordFields } from 'organisms/SetPasswordForm/types';
|
3
3
|
import { UIFields } from '../../fieldsConfiguration';
|
4
4
|
export declare type SetPasswordRuleValidation = {
|
5
5
|
label: string;
|
package/dist/index.d.ts
CHANGED
@@ -508,12 +508,6 @@ declare type AcquisitionFormProps<T extends object> = {
|
|
508
508
|
};
|
509
509
|
declare const AcquisitionForm: <T extends object>({ logoUrl, title, description, buttonText, fields, onSubmit, onLinkButtonClick, isLoading, }: AcquisitionFormProps<T>) => JSX.Element;
|
510
510
|
|
511
|
-
declare type LoginFields = {
|
512
|
-
email: string;
|
513
|
-
password: string;
|
514
|
-
rememberMe: boolean;
|
515
|
-
};
|
516
|
-
|
517
511
|
declare type VerificationCodeForm = {
|
518
512
|
code: string;
|
519
513
|
};
|
@@ -526,6 +520,12 @@ declare type TwoFactorAuthProps = {
|
|
526
520
|
};
|
527
521
|
declare const TwoFactorAuth: ({ logoUrl, onSubmit, onBack, onNext }: TwoFactorAuthProps) => JSX.Element;
|
528
522
|
|
523
|
+
declare type LoginFields = {
|
524
|
+
email: string;
|
525
|
+
password: string;
|
526
|
+
rememberMe: boolean;
|
527
|
+
};
|
528
|
+
|
529
529
|
declare type LoginFormProps = {
|
530
530
|
fields: UIFields<LoginFields>;
|
531
531
|
logoUrl: string;
|