remix-validated-form 5.0.2 → 5.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,72 +0,0 @@
1
- export type FieldErrors = Record<string, string>;
2
-
3
- export type TouchedFields = Record<string, boolean>;
4
-
5
- export type GenericObject = { [key: string]: any };
6
-
7
- export type ValidatorError = {
8
- subaction?: string;
9
- formId?: string;
10
- fieldErrors: FieldErrors;
11
- };
12
-
13
- export type ValidationErrorResponseData = {
14
- subaction?: string;
15
- formId?: string;
16
- fieldErrors: FieldErrors;
17
- repopulateFields?: unknown;
18
- };
19
-
20
- export type BaseResult = { submittedData: GenericObject; formId?: string };
21
- export type ErrorResult = BaseResult & {
22
- error: ValidatorError;
23
- data: undefined;
24
- };
25
- export type SuccessResult<DataType> = BaseResult & {
26
- data: DataType;
27
- error: undefined;
28
- };
29
-
30
- /**
31
- * The result when validating a form.
32
- */
33
- export type ValidationResult<DataType> = SuccessResult<DataType> | ErrorResult;
34
-
35
- /**
36
- * The result when validating an individual field in a form.
37
- */
38
- export type ValidateFieldResult = { error?: string };
39
-
40
- /**
41
- * A `Validator` can be passed to the `validator` prop of a `ValidatedForm`.
42
- */
43
- export type Validator<DataType> = {
44
- validate: (
45
- unvalidatedData: GenericObject
46
- ) => Promise<ValidationResult<DataType>>;
47
- /**
48
- * @deprecated Will be removed in a future version of remix-validated-form
49
- */
50
- validateField?: (
51
- unvalidatedData: GenericObject,
52
- field: string
53
- ) => Promise<ValidateFieldResult>;
54
- };
55
-
56
- export type Valid<DataType> = { data: DataType; error: undefined };
57
- export type Invalid = { error: FieldErrors; data: undefined };
58
- export type CreateValidatorArg<DataType> = {
59
- validate: (
60
- unvalidatedData: GenericObject
61
- ) => Promise<Valid<DataType> | Invalid>;
62
- validateField: (
63
- unvalidatedData: GenericObject,
64
- field: string
65
- ) => Promise<ValidateFieldResult>;
66
- };
67
-
68
- export type ValidatorData<T extends Validator<any>> = T extends Validator<
69
- infer U
70
- >
71
- ? U
72
- : never;
package/tsconfig.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "tsconfig/tsconfig.json",
3
- "compilerOptions": {
4
- "module": "esnext"
5
- },
6
- "include": ["src/**/*.ts", "src/**/*.tsx"],
7
- "exclude": ["node_modules"]
8
- }