wargerm 0.5.21 → 0.5.22
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/index.esm.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
@@ -10464,7 +10464,8 @@ var ModalForm = function ModalForm(props, ref) {
|
|
10464
10464
|
return {
|
10465
10465
|
formRef: formRef.current,
|
10466
10466
|
onSubmit: onSubmit,
|
10467
|
-
modalFormvisible: visible
|
10467
|
+
modalFormvisible: visible,
|
10468
|
+
setFieldsValue: setFieldsValue
|
10468
10469
|
};
|
10469
10470
|
});
|
10470
10471
|
|
package/dist/index.js
CHANGED
@@ -10524,7 +10524,8 @@ var ModalForm = function ModalForm(props, ref) {
|
|
10524
10524
|
return {
|
10525
10525
|
formRef: formRef.current,
|
10526
10526
|
onSubmit: onSubmit,
|
10527
|
-
modalFormvisible: visible
|
10527
|
+
modalFormvisible: visible,
|
10528
|
+
setFieldsValue: setFieldsValue
|
10528
10529
|
};
|
10529
10530
|
});
|
10530
10531
|
|