@app-studio/web 0.8.14 → 0.8.15
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/components/Formik/Formik.Form.d.ts +1 -0
- package/dist/web.cjs.development.js +3 -5
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +3 -5
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +3 -5
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -4864,15 +4864,13 @@ var FormikForm = _ref => {
|
|
|
4864
4864
|
children,
|
|
4865
4865
|
autoFocus = false,
|
|
4866
4866
|
initFocus,
|
|
4867
|
-
onChange
|
|
4867
|
+
onChange = () => {}
|
|
4868
4868
|
} = _ref,
|
|
4869
4869
|
props = _objectWithoutPropertiesLoose(_ref, _excluded$z);
|
|
4870
4870
|
var formik$1 = formik.useFormikContext();
|
|
4871
4871
|
React.useEffect(() => {
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
}
|
|
4875
|
-
}, [formik$1.values, onChange]);
|
|
4872
|
+
onChange(formik$1.values);
|
|
4873
|
+
}, [formik$1.values]);
|
|
4876
4874
|
var inputRefs = React.useRef({});
|
|
4877
4875
|
var inputNames = React.useRef([]);
|
|
4878
4876
|
var setInputRef = (name, ref) => {
|