@zealicsolutions/web-ui 0.3.176 → 0.3.178
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/helpers/utils.d.ts +1 -1
- package/dist/cjs/src/molecules/PasswordSetup/PasswordSetup.d.ts +6 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/helpers/utils.d.ts +1 -1
- package/dist/esm/src/molecules/PasswordSetup/PasswordSetup.d.ts +6 -2
- package/package.json +2 -2
@@ -9,6 +9,6 @@ export declare const downloadFile: (url?: string, name?: string) => Promise<void
|
|
9
9
|
export declare const navigateToExternalLink: (externalLink?: Nullable<string>) => void;
|
10
10
|
export declare const checkIsInternalLink: (link?: LinkAttributes) => boolean;
|
11
11
|
export declare const addInternalParamsToCurrentLink: (internalLink?: Nullable<string>) => string;
|
12
|
-
export declare const getHref: (link?: LinkAttributes) =>
|
12
|
+
export declare const getHref: (link?: LinkAttributes) => string | undefined;
|
13
13
|
export declare const parseDescendantContent: (string: string) => CustomDescendant[];
|
14
14
|
export declare const matchSlateAndStateObject: (slateValue: Descendant[], stateConfig: StateConfigType) => Descendant[];
|
@@ -7,8 +7,12 @@ export declare type PasswordRuleValidation = {
|
|
7
7
|
rule: MaxRuleValidation | MinRuleValidation;
|
8
8
|
};
|
9
9
|
export declare type PasswordFields = {
|
10
|
-
password:
|
11
|
-
|
10
|
+
password: {
|
11
|
+
value: string;
|
12
|
+
};
|
13
|
+
reenteredPassword?: {
|
14
|
+
value?: string;
|
15
|
+
};
|
12
16
|
};
|
13
17
|
export declare type PasswordSetupProps = {
|
14
18
|
fields: UIFields<PasswordFields>;
|
package/package.json
CHANGED