rc-field-form
Advanced tools
Comparing version 1.36.1 to 1.36.2
@@ -10,5 +10,5 @@ type BaseNamePath = string | number | boolean | (string | number | boolean)[]; | ||
number | ||
] | DeepNamePath<Store[number], [...ParentNamePath, number]> : { | ||
] | DeepNamePath<Store[number], [...ParentNamePath, number]> : keyof Store extends never ? Store : { | ||
[FieldKey in keyof Store]: Store[FieldKey] extends Function ? never : (ParentNamePath['length'] extends 0 ? FieldKey : never) | [...ParentNamePath, FieldKey] | DeepNamePath<Required<Store>[FieldKey], [...ParentNamePath, FieldKey]>; | ||
}[keyof Store]; | ||
export {}; |
@@ -10,5 +10,5 @@ type BaseNamePath = string | number | boolean | (string | number | boolean)[]; | ||
number | ||
] | DeepNamePath<Store[number], [...ParentNamePath, number]> : { | ||
] | DeepNamePath<Store[number], [...ParentNamePath, number]> : keyof Store extends never ? Store : { | ||
[FieldKey in keyof Store]: Store[FieldKey] extends Function ? never : (ParentNamePath['length'] extends 0 ? FieldKey : never) | [...ParentNamePath, FieldKey] | DeepNamePath<Required<Store>[FieldKey], [...ParentNamePath, FieldKey]>; | ||
}[keyof Store]; | ||
export {}; |
{ | ||
"name": "rc-field-form", | ||
"version": "1.36.1", | ||
"version": "1.36.2", | ||
"description": "React Form Component", | ||
@@ -5,0 +5,0 @@ "typings": "es/index.d.ts", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
262981