@zealicsolutions/web-ui 0.3.93 → 0.3.94
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/types/moleculeTypes.d.ts +2 -1
- package/dist/cjs/src/molecules/CustomValidation/CustomValidation.d.ts +3 -1
- package/dist/cjs/src/molecules/CustomValidation/CustomValidation.stories.d.ts +1 -1
- package/dist/cjs/src/molecules/PasswordSetup/PasswordSetup.d.ts +3 -1
- package/dist/cjs/src/molecules/PasswordSetup/PasswordSetup.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/types/moleculeTypes.d.ts +2 -1
- package/dist/esm/src/molecules/CustomValidation/CustomValidation.d.ts +3 -1
- package/dist/esm/src/molecules/CustomValidation/CustomValidation.stories.d.ts +1 -1
- package/dist/esm/src/molecules/PasswordSetup/PasswordSetup.d.ts +3 -1
- package/dist/esm/src/molecules/PasswordSetup/PasswordSetup.stories.d.ts +1 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
@@ -28,7 +28,7 @@ declare type Action = {
|
|
28
28
|
reset: ResetAction;
|
29
29
|
destroy: DestroyAction;
|
30
30
|
}>;
|
31
|
-
export declare type FormStateType = 'default' | 'success' | 'format_error' | 'field_error' | 'open_dropdown' | 'match_error';
|
31
|
+
export declare type FormStateType = 'default' | 'success' | 'error' | 'format_error' | 'field_error' | 'open_dropdown' | 'match_error';
|
32
32
|
export declare type ImageAttributes = {
|
33
33
|
attributeType: 'image';
|
34
34
|
imageSource: string;
|
@@ -245,6 +245,7 @@ export interface PasswordSetupMolecule extends BaseMolecule {
|
|
245
245
|
config: {
|
246
246
|
props: {
|
247
247
|
validationLabel?: string;
|
248
|
+
state?: FormStateType;
|
248
249
|
passwordInputProps: InputFieldProps;
|
249
250
|
reenteredPasswordInputProps: InputFieldProps;
|
250
251
|
};
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { FormStateType } from 'containers';
|
1
2
|
export declare type CustomValidationRule<T = string> = {
|
2
3
|
text: string;
|
3
4
|
validate: (value?: T) => boolean;
|
@@ -8,5 +9,6 @@ export declare type CustomValidationProps<T = string> = {
|
|
8
9
|
isSubmitted?: boolean;
|
9
10
|
rules: CustomValidationRule<T>[];
|
10
11
|
spacer?: number;
|
12
|
+
validationState?: FormStateType;
|
11
13
|
};
|
12
|
-
export declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, spacer, }: CustomValidationProps<T>) => JSX.Element;
|
14
|
+
export declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, spacer, validationState, }: CustomValidationProps<T>) => JSX.Element;
|
@@ -2,7 +2,7 @@ import type { ComponentStory } from '@storybook/react';
|
|
2
2
|
import { CustomValidation as CustomValidationComponent } from './CustomValidation';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: <T extends string = string>({ rules, value, isSubmitted, label, spacer, }: import("./CustomValidation").CustomValidationProps<T>) => JSX.Element;
|
5
|
+
component: <T extends string = string>({ rules, value, isSubmitted, label, spacer, validationState, }: import("./CustomValidation").CustomValidationProps<T>) => JSX.Element;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const CustomValidation: ComponentStory<typeof CustomValidationComponent>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { FormStateType } from 'containers';
|
1
2
|
import { UIFields } from 'fieldsConfiguration';
|
2
3
|
import { MaxRuleValidation, MinRuleValidation } from 'organisms/SetPasswordForm/types';
|
3
4
|
import { UseFormReturn } from 'react-hook-form';
|
@@ -14,5 +15,6 @@ export declare type PasswordSetupProps = {
|
|
14
15
|
validations: PasswordRuleValidation[];
|
15
16
|
form?: UseFormReturn<any>;
|
16
17
|
validationLabel?: string;
|
18
|
+
validationState?: FormStateType;
|
17
19
|
};
|
18
|
-
export declare const PasswordSetup: ({ fields, validations, form, validationLabel, }: PasswordSetupProps) => JSX.Element;
|
20
|
+
export declare const PasswordSetup: ({ fields, validations, form, validationLabel, validationState, }: PasswordSetupProps) => JSX.Element;
|
@@ -2,7 +2,7 @@ import type { ComponentStory } from '@storybook/react';
|
|
2
2
|
import { PasswordSetup as PasswordSetupComponent } from './PasswordSetup';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: ({ fields, validations, form, validationLabel, }: import("./PasswordSetup").PasswordSetupProps) => JSX.Element;
|
5
|
+
component: ({ fields, validations, form, validationLabel, validationState, }: import("./PasswordSetup").PasswordSetupProps) => JSX.Element;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const PasswordSetup: ComponentStory<typeof PasswordSetupComponent>;
|
package/dist/index.d.ts
CHANGED
@@ -1111,8 +1111,9 @@ declare type CustomValidationProps<T = string> = {
|
|
1111
1111
|
isSubmitted?: boolean;
|
1112
1112
|
rules: CustomValidationRule<T>[];
|
1113
1113
|
spacer?: number;
|
1114
|
+
validationState?: FormStateType$1;
|
1114
1115
|
};
|
1115
|
-
declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, spacer, }: CustomValidationProps<T>) => JSX.Element;
|
1116
|
+
declare const CustomValidation: <T extends string = string>({ rules, value, isSubmitted, label, spacer, validationState, }: CustomValidationProps<T>) => JSX.Element;
|
1116
1117
|
|
1117
1118
|
declare type BaseSelectableProps<T> = {
|
1118
1119
|
iconName: IconNames$2;
|
@@ -1622,7 +1623,7 @@ declare type Action = {
|
|
1622
1623
|
reset: ResetAction;
|
1623
1624
|
destroy: DestroyAction;
|
1624
1625
|
}>;
|
1625
|
-
declare type FormStateType = 'default' | 'success' | 'format_error' | 'field_error' | 'open_dropdown' | 'match_error';
|
1626
|
+
declare type FormStateType = 'default' | 'success' | 'error' | 'format_error' | 'field_error' | 'open_dropdown' | 'match_error';
|
1626
1627
|
declare type ImageAttributes = {
|
1627
1628
|
attributeType: 'image';
|
1628
1629
|
imageSource: string;
|
@@ -1839,6 +1840,7 @@ interface PasswordSetupMolecule extends BaseMolecule {
|
|
1839
1840
|
config: {
|
1840
1841
|
props: {
|
1841
1842
|
validationLabel?: string;
|
1843
|
+
state?: FormStateType;
|
1842
1844
|
passwordInputProps: InputFieldProps$1;
|
1843
1845
|
reenteredPasswordInputProps: InputFieldProps$1;
|
1844
1846
|
};
|