@conform-to/react 1.11.0 → 1.12.0
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/README.md +1 -1
- package/dist/future/hooks.d.ts +14 -24
- package/dist/future/hooks.js +59 -47
- package/dist/future/hooks.mjs +58 -47
- package/dist/future/index.d.ts +2 -2
- package/dist/future/index.js +1 -0
- package/dist/future/index.mjs +1 -1
- package/dist/future/intent.js +16 -10
- package/dist/future/intent.mjs +16 -10
- package/dist/future/state.d.ts +10 -6
- package/dist/future/state.js +89 -49
- package/dist/future/state.mjs +89 -49
- package/dist/future/types.d.ts +121 -58
- package/package.json +2 -2
package/dist/future/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { FormError, FormValue, SubmissionResult, ValidationAttributes } from '@conform-to/dom/future';
|
|
1
|
+
import type { FormError, FormValue, Serialize, SubmissionResult, ValidationAttributes } from '@conform-to/dom/future';
|
|
2
2
|
import type { StandardSchemaV1 } from './standard-schema';
|
|
3
3
|
export type Prettify<T> = {
|
|
4
4
|
[K in keyof T]: T[K];
|
|
@@ -64,10 +64,10 @@ export type UseFormDataOptions = {
|
|
|
64
64
|
*/
|
|
65
65
|
acceptFiles?: boolean;
|
|
66
66
|
};
|
|
67
|
-
export type DefaultValue<FormShape> = FormShape extends
|
|
67
|
+
export type DefaultValue<FormShape> = FormShape extends Array<infer Item> | null | undefined ? Array<DefaultValue<Item>> | null | undefined : FormShape extends Record<string, any> | null | undefined ? {
|
|
68
68
|
[Key in keyof FormShape]?: DefaultValue<FormShape[Key]>;
|
|
69
|
-
} | null | undefined :
|
|
70
|
-
export type FormState<ErrorShape> = {
|
|
69
|
+
} | null | undefined : FormShape | string | null | undefined;
|
|
70
|
+
export type FormState<ErrorShape extends BaseErrorShape = DefaultErrorShape> = {
|
|
71
71
|
/** Unique identifier that changes on form reset to trigger reset side effects */
|
|
72
72
|
resetKey: string;
|
|
73
73
|
/** Form values from client actions that will be synced to the DOM */
|
|
@@ -83,12 +83,41 @@ export type FormState<ErrorShape> = {
|
|
|
83
83
|
/** Mapping of array field names to their item keys for React list rendering */
|
|
84
84
|
listKeys: Record<string, string[]>;
|
|
85
85
|
};
|
|
86
|
-
export type FormAction<ErrorShape, Intent extends UnknownIntent | null | undefined = UnknownIntent | null, Context = {}> = SubmissionResult<ErrorShape> & {
|
|
86
|
+
export type FormAction<ErrorShape extends BaseErrorShape = DefaultErrorShape, Intent extends UnknownIntent | null | undefined = UnknownIntent | null, Context = {}> = SubmissionResult<ErrorShape> & {
|
|
87
87
|
type: 'initialize' | 'server' | 'client';
|
|
88
88
|
intent: Intent;
|
|
89
89
|
ctx: Context;
|
|
90
90
|
};
|
|
91
|
-
export
|
|
91
|
+
export type GlobalFormOptions = {
|
|
92
|
+
/**
|
|
93
|
+
* The name of the submit button field that indicates the submission intent.
|
|
94
|
+
*
|
|
95
|
+
* @default "__intent__"
|
|
96
|
+
*/
|
|
97
|
+
intentName: string;
|
|
98
|
+
/**
|
|
99
|
+
* A custom serialization function for converting form data.
|
|
100
|
+
*/
|
|
101
|
+
serialize: Serialize;
|
|
102
|
+
/**
|
|
103
|
+
* Determines when validation should run for the first time on a field.
|
|
104
|
+
*
|
|
105
|
+
* @default "onSubmit"
|
|
106
|
+
*/
|
|
107
|
+
shouldValidate: 'onSubmit' | 'onBlur' | 'onInput';
|
|
108
|
+
/**
|
|
109
|
+
* Determines when validation should run again after the field has been validated once.
|
|
110
|
+
*
|
|
111
|
+
* @default Same as shouldValidate
|
|
112
|
+
*/
|
|
113
|
+
shouldRevalidate?: 'onSubmit' | 'onBlur' | 'onInput';
|
|
114
|
+
/**
|
|
115
|
+
* A function that defines custom metadata properties for form fields.
|
|
116
|
+
* Useful for integrating with UI libraries or custom form components.
|
|
117
|
+
*/
|
|
118
|
+
defineCustomMetadata?: CustomMetadataDefinition;
|
|
119
|
+
};
|
|
120
|
+
export type FormOptions<FormShape, ErrorShape extends BaseErrorShape = string extends BaseErrorShape ? string : BaseErrorShape, Value = undefined> = {
|
|
92
121
|
/** Optional form identifier. If not provided, a unique ID is automatically generated. */
|
|
93
122
|
id?: string;
|
|
94
123
|
/** Optional key for form state reset. When the key changes, the form resets to its initial state. */
|
|
@@ -100,23 +129,21 @@ export interface FormOptions<FormShape, ErrorShape = string, Value = undefined>
|
|
|
100
129
|
/** HTML validation attributes for fields (required, minLength, pattern, etc.). */
|
|
101
130
|
constraint?: Record<string, ValidationAttributes>;
|
|
102
131
|
/**
|
|
103
|
-
*
|
|
104
|
-
*
|
|
132
|
+
* Determines when validation should run for the first time on a field.
|
|
133
|
+
* Overrides the global default set by FormOptionsProvider if provided.
|
|
105
134
|
*
|
|
106
|
-
* @default "onSubmit"
|
|
135
|
+
* @default Inherits from FormOptionsProvider, or "onSubmit" if not configured
|
|
107
136
|
*/
|
|
108
137
|
shouldValidate?: 'onSubmit' | 'onBlur' | 'onInput';
|
|
109
138
|
/**
|
|
110
|
-
*
|
|
111
|
-
*
|
|
139
|
+
* Determines when validation should run again after the field has been validated once.
|
|
140
|
+
* Overrides the global default set by FormOptionsProvider if provided.
|
|
112
141
|
*
|
|
113
|
-
* @default
|
|
142
|
+
* @default Inherits from FormOptionsProvider, or same as shouldValidate
|
|
114
143
|
*/
|
|
115
144
|
shouldRevalidate?: 'onSubmit' | 'onBlur' | 'onInput';
|
|
116
145
|
/** Server-side submission result for form state synchronization. */
|
|
117
146
|
lastResult?: SubmissionResult<NoInfer<ErrorShape>> | null;
|
|
118
|
-
/** Custom validation handler. Can be skipped if using the schema property, or combined with schema to customize validation errors. */
|
|
119
|
-
onValidate?: ValidateHandler<ErrorShape, Value>;
|
|
120
147
|
/** Error handling callback triggered when validation errors occur. By default, it focuses the first invalid field. */
|
|
121
148
|
onError?: ErrorHandler<ErrorShape>;
|
|
122
149
|
/** Form submission handler called when the form is submitted with no validation errors. */
|
|
@@ -125,14 +152,20 @@ export interface FormOptions<FormShape, ErrorShape = string, Value = undefined>
|
|
|
125
152
|
onInput?: InputHandler;
|
|
126
153
|
/** Blur event handler for custom focus handling logic. */
|
|
127
154
|
onBlur?: BlurHandler;
|
|
128
|
-
}
|
|
129
|
-
|
|
155
|
+
} & (string extends ErrorShape ? {
|
|
156
|
+
/** Custom validation handler. Can be skipped if using the schema property, or combined with schema to customize validation errors. */
|
|
157
|
+
onValidate?: ValidateHandler<ErrorShape, Value>;
|
|
158
|
+
} : {
|
|
159
|
+
/** Custom validation handler. Can be skipped if using the schema property, or combined with schema to customize validation errors. */
|
|
160
|
+
onValidate: ValidateHandler<ErrorShape, Value>;
|
|
161
|
+
});
|
|
162
|
+
export interface FormContext<ErrorShape extends BaseErrorShape = DefaultErrorShape> {
|
|
130
163
|
/** The form's unique identifier */
|
|
131
164
|
formId: string;
|
|
132
165
|
/** Internal form state with validation results and field data */
|
|
133
166
|
state: FormState<ErrorShape>;
|
|
134
167
|
/** Initial form values */
|
|
135
|
-
defaultValue:
|
|
168
|
+
defaultValue: Record<string, any> | null;
|
|
136
169
|
/** HTML validation attributes for fields */
|
|
137
170
|
constraint: Record<string, ValidationAttributes> | null;
|
|
138
171
|
/** Form submission event handler */
|
|
@@ -231,7 +264,7 @@ export type FormIntent<Dispatcher extends IntentDispatcher = IntentDispatcher> =
|
|
|
231
264
|
export type ActionHandler<Signature extends (payload: any) => void = (payload: any) => void> = {
|
|
232
265
|
validatePayload?(...args: UnknownArgs<Parameters<Signature>>): boolean;
|
|
233
266
|
onApply?(value: Record<string, FormValue>, ...args: Parameters<Signature>): Record<string, FormValue> | null;
|
|
234
|
-
onUpdate?<ErrorShape>(state: FormState<ErrorShape>, action: FormAction<ErrorShape, {
|
|
267
|
+
onUpdate?<ErrorShape extends BaseErrorShape>(state: FormState<ErrorShape>, action: FormAction<ErrorShape, {
|
|
235
268
|
type: string;
|
|
236
269
|
payload: Signature extends (payload: infer Payload) => void ? Payload : undefined;
|
|
237
270
|
}>): FormState<ErrorShape>;
|
|
@@ -240,27 +273,84 @@ type BaseCombine<T, K extends PropertyKey = T extends unknown ? keyof T : never>
|
|
|
240
273
|
export type Combine<T> = {
|
|
241
274
|
[K in keyof BaseCombine<T>]: BaseCombine<T>[K];
|
|
242
275
|
};
|
|
243
|
-
/**
|
|
244
|
-
|
|
276
|
+
/**
|
|
277
|
+
* Extend this interface to define the base error shape for validation.
|
|
278
|
+
*
|
|
279
|
+
* @example
|
|
280
|
+
* ```ts
|
|
281
|
+
* declare module '@conform-to/react/future' {
|
|
282
|
+
* interface CustomTypes {
|
|
283
|
+
* errorShape: { message: string; code: string };
|
|
284
|
+
* }
|
|
285
|
+
* }
|
|
286
|
+
* ```
|
|
287
|
+
*/
|
|
288
|
+
export interface CustomTypes {
|
|
289
|
+
}
|
|
290
|
+
export type BaseErrorShape = CustomTypes extends {
|
|
291
|
+
errorShape: infer Shape;
|
|
292
|
+
} ? Shape : unknown;
|
|
293
|
+
export type DefaultErrorShape = CustomTypes extends {
|
|
294
|
+
errorShape: infer Shape;
|
|
295
|
+
} ? Shape : string;
|
|
296
|
+
/** Base field metadata object containing field state, validation attributes, and accessibility IDs. */
|
|
297
|
+
export type BaseMetadata<FieldShape, ErrorShape extends BaseErrorShape> = ValidationAttributes & {
|
|
245
298
|
/** Unique key for React list rendering (for array fields). */
|
|
246
299
|
key: string | undefined;
|
|
247
300
|
/** The field name path exactly as provided. */
|
|
248
301
|
name: FieldName<FieldShape>;
|
|
302
|
+
/** The field's unique identifier, automatically generated as {formId}-field-{fieldName}. */
|
|
303
|
+
id: string;
|
|
304
|
+
/** Auto-generated ID for associating field descriptions via aria-describedby. */
|
|
305
|
+
descriptionId: string;
|
|
306
|
+
/** Auto-generated ID for associating field errors via aria-describedby. */
|
|
307
|
+
errorId: string;
|
|
308
|
+
/** The form's unique identifier for associating field via the `form` attribute. */
|
|
309
|
+
formId: string;
|
|
310
|
+
/** The field's default value as a string. */
|
|
311
|
+
defaultValue: string | undefined;
|
|
312
|
+
/** Default selected options for multi-select fields or checkbox group. */
|
|
313
|
+
defaultOptions: string[] | undefined;
|
|
314
|
+
/** Default checked state for checkbox/radio inputs. */
|
|
315
|
+
defaultChecked: boolean | undefined;
|
|
316
|
+
/** Whether this field has been touched (through intent.validate() or the shouldValidate option). */
|
|
317
|
+
touched: boolean;
|
|
318
|
+
/** Whether this field currently has no validation errors. */
|
|
319
|
+
valid: boolean;
|
|
320
|
+
/** @deprecated Use `.valid` instead. This was not an intentionl breaking change and would be removed in the next minor version soon */
|
|
321
|
+
invalid: boolean;
|
|
322
|
+
/** Array of validation error messages for this field. */
|
|
323
|
+
errors: ErrorShape[] | undefined;
|
|
324
|
+
/** Object containing errors for all touched subfields. */
|
|
325
|
+
fieldErrors: Record<string, ErrorShape[]>;
|
|
326
|
+
/** Boolean value for the `aria-invalid` attribute. Indicates whether the field has validation errors for screen readers. */
|
|
327
|
+
ariaInvalid: boolean | undefined;
|
|
328
|
+
/** String value for the `aria-describedby` attribute. Contains the errorId when invalid, undefined otherwise. Merge with descriptionId manually if needed (e.g. `${metadata.descriptionId} ${metadata.ariaDescribedBy}`). */
|
|
329
|
+
ariaDescribedBy: string | undefined;
|
|
249
330
|
/** Method to get nested fieldset for object fields under this field. */
|
|
250
|
-
getFieldset
|
|
251
|
-
|
|
252
|
-
]
|
|
331
|
+
getFieldset<FieldsetShape = [FieldShape] extends [
|
|
332
|
+
Record<string, unknown> | null | undefined
|
|
333
|
+
] ? FieldShape : unknown>(): Fieldset<FieldsetShape, ErrorShape>;
|
|
253
334
|
/** Method to get array of fields for list/array fields under this field. */
|
|
254
|
-
getFieldList
|
|
255
|
-
|
|
256
|
-
]
|
|
257
|
-
}
|
|
335
|
+
getFieldList<FieldItemShape = [FieldShape] extends [
|
|
336
|
+
Array<infer ItemShape> | null | undefined
|
|
337
|
+
] ? ItemShape : unknown>(): Array<FieldMetadata<FieldItemShape, ErrorShape>>;
|
|
338
|
+
};
|
|
339
|
+
export type SatisfyComponentProps<ElementType extends React.ElementType, CustomProps extends React.ComponentPropsWithoutRef<ElementType>> = CustomProps;
|
|
340
|
+
/**
|
|
341
|
+
* Interface for extending field metadata with additional properties.
|
|
342
|
+
*/
|
|
343
|
+
export interface CustomMetadata<FieldShape = any, ErrorShape extends BaseErrorShape = DefaultErrorShape> {
|
|
344
|
+
}
|
|
345
|
+
export type CustomMetadataDefinition = <FieldShape, ErrorShape extends BaseErrorShape>(metadata: BaseMetadata<FieldShape, ErrorShape>) => keyof CustomMetadata<FieldShape, ErrorShape> extends never ? {} : CustomMetadata<any, any>;
|
|
346
|
+
/** Field metadata object containing field state, validation attributes, and nested field access methods. */
|
|
347
|
+
export type FieldMetadata<FieldShape, ErrorShape extends BaseErrorShape = DefaultErrorShape> = Readonly<(keyof CustomMetadata<FieldShape, ErrorShape> extends never ? {} : CustomMetadata<FieldShape, ErrorShape>) & BaseMetadata<FieldShape, ErrorShape>>;
|
|
258
348
|
/** Fieldset object containing all form fields as properties with their respective field metadata. */
|
|
259
|
-
export type Fieldset<FieldShape, ErrorShape =
|
|
349
|
+
export type Fieldset<FieldShape, ErrorShape extends BaseErrorShape = DefaultErrorShape> = {
|
|
260
350
|
[Key in keyof Combine<FieldShape>]-?: FieldMetadata<Combine<FieldShape>[Key], ErrorShape>;
|
|
261
351
|
};
|
|
262
352
|
/** Form-level metadata and state object containing validation status, errors, and field access methods. */
|
|
263
|
-
export type FormMetadata<ErrorShape =
|
|
353
|
+
export type FormMetadata<ErrorShape extends BaseErrorShape = DefaultErrorShape> = Readonly<{
|
|
264
354
|
/** Unique identifier that changes on form reset */
|
|
265
355
|
key: string;
|
|
266
356
|
/** The form's unique identifier. */
|
|
@@ -300,33 +390,6 @@ export type FormMetadata<ErrorShape = string> = Readonly<{
|
|
|
300
390
|
FieldShape
|
|
301
391
|
] extends [Array<infer ItemShape> | null | undefined] ? ItemShape : unknown, ErrorShape>>;
|
|
302
392
|
}>;
|
|
303
|
-
/** Default field metadata object containing field state, validation attributes, and accessibility IDs. */
|
|
304
|
-
export type DefaultMetadata<ErrorShape> = Readonly<ValidationAttributes & {
|
|
305
|
-
/** The field's unique identifier, automatically generated as {formId}-field-{fieldName}. */
|
|
306
|
-
id: string;
|
|
307
|
-
/** Auto-generated ID for associating field descriptions via aria-describedby. */
|
|
308
|
-
descriptionId: string;
|
|
309
|
-
/** Auto-generated ID for associating field errors via aria-describedby. */
|
|
310
|
-
errorId: string;
|
|
311
|
-
/** The form's unique identifier for associating field via the `form` attribute. */
|
|
312
|
-
formId: string;
|
|
313
|
-
/** The field's default value as a string. */
|
|
314
|
-
defaultValue: string | undefined;
|
|
315
|
-
/** Default selected options for multi-select fields or checkbox group. */
|
|
316
|
-
defaultOptions: string[] | undefined;
|
|
317
|
-
/** Default checked state for checkbox/radio inputs. */
|
|
318
|
-
defaultChecked: boolean | undefined;
|
|
319
|
-
/** Whether this field has been touched (through intent.validate() or the shouldValidate option). */
|
|
320
|
-
touched: boolean;
|
|
321
|
-
/** Whether this field currently has no validation errors. */
|
|
322
|
-
valid: boolean;
|
|
323
|
-
/** @deprecated Use `.valid` instead. This was not an intentionl breaking change and would be removed in the next minor version soon */
|
|
324
|
-
invalid: boolean;
|
|
325
|
-
/** Array of validation error messages for this field. */
|
|
326
|
-
errors: ErrorShape[] | undefined;
|
|
327
|
-
/** Object containing errors for all touched subfields. */
|
|
328
|
-
fieldErrors: Record<string, ErrorShape[]>;
|
|
329
|
-
}>;
|
|
330
393
|
export type ValidateResult<ErrorShape, Value> = FormError<ErrorShape> | null | {
|
|
331
394
|
error: FormError<ErrorShape> | null;
|
|
332
395
|
value?: Value;
|
|
@@ -385,7 +448,7 @@ export type ErrorContext<ErrorShape> = {
|
|
|
385
448
|
export type ErrorHandler<ErrorShape> = (ctx: ErrorContext<ErrorShape>) => void;
|
|
386
449
|
export type InputHandler = (event: FormInputEvent) => void;
|
|
387
450
|
export type BlurHandler = (event: FormFocusEvent) => void;
|
|
388
|
-
export type SubmitContext<ErrorShape =
|
|
451
|
+
export type SubmitContext<ErrorShape extends BaseErrorShape = DefaultErrorShape, Value = undefined> = {
|
|
389
452
|
formData: FormData;
|
|
390
453
|
value: Value;
|
|
391
454
|
update: (options: {
|
|
@@ -393,6 +456,6 @@ export type SubmitContext<ErrorShape = string, Value = undefined> = {
|
|
|
393
456
|
reset?: boolean;
|
|
394
457
|
}) => void;
|
|
395
458
|
};
|
|
396
|
-
export type SubmitHandler<ErrorShape =
|
|
459
|
+
export type SubmitHandler<ErrorShape extends BaseErrorShape = DefaultErrorShape, Value = undefined> = (event: React.FormEvent<HTMLFormElement>, ctx: SubmitContext<ErrorShape, Value>) => void | Promise<void>;
|
|
397
460
|
export {};
|
|
398
461
|
//# sourceMappingURL=types.d.ts.map
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Conform view adapter for react",
|
|
4
4
|
"homepage": "https://conform.guide",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.12.0",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.mjs",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"url": "https://github.com/edmundhung/conform/issues"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@conform-to/dom": "1.
|
|
44
|
+
"@conform-to/dom": "1.12.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@babel/core": "^7.17.8",
|