File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1217,7 +1217,7 @@ export class FieldApi<
1217
1217
*/
1218
1218
setMeta = (
1219
1219
updater : Updater <
1220
- FieldMeta <
1220
+ FieldMetaBase <
1221
1221
TParentData ,
1222
1222
TName ,
1223
1223
TData ,
Original file line number Diff line number Diff line change @@ -1844,7 +1844,7 @@ export class FormApi<
1844
1844
*/
1845
1845
setFieldMeta = < TField extends DeepKeys < TFormData > > (
1846
1846
field : TField ,
1847
- updater : Updater < AnyFieldMeta > ,
1847
+ updater : Updater < AnyFieldMetaBase > ,
1848
1848
) => {
1849
1849
this . baseStore . setState ( ( prev ) => {
1850
1850
return {
Original file line number Diff line number Diff line change
1
+ import type { FieldValidators } from './FieldApi'
2
+ import type { FormValidators } from './FormApi'
1
3
import type {
2
4
GlobalFormValidationError ,
3
5
ValidationCause ,
4
6
ValidationError ,
5
7
ValidationSource ,
6
8
} from './types'
7
- import type { FormValidators } from './FormApi'
8
- import type { AnyFieldMeta , FieldValidators } from './FieldApi'
9
9
10
10
export type UpdaterFn < TInput , TOutput = TInput > = ( input : TInput ) => TOutput
11
11
You can’t perform that action at this time.
0 commit comments