@zealicsolutions/web-ui 0.3.176 → 0.3.178

Sign up to get free protection for your applications and to get access to all the features.
@@ -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) => void;
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: string;
11
- reenteredPassword?: string;
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.3.176",
4
- "testVersion": "0.3.174",
3
+ "version": "0.3.178",
4
+ "testVersion": "0.3.176",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"