@aloudata/aloudata-design 2.13.4 → 2.13.5
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/dist/Form/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/Form/index.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ declare const AldFormItem: {
|
|
|
26
26
|
type InternalFormType = typeof AldForm;
|
|
27
27
|
type OriginUseFormType<T> = typeof useForm<T>;
|
|
28
28
|
type CompoundedComponent = InternalFormType & {
|
|
29
|
-
useForm: <T>(...args: [...Parameters<OriginUseFormType<T>>, string?]) => ReturnType<OriginUseFormType<T>>;
|
|
29
|
+
useForm: <T = any>(...args: [...Parameters<OriginUseFormType<T>>, string?]) => ReturnType<OriginUseFormType<T>>;
|
|
30
30
|
useFormInstance: typeof useFormInstance;
|
|
31
31
|
useWatch: typeof useWatch;
|
|
32
32
|
Item: typeof AldFormItem;
|