{"version":3,"file":"react-hook-form-DMHx0L79.js","sources":["../../node_modules/react-hook-form/dist/index.esm.mjs"],"sourcesContent":["import React from 'react';\n\nvar isCheckBoxInput = (element) => element.type === 'checkbox';\n\nvar isDateObject = (value) => value instanceof Date;\n\nvar isNullOrUndefined = (value) => value == null;\n\nconst isObjectType = (value) => typeof value === 'object';\nvar isObject = (value) => !isNullOrUndefined(value) &&\n !Array.isArray(value) &&\n isObjectType(value) &&\n !isDateObject(value);\n\nvar getEventValue = (event) => isObject(event) && event.target\n ? isCheckBoxInput(event.target)\n ? event.target.checked\n : event.target.value\n : event;\n\nvar getNodeParentName = (name) => name.substring(0, name.search(/\\.\\d+(\\.|$)/)) || name;\n\nvar isNameInFieldArray = (names, name) => names.has(getNodeParentName(name));\n\nvar isPlainObject = (tempObject) => {\n const prototypeCopy = tempObject.constructor && tempObject.constructor.prototype;\n return (isObject(prototypeCopy) && prototypeCopy.hasOwnProperty('isPrototypeOf'));\n};\n\nvar isWeb = typeof window !== 'undefined' &&\n typeof window.HTMLElement !== 'undefined' &&\n typeof document !== 'undefined';\n\nfunction cloneObject(data) {\n let copy;\n const isArray = Array.isArray(data);\n if (data instanceof Date) {\n copy = new Date(data);\n }\n else if (data instanceof Set) {\n copy = new Set(data);\n }\n else if (!(isWeb && (data instanceof Blob || data instanceof FileList)) &&\n (isArray || isObject(data))) {\n copy = isArray ? [] : {};\n if (!isArray && !isPlainObject(data)) {\n copy = data;\n }\n else {\n for (const key in data) {\n if (data.hasOwnProperty(key)) {\n copy[key] = cloneObject(data[key]);\n }\n }\n }\n }\n else {\n return data;\n }\n return copy;\n}\n\nvar compact = (value) => Array.isArray(value) ? value.filter(Boolean) : [];\n\nvar isUndefined = (val) => val === undefined;\n\nvar get = (object, path, defaultValue) => {\n if (!path || !isObject(object)) {\n return defaultValue;\n }\n const result = compact(path.split(/[,[\\].]+?/)).reduce((result, key) => isNullOrUndefined(result) ? result : result[key], object);\n return isUndefined(result) || result === object\n ? isUndefined(object[path])\n ? defaultValue\n : object[path]\n : result;\n};\n\nvar isBoolean = (value) => typeof value === 'boolean';\n\nvar isKey = (value) => /^\\w*$/.test(value);\n\nvar stringToPath = (input) => compact(input.replace(/[\"|']|\\]/g, '').split(/\\.|\\[/));\n\nvar set = (object, path, value) => {\n let index = -1;\n const tempPath = isKey(path) ? [path] : stringToPath(path);\n const length = tempPath.length;\n const lastIndex = length - 1;\n while (++index < length) {\n const key = tempPath[index];\n let newValue = value;\n if (index !== lastIndex) {\n const objValue = object[key];\n newValue =\n isObject(objValue) || Array.isArray(objValue)\n ? objValue\n : !isNaN(+tempPath[index + 1])\n ? []\n : {};\n }\n if (key === '__proto__') {\n return;\n }\n object[key] = newValue;\n object = object[key];\n }\n return object;\n};\n\nconst EVENTS = {\n BLUR: 'blur',\n FOCUS_OUT: 'focusout',\n CHANGE: 'change',\n};\nconst VALIDATION_MODE = {\n onBlur: 'onBlur',\n onChange: 'onChange',\n onSubmit: 'onSubmit',\n onTouched: 'onTouched',\n all: 'all',\n};\nconst INPUT_VALIDATION_RULES = {\n max: 'max',\n min: 'min',\n maxLength: 'maxLength',\n minLength: 'minLength',\n pattern: 'pattern',\n required: 'required',\n validate: 'validate',\n};\n\nconst HookFormContext = React.createContext(null);\n/**\n * This custom hook allows you to access the form context. useFormContext is intended to be used in deeply nested structures, where it would become inconvenient to pass the context as a prop. To be used with {@link FormProvider}.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/useformcontext) • [Demo](https://codesandbox.io/s/react-hook-form-v7-form-context-ytudi)\n *\n * @returns return all useForm methods\n *\n * @example\n * ```tsx\n * function App() {\n * const methods = useForm();\n * const onSubmit = data => console.log(data);\n *\n * return (\n * \n *
\n * \n * \n * \n *
\n * );\n * }\n *\n * function NestedInput() {\n * const { register } = useFormContext(); // retrieve all hook methods\n * return ;\n * }\n * ```\n */\nconst useFormContext = () => React.useContext(HookFormContext);\n/**\n * A provider component that propagates the `useForm` methods to all children components via [React Context](https://reactjs.org/docs/context.html) API. To be used with {@link useFormContext}.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/useformcontext) • [Demo](https://codesandbox.io/s/react-hook-form-v7-form-context-ytudi)\n *\n * @param props - all useForm methods\n *\n * @example\n * ```tsx\n * function App() {\n * const methods = useForm();\n * const onSubmit = data => console.log(data);\n *\n * return (\n * \n *
\n * \n * \n * \n *
\n * );\n * }\n *\n * function NestedInput() {\n * const { register } = useFormContext(); // retrieve all hook methods\n * return ;\n * }\n * ```\n */\nconst FormProvider = (props) => {\n const { children, ...data } = props;\n return (React.createElement(HookFormContext.Provider, { value: data }, children));\n};\n\nvar getProxyFormState = (formState, control, localProxyFormState, isRoot = true) => {\n const result = {\n defaultValues: control._defaultValues,\n };\n for (const key in formState) {\n Object.defineProperty(result, key, {\n get: () => {\n const _key = key;\n if (control._proxyFormState[_key] !== VALIDATION_MODE.all) {\n control._proxyFormState[_key] = !isRoot || VALIDATION_MODE.all;\n }\n localProxyFormState && (localProxyFormState[_key] = true);\n return formState[_key];\n },\n });\n }\n return result;\n};\n\nvar isEmptyObject = (value) => isObject(value) && !Object.keys(value).length;\n\nvar shouldRenderFormState = (formStateData, _proxyFormState, updateFormState, isRoot) => {\n updateFormState(formStateData);\n const { name, ...formState } = formStateData;\n return (isEmptyObject(formState) ||\n Object.keys(formState).length >= Object.keys(_proxyFormState).length ||\n Object.keys(formState).find((key) => _proxyFormState[key] ===\n (!isRoot || VALIDATION_MODE.all)));\n};\n\nvar convertToArrayPayload = (value) => (Array.isArray(value) ? value : [value]);\n\nvar shouldSubscribeByName = (name, signalName, exact) => !name ||\n !signalName ||\n name === signalName ||\n convertToArrayPayload(name).some((currentName) => currentName &&\n (exact\n ? currentName === signalName\n : currentName.startsWith(signalName) ||\n signalName.startsWith(currentName)));\n\nfunction useSubscribe(props) {\n const _props = React.useRef(props);\n _props.current = props;\n React.useEffect(() => {\n const subscription = !props.disabled &&\n _props.current.subject &&\n _props.current.subject.subscribe({\n next: _props.current.next,\n });\n return () => {\n subscription && subscription.unsubscribe();\n };\n }, [props.disabled]);\n}\n\n/**\n * This custom hook allows you to subscribe to each form state, and isolate the re-render at the custom hook level. It has its scope in terms of form state subscription, so it would not affect other useFormState and useForm. Using this hook can reduce the re-render impact on large and complex form application.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/useformstate) • [Demo](https://codesandbox.io/s/useformstate-75xly)\n *\n * @param props - include options on specify fields to subscribe. {@link UseFormStateReturn}\n *\n * @example\n * ```tsx\n * function App() {\n * const { register, handleSubmit, control } = useForm({\n * defaultValues: {\n * firstName: \"firstName\"\n * }});\n * const { dirtyFields } = useFormState({\n * control\n * });\n * const onSubmit = (data) => console.log(data);\n *\n * return (\n *
\n * \n * {dirtyFields.firstName &&

Field is dirty.

}\n * \n *
\n * );\n * }\n * ```\n */\nfunction useFormState(props) {\n const methods = useFormContext();\n const { control = methods.control, disabled, name, exact } = props || {};\n const [formState, updateFormState] = React.useState(control._formState);\n const _mounted = React.useRef(true);\n const _localProxyFormState = React.useRef({\n isDirty: false,\n isLoading: false,\n dirtyFields: false,\n touchedFields: false,\n validatingFields: false,\n isValidating: false,\n isValid: false,\n errors: false,\n });\n const _name = React.useRef(name);\n _name.current = name;\n useSubscribe({\n disabled,\n next: (value) => _mounted.current &&\n shouldSubscribeByName(_name.current, value.name, exact) &&\n shouldRenderFormState(value, _localProxyFormState.current, control._updateFormState) &&\n updateFormState({\n ...control._formState,\n ...value,\n }),\n subject: control._subjects.state,\n });\n React.useEffect(() => {\n _mounted.current = true;\n _localProxyFormState.current.isValid && control._updateValid(true);\n return () => {\n _mounted.current = false;\n };\n }, [control]);\n return getProxyFormState(formState, control, _localProxyFormState.current, false);\n}\n\nvar isString = (value) => typeof value === 'string';\n\nvar generateWatchOutput = (names, _names, formValues, isGlobal, defaultValue) => {\n if (isString(names)) {\n isGlobal && _names.watch.add(names);\n return get(formValues, names, defaultValue);\n }\n if (Array.isArray(names)) {\n return names.map((fieldName) => (isGlobal && _names.watch.add(fieldName), get(formValues, fieldName)));\n }\n isGlobal && (_names.watchAll = true);\n return formValues;\n};\n\n/**\n * Custom hook to subscribe to field change and isolate re-rendering at the component level.\n *\n * @remarks\n *\n * [API](https://react-hook-form.com/docs/usewatch) • [Demo](https://codesandbox.io/s/react-hook-form-v7-ts-usewatch-h9i5e)\n *\n * @example\n * ```tsx\n * const { control } = useForm();\n * const values = useWatch({\n * name: \"fieldName\"\n * control,\n * })\n * ```\n */\nfunction useWatch(props) {\n const methods = useFormContext();\n const { control = methods.control, name, defaultValue, disabled, exact, } = props || {};\n const _name = React.useRef(name);\n _name.current = name;\n useSubscribe({\n disabled,\n subject: control._subjects.values,\n next: (formState) => {\n if (shouldSubscribeByName(_name.current, formState.name, exact)) {\n updateValue(cloneObject(generateWatchOutput(_name.current, control._names, formState.values || control._formValues, false, defaultValue)));\n }\n },\n });\n const [value, updateValue] = React.useState(control._getWatch(name, defaultValue));\n React.useEffect(() => control._removeUnmounted());\n return value;\n}\n\n/**\n * Custom hook to work with controlled component, this function provide you with both form and field level state. Re-render is isolated at the hook level.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/usecontroller) • [Demo](https://codesandbox.io/s/usecontroller-0o8px)\n *\n * @param props - the path name to the form field value, and validation rules.\n *\n * @returns field properties, field and form state. {@link UseControllerReturn}\n *\n * @example\n * ```tsx\n * function Input(props) {\n * const { field, fieldState, formState } = useController(props);\n * return (\n *
\n * \n *

{fieldState.isTouched && \"Touched\"}

\n *

{formState.isSubmitted ? \"submitted\" : \"\"}

\n *
\n * );\n * }\n * ```\n */\nfunction useController(props) {\n const methods = useFormContext();\n const { name, disabled, control = methods.control, shouldUnregister } = props;\n const isArrayField = isNameInFieldArray(control._names.array, name);\n const value = useWatch({\n control,\n name,\n defaultValue: get(control._formValues, name, get(control._defaultValues, name, props.defaultValue)),\n exact: true,\n });\n const formState = useFormState({\n control,\n name,\n });\n const _registerProps = React.useRef(control.register(name, {\n ...props.rules,\n value,\n ...(isBoolean(props.disabled) ? { disabled: props.disabled } : {}),\n }));\n React.useEffect(() => {\n const _shouldUnregisterField = control._options.shouldUnregister || shouldUnregister;\n const updateMounted = (name, value) => {\n const field = get(control._fields, name);\n if (field) {\n field._f.mount = value;\n }\n };\n updateMounted(name, true);\n if (_shouldUnregisterField) {\n const value = cloneObject(get(control._options.defaultValues, name));\n set(control._defaultValues, name, value);\n if (isUndefined(get(control._formValues, name))) {\n set(control._formValues, name, value);\n }\n }\n return () => {\n (isArrayField\n ? _shouldUnregisterField && !control._state.action\n : _shouldUnregisterField)\n ? control.unregister(name)\n : updateMounted(name, false);\n };\n }, [name, control, isArrayField, shouldUnregister]);\n React.useEffect(() => {\n if (get(control._fields, name)) {\n control._updateDisabledField({\n disabled,\n fields: control._fields,\n name,\n value: get(control._fields, name)._f.value,\n });\n }\n }, [disabled, name, control]);\n return {\n field: {\n name,\n value,\n ...(isBoolean(disabled) || formState.disabled\n ? { disabled: formState.disabled || disabled }\n : {}),\n onChange: React.useCallback((event) => _registerProps.current.onChange({\n target: {\n value: getEventValue(event),\n name: name,\n },\n type: EVENTS.CHANGE,\n }), [name]),\n onBlur: React.useCallback(() => _registerProps.current.onBlur({\n target: {\n value: get(control._formValues, name),\n name: name,\n },\n type: EVENTS.BLUR,\n }), [name, control]),\n ref: (elm) => {\n const field = get(control._fields, name);\n if (field && elm) {\n field._f.ref = {\n focus: () => elm.focus(),\n select: () => elm.select(),\n setCustomValidity: (message) => elm.setCustomValidity(message),\n reportValidity: () => elm.reportValidity(),\n };\n }\n },\n },\n formState,\n fieldState: Object.defineProperties({}, {\n invalid: {\n enumerable: true,\n get: () => !!get(formState.errors, name),\n },\n isDirty: {\n enumerable: true,\n get: () => !!get(formState.dirtyFields, name),\n },\n isTouched: {\n enumerable: true,\n get: () => !!get(formState.touchedFields, name),\n },\n isValidating: {\n enumerable: true,\n get: () => !!get(formState.validatingFields, name),\n },\n error: {\n enumerable: true,\n get: () => get(formState.errors, name),\n },\n }),\n };\n}\n\n/**\n * Component based on `useController` hook to work with controlled component.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/usecontroller/controller) • [Demo](https://codesandbox.io/s/react-hook-form-v6-controller-ts-jwyzw) • [Video](https://www.youtube.com/watch?v=N2UNk_UCVyA)\n *\n * @param props - the path name to the form field value, and validation rules.\n *\n * @returns provide field handler functions, field and form state.\n *\n * @example\n * ```tsx\n * function App() {\n * const { control } = useForm({\n * defaultValues: {\n * test: \"\"\n * }\n * });\n *\n * return (\n *
\n * (\n * <>\n * \n *

{formState.isSubmitted ? \"submitted\" : \"\"}

\n *

{fieldState.isTouched ? \"touched\" : \"\"}

\n * \n * )}\n * />\n * \n * );\n * }\n * ```\n */\nconst Controller = (props) => props.render(useController(props));\n\nconst POST_REQUEST = 'post';\n/**\n * Form component to manage submission.\n *\n * @param props - to setup submission detail. {@link FormProps}\n *\n * @returns form component or headless render prop.\n *\n * @example\n * ```tsx\n * function App() {\n * const { control, formState: { errors } } = useForm();\n *\n * return (\n *
\n * \n *

{errors?.root?.server && 'Server error'}

\n * \n *
\n * );\n * }\n * ```\n */\nfunction Form(props) {\n const methods = useFormContext();\n const [mounted, setMounted] = React.useState(false);\n const { control = methods.control, onSubmit, children, action, method = POST_REQUEST, headers, encType, onError, render, onSuccess, validateStatus, ...rest } = props;\n const submit = async (event) => {\n let hasError = false;\n let type = '';\n await control.handleSubmit(async (data) => {\n const formData = new FormData();\n let formDataJson = '';\n try {\n formDataJson = JSON.stringify(data);\n }\n catch (_a) { }\n for (const name of control._names.mount) {\n formData.append(name, get(data, name));\n }\n if (onSubmit) {\n await onSubmit({\n data,\n event,\n method,\n formData,\n formDataJson,\n });\n }\n if (action) {\n try {\n const shouldStringifySubmissionData = [\n headers && headers['Content-Type'],\n encType,\n ].some((value) => value && value.includes('json'));\n const response = await fetch(action, {\n method,\n headers: {\n ...headers,\n ...(encType ? { 'Content-Type': encType } : {}),\n },\n body: shouldStringifySubmissionData ? formDataJson : formData,\n });\n if (response &&\n (validateStatus\n ? !validateStatus(response.status)\n : response.status < 200 || response.status >= 300)) {\n hasError = true;\n onError && onError({ response });\n type = String(response.status);\n }\n else {\n onSuccess && onSuccess({ response });\n }\n }\n catch (error) {\n hasError = true;\n onError && onError({ error });\n }\n }\n })(event);\n if (hasError && props.control) {\n props.control._subjects.state.next({\n isSubmitSuccessful: false,\n });\n props.control.setError('root.server', {\n type,\n });\n }\n };\n React.useEffect(() => {\n setMounted(true);\n }, []);\n return render ? (React.createElement(React.Fragment, null, render({\n submit,\n }))) : (React.createElement(\"form\", { noValidate: mounted, action: action, method: method, encType: encType, onSubmit: submit, ...rest }, children));\n}\n\nvar appendErrors = (name, validateAllFieldCriteria, errors, type, message) => validateAllFieldCriteria\n ? {\n ...errors[name],\n types: {\n ...(errors[name] && errors[name].types ? errors[name].types : {}),\n [type]: message || true,\n },\n }\n : {};\n\nvar generateId = () => {\n const d = typeof performance === 'undefined' ? Date.now() : performance.now() * 1000;\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {\n const r = (Math.random() * 16 + d) % 16 | 0;\n return (c == 'x' ? r : (r & 0x3) | 0x8).toString(16);\n });\n};\n\nvar getFocusFieldName = (name, index, options = {}) => options.shouldFocus || isUndefined(options.shouldFocus)\n ? options.focusName ||\n `${name}.${isUndefined(options.focusIndex) ? index : options.focusIndex}.`\n : '';\n\nvar getValidationModes = (mode) => ({\n isOnSubmit: !mode || mode === VALIDATION_MODE.onSubmit,\n isOnBlur: mode === VALIDATION_MODE.onBlur,\n isOnChange: mode === VALIDATION_MODE.onChange,\n isOnAll: mode === VALIDATION_MODE.all,\n isOnTouch: mode === VALIDATION_MODE.onTouched,\n});\n\nvar isWatched = (name, _names, isBlurEvent) => !isBlurEvent &&\n (_names.watchAll ||\n _names.watch.has(name) ||\n [..._names.watch].some((watchName) => name.startsWith(watchName) &&\n /^\\.\\w+/.test(name.slice(watchName.length))));\n\nconst iterateFieldsByAction = (fields, action, fieldsNames, abortEarly) => {\n for (const key of fieldsNames || Object.keys(fields)) {\n const field = get(fields, key);\n if (field) {\n const { _f, ...currentField } = field;\n if (_f) {\n if (_f.refs && _f.refs[0] && action(_f.refs[0], key) && !abortEarly) {\n break;\n }\n else if (_f.ref && action(_f.ref, _f.name) && !abortEarly) {\n break;\n }\n else {\n iterateFieldsByAction(currentField, action);\n }\n }\n else if (isObject(currentField)) {\n iterateFieldsByAction(currentField, action);\n }\n }\n }\n};\n\nvar updateFieldArrayRootError = (errors, error, name) => {\n const fieldArrayErrors = compact(get(errors, name));\n set(fieldArrayErrors, 'root', error[name]);\n set(errors, name, fieldArrayErrors);\n return errors;\n};\n\nvar isFileInput = (element) => element.type === 'file';\n\nvar isFunction = (value) => typeof value === 'function';\n\nvar isHTMLElement = (value) => {\n if (!isWeb) {\n return false;\n }\n const owner = value ? value.ownerDocument : 0;\n return (value instanceof\n (owner && owner.defaultView ? owner.defaultView.HTMLElement : HTMLElement));\n};\n\nvar isMessage = (value) => isString(value);\n\nvar isRadioInput = (element) => element.type === 'radio';\n\nvar isRegex = (value) => value instanceof RegExp;\n\nconst defaultResult = {\n value: false,\n isValid: false,\n};\nconst validResult = { value: true, isValid: true };\nvar getCheckboxValue = (options) => {\n if (Array.isArray(options)) {\n if (options.length > 1) {\n const values = options\n .filter((option) => option && option.checked && !option.disabled)\n .map((option) => option.value);\n return { value: values, isValid: !!values.length };\n }\n return options[0].checked && !options[0].disabled\n ? // @ts-expect-error expected to work in the browser\n options[0].attributes && !isUndefined(options[0].attributes.value)\n ? isUndefined(options[0].value) || options[0].value === ''\n ? validResult\n : { value: options[0].value, isValid: true }\n : validResult\n : defaultResult;\n }\n return defaultResult;\n};\n\nconst defaultReturn = {\n isValid: false,\n value: null,\n};\nvar getRadioValue = (options) => Array.isArray(options)\n ? options.reduce((previous, option) => option && option.checked && !option.disabled\n ? {\n isValid: true,\n value: option.value,\n }\n : previous, defaultReturn)\n : defaultReturn;\n\nfunction getValidateError(result, ref, type = 'validate') {\n if (isMessage(result) ||\n (Array.isArray(result) && result.every(isMessage)) ||\n (isBoolean(result) && !result)) {\n return {\n type,\n message: isMessage(result) ? result : '',\n ref,\n };\n }\n}\n\nvar getValueAndMessage = (validationData) => isObject(validationData) && !isRegex(validationData)\n ? validationData\n : {\n value: validationData,\n message: '',\n };\n\nvar validateField = async (field, formValues, validateAllFieldCriteria, shouldUseNativeValidation, isFieldArray) => {\n const { ref, refs, required, maxLength, minLength, min, max, pattern, validate, name, valueAsNumber, mount, disabled, } = field._f;\n const inputValue = get(formValues, name);\n if (!mount || disabled) {\n return {};\n }\n const inputRef = refs ? refs[0] : ref;\n const setCustomValidity = (message) => {\n if (shouldUseNativeValidation && inputRef.reportValidity) {\n inputRef.setCustomValidity(isBoolean(message) ? '' : message || '');\n inputRef.reportValidity();\n }\n };\n const error = {};\n const isRadio = isRadioInput(ref);\n const isCheckBox = isCheckBoxInput(ref);\n const isRadioOrCheckbox = isRadio || isCheckBox;\n const isEmpty = ((valueAsNumber || isFileInput(ref)) &&\n isUndefined(ref.value) &&\n isUndefined(inputValue)) ||\n (isHTMLElement(ref) && ref.value === '') ||\n inputValue === '' ||\n (Array.isArray(inputValue) && !inputValue.length);\n const appendErrorsCurry = appendErrors.bind(null, name, validateAllFieldCriteria, error);\n const getMinMaxMessage = (exceedMax, maxLengthMessage, minLengthMessage, maxType = INPUT_VALIDATION_RULES.maxLength, minType = INPUT_VALIDATION_RULES.minLength) => {\n const message = exceedMax ? maxLengthMessage : minLengthMessage;\n error[name] = {\n type: exceedMax ? maxType : minType,\n message,\n ref,\n ...appendErrorsCurry(exceedMax ? maxType : minType, message),\n };\n };\n if (isFieldArray\n ? !Array.isArray(inputValue) || !inputValue.length\n : required &&\n ((!isRadioOrCheckbox && (isEmpty || isNullOrUndefined(inputValue))) ||\n (isBoolean(inputValue) && !inputValue) ||\n (isCheckBox && !getCheckboxValue(refs).isValid) ||\n (isRadio && !getRadioValue(refs).isValid))) {\n const { value, message } = isMessage(required)\n ? { value: !!required, message: required }\n : getValueAndMessage(required);\n if (value) {\n error[name] = {\n type: INPUT_VALIDATION_RULES.required,\n message,\n ref: inputRef,\n ...appendErrorsCurry(INPUT_VALIDATION_RULES.required, message),\n };\n if (!validateAllFieldCriteria) {\n setCustomValidity(message);\n return error;\n }\n }\n }\n if (!isEmpty && (!isNullOrUndefined(min) || !isNullOrUndefined(max))) {\n let exceedMax;\n let exceedMin;\n const maxOutput = getValueAndMessage(max);\n const minOutput = getValueAndMessage(min);\n if (!isNullOrUndefined(inputValue) && !isNaN(inputValue)) {\n const valueNumber = ref.valueAsNumber ||\n (inputValue ? +inputValue : inputValue);\n if (!isNullOrUndefined(maxOutput.value)) {\n exceedMax = valueNumber > maxOutput.value;\n }\n if (!isNullOrUndefined(minOutput.value)) {\n exceedMin = valueNumber < minOutput.value;\n }\n }\n else {\n const valueDate = ref.valueAsDate || new Date(inputValue);\n const convertTimeToDate = (time) => new Date(new Date().toDateString() + ' ' + time);\n const isTime = ref.type == 'time';\n const isWeek = ref.type == 'week';\n if (isString(maxOutput.value) && inputValue) {\n exceedMax = isTime\n ? convertTimeToDate(inputValue) > convertTimeToDate(maxOutput.value)\n : isWeek\n ? inputValue > maxOutput.value\n : valueDate > new Date(maxOutput.value);\n }\n if (isString(minOutput.value) && inputValue) {\n exceedMin = isTime\n ? convertTimeToDate(inputValue) < convertTimeToDate(minOutput.value)\n : isWeek\n ? inputValue < minOutput.value\n : valueDate < new Date(minOutput.value);\n }\n }\n if (exceedMax || exceedMin) {\n getMinMaxMessage(!!exceedMax, maxOutput.message, minOutput.message, INPUT_VALIDATION_RULES.max, INPUT_VALIDATION_RULES.min);\n if (!validateAllFieldCriteria) {\n setCustomValidity(error[name].message);\n return error;\n }\n }\n }\n if ((maxLength || minLength) &&\n !isEmpty &&\n (isString(inputValue) || (isFieldArray && Array.isArray(inputValue)))) {\n const maxLengthOutput = getValueAndMessage(maxLength);\n const minLengthOutput = getValueAndMessage(minLength);\n const exceedMax = !isNullOrUndefined(maxLengthOutput.value) &&\n inputValue.length > +maxLengthOutput.value;\n const exceedMin = !isNullOrUndefined(minLengthOutput.value) &&\n inputValue.length < +minLengthOutput.value;\n if (exceedMax || exceedMin) {\n getMinMaxMessage(exceedMax, maxLengthOutput.message, minLengthOutput.message);\n if (!validateAllFieldCriteria) {\n setCustomValidity(error[name].message);\n return error;\n }\n }\n }\n if (pattern && !isEmpty && isString(inputValue)) {\n const { value: patternValue, message } = getValueAndMessage(pattern);\n if (isRegex(patternValue) && !inputValue.match(patternValue)) {\n error[name] = {\n type: INPUT_VALIDATION_RULES.pattern,\n message,\n ref,\n ...appendErrorsCurry(INPUT_VALIDATION_RULES.pattern, message),\n };\n if (!validateAllFieldCriteria) {\n setCustomValidity(message);\n return error;\n }\n }\n }\n if (validate) {\n if (isFunction(validate)) {\n const result = await validate(inputValue, formValues);\n const validateError = getValidateError(result, inputRef);\n if (validateError) {\n error[name] = {\n ...validateError,\n ...appendErrorsCurry(INPUT_VALIDATION_RULES.validate, validateError.message),\n };\n if (!validateAllFieldCriteria) {\n setCustomValidity(validateError.message);\n return error;\n }\n }\n }\n else if (isObject(validate)) {\n let validationResult = {};\n for (const key in validate) {\n if (!isEmptyObject(validationResult) && !validateAllFieldCriteria) {\n break;\n }\n const validateError = getValidateError(await validate[key](inputValue, formValues), inputRef, key);\n if (validateError) {\n validationResult = {\n ...validateError,\n ...appendErrorsCurry(key, validateError.message),\n };\n setCustomValidity(validateError.message);\n if (validateAllFieldCriteria) {\n error[name] = validationResult;\n }\n }\n }\n if (!isEmptyObject(validationResult)) {\n error[name] = {\n ref: inputRef,\n ...validationResult,\n };\n if (!validateAllFieldCriteria) {\n return error;\n }\n }\n }\n }\n setCustomValidity(true);\n return error;\n};\n\nvar appendAt = (data, value) => [\n ...data,\n ...convertToArrayPayload(value),\n];\n\nvar fillEmptyArray = (value) => Array.isArray(value) ? value.map(() => undefined) : undefined;\n\nfunction insert(data, index, value) {\n return [\n ...data.slice(0, index),\n ...convertToArrayPayload(value),\n ...data.slice(index),\n ];\n}\n\nvar moveArrayAt = (data, from, to) => {\n if (!Array.isArray(data)) {\n return [];\n }\n if (isUndefined(data[to])) {\n data[to] = undefined;\n }\n data.splice(to, 0, data.splice(from, 1)[0]);\n return data;\n};\n\nvar prependAt = (data, value) => [\n ...convertToArrayPayload(value),\n ...convertToArrayPayload(data),\n];\n\nfunction removeAtIndexes(data, indexes) {\n let i = 0;\n const temp = [...data];\n for (const index of indexes) {\n temp.splice(index - i, 1);\n i++;\n }\n return compact(temp).length ? temp : [];\n}\nvar removeArrayAt = (data, index) => isUndefined(index)\n ? []\n : removeAtIndexes(data, convertToArrayPayload(index).sort((a, b) => a - b));\n\nvar swapArrayAt = (data, indexA, indexB) => {\n [data[indexA], data[indexB]] = [data[indexB], data[indexA]];\n};\n\nfunction baseGet(object, updatePath) {\n const length = updatePath.slice(0, -1).length;\n let index = 0;\n while (index < length) {\n object = isUndefined(object) ? index++ : object[updatePath[index++]];\n }\n return object;\n}\nfunction isEmptyArray(obj) {\n for (const key in obj) {\n if (obj.hasOwnProperty(key) && !isUndefined(obj[key])) {\n return false;\n }\n }\n return true;\n}\nfunction unset(object, path) {\n const paths = Array.isArray(path)\n ? path\n : isKey(path)\n ? [path]\n : stringToPath(path);\n const childObject = paths.length === 1 ? object : baseGet(object, paths);\n const index = paths.length - 1;\n const key = paths[index];\n if (childObject) {\n delete childObject[key];\n }\n if (index !== 0 &&\n ((isObject(childObject) && isEmptyObject(childObject)) ||\n (Array.isArray(childObject) && isEmptyArray(childObject)))) {\n unset(object, paths.slice(0, -1));\n }\n return object;\n}\n\nvar updateAt = (fieldValues, index, value) => {\n fieldValues[index] = value;\n return fieldValues;\n};\n\n/**\n * A custom hook that exposes convenient methods to perform operations with a list of dynamic inputs that need to be appended, updated, removed etc. • [Demo](https://codesandbox.io/s/react-hook-form-usefieldarray-ssugn) • [Video](https://youtu.be/4MrbfGSFY2A)\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/usefieldarray) • [Demo](https://codesandbox.io/s/react-hook-form-usefieldarray-ssugn)\n *\n * @param props - useFieldArray props\n *\n * @returns methods - functions to manipulate with the Field Arrays (dynamic inputs) {@link UseFieldArrayReturn}\n *\n * @example\n * ```tsx\n * function App() {\n * const { register, control, handleSubmit, reset, trigger, setError } = useForm({\n * defaultValues: {\n * test: []\n * }\n * });\n * const { fields, append } = useFieldArray({\n * control,\n * name: \"test\"\n * });\n *\n * return (\n *
console.log(data))}>\n * {fields.map((item, index) => (\n * \n * ))}\n * \n * \n *
\n * );\n * }\n * ```\n */\nfunction useFieldArray(props) {\n const methods = useFormContext();\n const { control = methods.control, name, keyName = 'id', shouldUnregister, } = props;\n const [fields, setFields] = React.useState(control._getFieldArray(name));\n const ids = React.useRef(control._getFieldArray(name).map(generateId));\n const _fieldIds = React.useRef(fields);\n const _name = React.useRef(name);\n const _actioned = React.useRef(false);\n _name.current = name;\n _fieldIds.current = fields;\n control._names.array.add(name);\n props.rules &&\n control.register(name, props.rules);\n useSubscribe({\n next: ({ values, name: fieldArrayName, }) => {\n if (fieldArrayName === _name.current || !fieldArrayName) {\n const fieldValues = get(values, _name.current);\n if (Array.isArray(fieldValues)) {\n setFields(fieldValues);\n ids.current = fieldValues.map(generateId);\n }\n }\n },\n subject: control._subjects.array,\n });\n const updateValues = React.useCallback((updatedFieldArrayValues) => {\n _actioned.current = true;\n control._updateFieldArray(name, updatedFieldArrayValues);\n }, [control, name]);\n const append = (value, options) => {\n const appendValue = convertToArrayPayload(cloneObject(value));\n const updatedFieldArrayValues = appendAt(control._getFieldArray(name), appendValue);\n control._names.focus = getFocusFieldName(name, updatedFieldArrayValues.length - 1, options);\n ids.current = appendAt(ids.current, appendValue.map(generateId));\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, appendAt, {\n argA: fillEmptyArray(value),\n });\n };\n const prepend = (value, options) => {\n const prependValue = convertToArrayPayload(cloneObject(value));\n const updatedFieldArrayValues = prependAt(control._getFieldArray(name), prependValue);\n control._names.focus = getFocusFieldName(name, 0, options);\n ids.current = prependAt(ids.current, prependValue.map(generateId));\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, prependAt, {\n argA: fillEmptyArray(value),\n });\n };\n const remove = (index) => {\n const updatedFieldArrayValues = removeArrayAt(control._getFieldArray(name), index);\n ids.current = removeArrayAt(ids.current, index);\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, removeArrayAt, {\n argA: index,\n });\n };\n const insert$1 = (index, value, options) => {\n const insertValue = convertToArrayPayload(cloneObject(value));\n const updatedFieldArrayValues = insert(control._getFieldArray(name), index, insertValue);\n control._names.focus = getFocusFieldName(name, index, options);\n ids.current = insert(ids.current, index, insertValue.map(generateId));\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, insert, {\n argA: index,\n argB: fillEmptyArray(value),\n });\n };\n const swap = (indexA, indexB) => {\n const updatedFieldArrayValues = control._getFieldArray(name);\n swapArrayAt(updatedFieldArrayValues, indexA, indexB);\n swapArrayAt(ids.current, indexA, indexB);\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, swapArrayAt, {\n argA: indexA,\n argB: indexB,\n }, false);\n };\n const move = (from, to) => {\n const updatedFieldArrayValues = control._getFieldArray(name);\n moveArrayAt(updatedFieldArrayValues, from, to);\n moveArrayAt(ids.current, from, to);\n updateValues(updatedFieldArrayValues);\n setFields(updatedFieldArrayValues);\n control._updateFieldArray(name, updatedFieldArrayValues, moveArrayAt, {\n argA: from,\n argB: to,\n }, false);\n };\n const update = (index, value) => {\n const updateValue = cloneObject(value);\n const updatedFieldArrayValues = updateAt(control._getFieldArray(name), index, updateValue);\n ids.current = [...updatedFieldArrayValues].map((item, i) => !item || i === index ? generateId() : ids.current[i]);\n updateValues(updatedFieldArrayValues);\n setFields([...updatedFieldArrayValues]);\n control._updateFieldArray(name, updatedFieldArrayValues, updateAt, {\n argA: index,\n argB: updateValue,\n }, true, false);\n };\n const replace = (value) => {\n const updatedFieldArrayValues = convertToArrayPayload(cloneObject(value));\n ids.current = updatedFieldArrayValues.map(generateId);\n updateValues([...updatedFieldArrayValues]);\n setFields([...updatedFieldArrayValues]);\n control._updateFieldArray(name, [...updatedFieldArrayValues], (data) => data, {}, true, false);\n };\n React.useEffect(() => {\n control._state.action = false;\n isWatched(name, control._names) &&\n control._subjects.state.next({\n ...control._formState,\n });\n if (_actioned.current &&\n (!getValidationModes(control._options.mode).isOnSubmit ||\n control._formState.isSubmitted)) {\n if (control._options.resolver) {\n control._executeSchema([name]).then((result) => {\n const error = get(result.errors, name);\n const existingError = get(control._formState.errors, name);\n if (existingError\n ? (!error && existingError.type) ||\n (error &&\n (existingError.type !== error.type ||\n existingError.message !== error.message))\n : error && error.type) {\n error\n ? set(control._formState.errors, name, error)\n : unset(control._formState.errors, name);\n control._subjects.state.next({\n errors: control._formState.errors,\n });\n }\n });\n }\n else {\n const field = get(control._fields, name);\n if (field &&\n field._f &&\n !(getValidationModes(control._options.reValidateMode).isOnSubmit &&\n getValidationModes(control._options.mode).isOnSubmit)) {\n validateField(field, control._formValues, control._options.criteriaMode === VALIDATION_MODE.all, control._options.shouldUseNativeValidation, true).then((error) => !isEmptyObject(error) &&\n control._subjects.state.next({\n errors: updateFieldArrayRootError(control._formState.errors, error, name),\n }));\n }\n }\n }\n control._subjects.values.next({\n name,\n values: { ...control._formValues },\n });\n control._names.focus &&\n iterateFieldsByAction(control._fields, (ref, key) => {\n if (control._names.focus &&\n key.startsWith(control._names.focus) &&\n ref.focus) {\n ref.focus();\n return 1;\n }\n return;\n });\n control._names.focus = '';\n control._updateValid();\n _actioned.current = false;\n }, [fields, name, control]);\n React.useEffect(() => {\n !get(control._formValues, name) && control._updateFieldArray(name);\n return () => {\n (control._options.shouldUnregister || shouldUnregister) &&\n control.unregister(name);\n };\n }, [name, control, keyName, shouldUnregister]);\n return {\n swap: React.useCallback(swap, [updateValues, name, control]),\n move: React.useCallback(move, [updateValues, name, control]),\n prepend: React.useCallback(prepend, [updateValues, name, control]),\n append: React.useCallback(append, [updateValues, name, control]),\n remove: React.useCallback(remove, [updateValues, name, control]),\n insert: React.useCallback(insert$1, [updateValues, name, control]),\n update: React.useCallback(update, [updateValues, name, control]),\n replace: React.useCallback(replace, [updateValues, name, control]),\n fields: React.useMemo(() => fields.map((field, index) => ({\n ...field,\n [keyName]: ids.current[index] || generateId(),\n })), [fields, keyName]),\n };\n}\n\nvar createSubject = () => {\n let _observers = [];\n const next = (value) => {\n for (const observer of _observers) {\n observer.next && observer.next(value);\n }\n };\n const subscribe = (observer) => {\n _observers.push(observer);\n return {\n unsubscribe: () => {\n _observers = _observers.filter((o) => o !== observer);\n },\n };\n };\n const unsubscribe = () => {\n _observers = [];\n };\n return {\n get observers() {\n return _observers;\n },\n next,\n subscribe,\n unsubscribe,\n };\n};\n\nvar isPrimitive = (value) => isNullOrUndefined(value) || !isObjectType(value);\n\nfunction deepEqual(object1, object2) {\n if (isPrimitive(object1) || isPrimitive(object2)) {\n return object1 === object2;\n }\n if (isDateObject(object1) && isDateObject(object2)) {\n return object1.getTime() === object2.getTime();\n }\n const keys1 = Object.keys(object1);\n const keys2 = Object.keys(object2);\n if (keys1.length !== keys2.length) {\n return false;\n }\n for (const key of keys1) {\n const val1 = object1[key];\n if (!keys2.includes(key)) {\n return false;\n }\n if (key !== 'ref') {\n const val2 = object2[key];\n if ((isDateObject(val1) && isDateObject(val2)) ||\n (isObject(val1) && isObject(val2)) ||\n (Array.isArray(val1) && Array.isArray(val2))\n ? !deepEqual(val1, val2)\n : val1 !== val2) {\n return false;\n }\n }\n }\n return true;\n}\n\nvar isMultipleSelect = (element) => element.type === `select-multiple`;\n\nvar isRadioOrCheckbox = (ref) => isRadioInput(ref) || isCheckBoxInput(ref);\n\nvar live = (ref) => isHTMLElement(ref) && ref.isConnected;\n\nvar objectHasFunction = (data) => {\n for (const key in data) {\n if (isFunction(data[key])) {\n return true;\n }\n }\n return false;\n};\n\nfunction markFieldsDirty(data, fields = {}) {\n const isParentNodeArray = Array.isArray(data);\n if (isObject(data) || isParentNodeArray) {\n for (const key in data) {\n if (Array.isArray(data[key]) ||\n (isObject(data[key]) && !objectHasFunction(data[key]))) {\n fields[key] = Array.isArray(data[key]) ? [] : {};\n markFieldsDirty(data[key], fields[key]);\n }\n else if (!isNullOrUndefined(data[key])) {\n fields[key] = true;\n }\n }\n }\n return fields;\n}\nfunction getDirtyFieldsFromDefaultValues(data, formValues, dirtyFieldsFromValues) {\n const isParentNodeArray = Array.isArray(data);\n if (isObject(data) || isParentNodeArray) {\n for (const key in data) {\n if (Array.isArray(data[key]) ||\n (isObject(data[key]) && !objectHasFunction(data[key]))) {\n if (isUndefined(formValues) ||\n isPrimitive(dirtyFieldsFromValues[key])) {\n dirtyFieldsFromValues[key] = Array.isArray(data[key])\n ? markFieldsDirty(data[key], [])\n : { ...markFieldsDirty(data[key]) };\n }\n else {\n getDirtyFieldsFromDefaultValues(data[key], isNullOrUndefined(formValues) ? {} : formValues[key], dirtyFieldsFromValues[key]);\n }\n }\n else {\n dirtyFieldsFromValues[key] = !deepEqual(data[key], formValues[key]);\n }\n }\n }\n return dirtyFieldsFromValues;\n}\nvar getDirtyFields = (defaultValues, formValues) => getDirtyFieldsFromDefaultValues(defaultValues, formValues, markFieldsDirty(formValues));\n\nvar getFieldValueAs = (value, { valueAsNumber, valueAsDate, setValueAs }) => isUndefined(value)\n ? value\n : valueAsNumber\n ? value === ''\n ? NaN\n : value\n ? +value\n : value\n : valueAsDate && isString(value)\n ? new Date(value)\n : setValueAs\n ? setValueAs(value)\n : value;\n\nfunction getFieldValue(_f) {\n const ref = _f.ref;\n if (_f.refs ? _f.refs.every((ref) => ref.disabled) : ref.disabled) {\n return;\n }\n if (isFileInput(ref)) {\n return ref.files;\n }\n if (isRadioInput(ref)) {\n return getRadioValue(_f.refs).value;\n }\n if (isMultipleSelect(ref)) {\n return [...ref.selectedOptions].map(({ value }) => value);\n }\n if (isCheckBoxInput(ref)) {\n return getCheckboxValue(_f.refs).value;\n }\n return getFieldValueAs(isUndefined(ref.value) ? _f.ref.value : ref.value, _f);\n}\n\nvar getResolverOptions = (fieldsNames, _fields, criteriaMode, shouldUseNativeValidation) => {\n const fields = {};\n for (const name of fieldsNames) {\n const field = get(_fields, name);\n field && set(fields, name, field._f);\n }\n return {\n criteriaMode,\n names: [...fieldsNames],\n fields,\n shouldUseNativeValidation,\n };\n};\n\nvar getRuleValue = (rule) => isUndefined(rule)\n ? rule\n : isRegex(rule)\n ? rule.source\n : isObject(rule)\n ? isRegex(rule.value)\n ? rule.value.source\n : rule.value\n : rule;\n\nvar hasValidation = (options) => options.mount &&\n (options.required ||\n options.min ||\n options.max ||\n options.maxLength ||\n options.minLength ||\n options.pattern ||\n options.validate);\n\nfunction schemaErrorLookup(errors, _fields, name) {\n const error = get(errors, name);\n if (error || isKey(name)) {\n return {\n error,\n name,\n };\n }\n const names = name.split('.');\n while (names.length) {\n const fieldName = names.join('.');\n const field = get(_fields, fieldName);\n const foundError = get(errors, fieldName);\n if (field && !Array.isArray(field) && name !== fieldName) {\n return { name };\n }\n if (foundError && foundError.type) {\n return {\n name: fieldName,\n error: foundError,\n };\n }\n names.pop();\n }\n return {\n name,\n };\n}\n\nvar skipValidation = (isBlurEvent, isTouched, isSubmitted, reValidateMode, mode) => {\n if (mode.isOnAll) {\n return false;\n }\n else if (!isSubmitted && mode.isOnTouch) {\n return !(isTouched || isBlurEvent);\n }\n else if (isSubmitted ? reValidateMode.isOnBlur : mode.isOnBlur) {\n return !isBlurEvent;\n }\n else if (isSubmitted ? reValidateMode.isOnChange : mode.isOnChange) {\n return isBlurEvent;\n }\n return true;\n};\n\nvar unsetEmptyArray = (ref, name) => !compact(get(ref, name)).length && unset(ref, name);\n\nconst defaultOptions = {\n mode: VALIDATION_MODE.onSubmit,\n reValidateMode: VALIDATION_MODE.onChange,\n shouldFocusError: true,\n};\nfunction createFormControl(props = {}) {\n let _options = {\n ...defaultOptions,\n ...props,\n };\n let _formState = {\n submitCount: 0,\n isDirty: false,\n isLoading: isFunction(_options.defaultValues),\n isValidating: false,\n isSubmitted: false,\n isSubmitting: false,\n isSubmitSuccessful: false,\n isValid: false,\n touchedFields: {},\n dirtyFields: {},\n validatingFields: {},\n errors: _options.errors || {},\n disabled: _options.disabled || false,\n };\n let _fields = {};\n let _defaultValues = isObject(_options.defaultValues) || isObject(_options.values)\n ? cloneObject(_options.defaultValues || _options.values) || {}\n : {};\n let _formValues = _options.shouldUnregister\n ? {}\n : cloneObject(_defaultValues);\n let _state = {\n action: false,\n mount: false,\n watch: false,\n };\n let _names = {\n mount: new Set(),\n unMount: new Set(),\n array: new Set(),\n watch: new Set(),\n };\n let delayErrorCallback;\n let timer = 0;\n const _proxyFormState = {\n isDirty: false,\n dirtyFields: false,\n validatingFields: false,\n touchedFields: false,\n isValidating: false,\n isValid: false,\n errors: false,\n };\n const _subjects = {\n values: createSubject(),\n array: createSubject(),\n state: createSubject(),\n };\n const validationModeBeforeSubmit = getValidationModes(_options.mode);\n const validationModeAfterSubmit = getValidationModes(_options.reValidateMode);\n const shouldDisplayAllAssociatedErrors = _options.criteriaMode === VALIDATION_MODE.all;\n const debounce = (callback) => (wait) => {\n clearTimeout(timer);\n timer = setTimeout(callback, wait);\n };\n const _updateValid = async (shouldUpdateValid) => {\n if (_proxyFormState.isValid || shouldUpdateValid) {\n const isValid = _options.resolver\n ? isEmptyObject((await _executeSchema()).errors)\n : await executeBuiltInValidation(_fields, true);\n if (isValid !== _formState.isValid) {\n _subjects.state.next({\n isValid,\n });\n }\n }\n };\n const _updateIsValidating = (names, isValidating) => {\n if (_proxyFormState.isValidating || _proxyFormState.validatingFields) {\n (names || Array.from(_names.mount)).forEach((name) => {\n if (name) {\n isValidating\n ? set(_formState.validatingFields, name, isValidating)\n : unset(_formState.validatingFields, name);\n }\n });\n _subjects.state.next({\n validatingFields: _formState.validatingFields,\n isValidating: !isEmptyObject(_formState.validatingFields),\n });\n }\n };\n const _updateFieldArray = (name, values = [], method, args, shouldSetValues = true, shouldUpdateFieldsAndState = true) => {\n if (args && method) {\n _state.action = true;\n if (shouldUpdateFieldsAndState && Array.isArray(get(_fields, name))) {\n const fieldValues = method(get(_fields, name), args.argA, args.argB);\n shouldSetValues && set(_fields, name, fieldValues);\n }\n if (shouldUpdateFieldsAndState &&\n Array.isArray(get(_formState.errors, name))) {\n const errors = method(get(_formState.errors, name), args.argA, args.argB);\n shouldSetValues && set(_formState.errors, name, errors);\n unsetEmptyArray(_formState.errors, name);\n }\n if (_proxyFormState.touchedFields &&\n shouldUpdateFieldsAndState &&\n Array.isArray(get(_formState.touchedFields, name))) {\n const touchedFields = method(get(_formState.touchedFields, name), args.argA, args.argB);\n shouldSetValues && set(_formState.touchedFields, name, touchedFields);\n }\n if (_proxyFormState.dirtyFields) {\n _formState.dirtyFields = getDirtyFields(_defaultValues, _formValues);\n }\n _subjects.state.next({\n name,\n isDirty: _getDirty(name, values),\n dirtyFields: _formState.dirtyFields,\n errors: _formState.errors,\n isValid: _formState.isValid,\n });\n }\n else {\n set(_formValues, name, values);\n }\n };\n const updateErrors = (name, error) => {\n set(_formState.errors, name, error);\n _subjects.state.next({\n errors: _formState.errors,\n });\n };\n const _setErrors = (errors) => {\n _formState.errors = errors;\n _subjects.state.next({\n errors: _formState.errors,\n isValid: false,\n });\n };\n const updateValidAndValue = (name, shouldSkipSetValueAs, value, ref) => {\n const field = get(_fields, name);\n if (field) {\n const defaultValue = get(_formValues, name, isUndefined(value) ? get(_defaultValues, name) : value);\n isUndefined(defaultValue) ||\n (ref && ref.defaultChecked) ||\n shouldSkipSetValueAs\n ? set(_formValues, name, shouldSkipSetValueAs ? defaultValue : getFieldValue(field._f))\n : setFieldValue(name, defaultValue);\n _state.mount && _updateValid();\n }\n };\n const updateTouchAndDirty = (name, fieldValue, isBlurEvent, shouldDirty, shouldRender) => {\n let shouldUpdateField = false;\n let isPreviousDirty = false;\n const output = {\n name,\n };\n const disabledField = !!(get(_fields, name) && get(_fields, name)._f.disabled);\n if (!isBlurEvent || shouldDirty) {\n if (_proxyFormState.isDirty) {\n isPreviousDirty = _formState.isDirty;\n _formState.isDirty = output.isDirty = _getDirty();\n shouldUpdateField = isPreviousDirty !== output.isDirty;\n }\n const isCurrentFieldPristine = disabledField || deepEqual(get(_defaultValues, name), fieldValue);\n isPreviousDirty = !!(!disabledField && get(_formState.dirtyFields, name));\n isCurrentFieldPristine || disabledField\n ? unset(_formState.dirtyFields, name)\n : set(_formState.dirtyFields, name, true);\n output.dirtyFields = _formState.dirtyFields;\n shouldUpdateField =\n shouldUpdateField ||\n (_proxyFormState.dirtyFields &&\n isPreviousDirty !== !isCurrentFieldPristine);\n }\n if (isBlurEvent) {\n const isPreviousFieldTouched = get(_formState.touchedFields, name);\n if (!isPreviousFieldTouched) {\n set(_formState.touchedFields, name, isBlurEvent);\n output.touchedFields = _formState.touchedFields;\n shouldUpdateField =\n shouldUpdateField ||\n (_proxyFormState.touchedFields &&\n isPreviousFieldTouched !== isBlurEvent);\n }\n }\n shouldUpdateField && shouldRender && _subjects.state.next(output);\n return shouldUpdateField ? output : {};\n };\n const shouldRenderByError = (name, isValid, error, fieldState) => {\n const previousFieldError = get(_formState.errors, name);\n const shouldUpdateValid = _proxyFormState.isValid &&\n isBoolean(isValid) &&\n _formState.isValid !== isValid;\n if (props.delayError && error) {\n delayErrorCallback = debounce(() => updateErrors(name, error));\n delayErrorCallback(props.delayError);\n }\n else {\n clearTimeout(timer);\n delayErrorCallback = null;\n error\n ? set(_formState.errors, name, error)\n : unset(_formState.errors, name);\n }\n if ((error ? !deepEqual(previousFieldError, error) : previousFieldError) ||\n !isEmptyObject(fieldState) ||\n shouldUpdateValid) {\n const updatedFormState = {\n ...fieldState,\n ...(shouldUpdateValid && isBoolean(isValid) ? { isValid } : {}),\n errors: _formState.errors,\n name,\n };\n _formState = {\n ..._formState,\n ...updatedFormState,\n };\n _subjects.state.next(updatedFormState);\n }\n };\n const _executeSchema = async (name) => {\n _updateIsValidating(name, true);\n const result = await _options.resolver(_formValues, _options.context, getResolverOptions(name || _names.mount, _fields, _options.criteriaMode, _options.shouldUseNativeValidation));\n _updateIsValidating(name);\n return result;\n };\n const executeSchemaAndUpdateState = async (names) => {\n const { errors } = await _executeSchema(names);\n if (names) {\n for (const name of names) {\n const error = get(errors, name);\n error\n ? set(_formState.errors, name, error)\n : unset(_formState.errors, name);\n }\n }\n else {\n _formState.errors = errors;\n }\n return errors;\n };\n const executeBuiltInValidation = async (fields, shouldOnlyCheckValid, context = {\n valid: true,\n }) => {\n for (const name in fields) {\n const field = fields[name];\n if (field) {\n const { _f, ...fieldValue } = field;\n if (_f) {\n const isFieldArrayRoot = _names.array.has(_f.name);\n _updateIsValidating([name], true);\n const fieldError = await validateField(field, _formValues, shouldDisplayAllAssociatedErrors, _options.shouldUseNativeValidation && !shouldOnlyCheckValid, isFieldArrayRoot);\n _updateIsValidating([name]);\n if (fieldError[_f.name]) {\n context.valid = false;\n if (shouldOnlyCheckValid) {\n break;\n }\n }\n !shouldOnlyCheckValid &&\n (get(fieldError, _f.name)\n ? isFieldArrayRoot\n ? updateFieldArrayRootError(_formState.errors, fieldError, _f.name)\n : set(_formState.errors, _f.name, fieldError[_f.name])\n : unset(_formState.errors, _f.name));\n }\n fieldValue &&\n (await executeBuiltInValidation(fieldValue, shouldOnlyCheckValid, context));\n }\n }\n return context.valid;\n };\n const _removeUnmounted = () => {\n for (const name of _names.unMount) {\n const field = get(_fields, name);\n field &&\n (field._f.refs\n ? field._f.refs.every((ref) => !live(ref))\n : !live(field._f.ref)) &&\n unregister(name);\n }\n _names.unMount = new Set();\n };\n const _getDirty = (name, data) => (name && data && set(_formValues, name, data),\n !deepEqual(getValues(), _defaultValues));\n const _getWatch = (names, defaultValue, isGlobal) => generateWatchOutput(names, _names, {\n ...(_state.mount\n ? _formValues\n : isUndefined(defaultValue)\n ? _defaultValues\n : isString(names)\n ? { [names]: defaultValue }\n : defaultValue),\n }, isGlobal, defaultValue);\n const _getFieldArray = (name) => compact(get(_state.mount ? _formValues : _defaultValues, name, props.shouldUnregister ? get(_defaultValues, name, []) : []));\n const setFieldValue = (name, value, options = {}) => {\n const field = get(_fields, name);\n let fieldValue = value;\n if (field) {\n const fieldReference = field._f;\n if (fieldReference) {\n !fieldReference.disabled &&\n set(_formValues, name, getFieldValueAs(value, fieldReference));\n fieldValue =\n isHTMLElement(fieldReference.ref) && isNullOrUndefined(value)\n ? ''\n : value;\n if (isMultipleSelect(fieldReference.ref)) {\n [...fieldReference.ref.options].forEach((optionRef) => (optionRef.selected = fieldValue.includes(optionRef.value)));\n }\n else if (fieldReference.refs) {\n if (isCheckBoxInput(fieldReference.ref)) {\n fieldReference.refs.length > 1\n ? fieldReference.refs.forEach((checkboxRef) => (!checkboxRef.defaultChecked || !checkboxRef.disabled) &&\n (checkboxRef.checked = Array.isArray(fieldValue)\n ? !!fieldValue.find((data) => data === checkboxRef.value)\n : fieldValue === checkboxRef.value))\n : fieldReference.refs[0] &&\n (fieldReference.refs[0].checked = !!fieldValue);\n }\n else {\n fieldReference.refs.forEach((radioRef) => (radioRef.checked = radioRef.value === fieldValue));\n }\n }\n else if (isFileInput(fieldReference.ref)) {\n fieldReference.ref.value = '';\n }\n else {\n fieldReference.ref.value = fieldValue;\n if (!fieldReference.ref.type) {\n _subjects.values.next({\n name,\n values: { ..._formValues },\n });\n }\n }\n }\n }\n (options.shouldDirty || options.shouldTouch) &&\n updateTouchAndDirty(name, fieldValue, options.shouldTouch, options.shouldDirty, true);\n options.shouldValidate && trigger(name);\n };\n const setValues = (name, value, options) => {\n for (const fieldKey in value) {\n const fieldValue = value[fieldKey];\n const fieldName = `${name}.${fieldKey}`;\n const field = get(_fields, fieldName);\n (_names.array.has(name) ||\n !isPrimitive(fieldValue) ||\n (field && !field._f)) &&\n !isDateObject(fieldValue)\n ? setValues(fieldName, fieldValue, options)\n : setFieldValue(fieldName, fieldValue, options);\n }\n };\n const setValue = (name, value, options = {}) => {\n const field = get(_fields, name);\n const isFieldArray = _names.array.has(name);\n const cloneValue = cloneObject(value);\n set(_formValues, name, cloneValue);\n if (isFieldArray) {\n _subjects.array.next({\n name,\n values: { ..._formValues },\n });\n if ((_proxyFormState.isDirty || _proxyFormState.dirtyFields) &&\n options.shouldDirty) {\n _subjects.state.next({\n name,\n dirtyFields: getDirtyFields(_defaultValues, _formValues),\n isDirty: _getDirty(name, cloneValue),\n });\n }\n }\n else {\n field && !field._f && !isNullOrUndefined(cloneValue)\n ? setValues(name, cloneValue, options)\n : setFieldValue(name, cloneValue, options);\n }\n isWatched(name, _names) && _subjects.state.next({ ..._formState });\n _subjects.values.next({\n name: _state.mount ? name : undefined,\n values: { ..._formValues },\n });\n };\n const onChange = async (event) => {\n _state.mount = true;\n const target = event.target;\n let name = target.name;\n let isFieldValueUpdated = true;\n const field = get(_fields, name);\n const getCurrentFieldValue = () => target.type ? getFieldValue(field._f) : getEventValue(event);\n const _updateIsFieldValueUpdated = (fieldValue) => {\n isFieldValueUpdated =\n Number.isNaN(fieldValue) ||\n fieldValue === get(_formValues, name, fieldValue);\n };\n if (field) {\n let error;\n let isValid;\n const fieldValue = getCurrentFieldValue();\n const isBlurEvent = event.type === EVENTS.BLUR || event.type === EVENTS.FOCUS_OUT;\n const shouldSkipValidation = (!hasValidation(field._f) &&\n !_options.resolver &&\n !get(_formState.errors, name) &&\n !field._f.deps) ||\n skipValidation(isBlurEvent, get(_formState.touchedFields, name), _formState.isSubmitted, validationModeAfterSubmit, validationModeBeforeSubmit);\n const watched = isWatched(name, _names, isBlurEvent);\n set(_formValues, name, fieldValue);\n if (isBlurEvent) {\n field._f.onBlur && field._f.onBlur(event);\n delayErrorCallback && delayErrorCallback(0);\n }\n else if (field._f.onChange) {\n field._f.onChange(event);\n }\n const fieldState = updateTouchAndDirty(name, fieldValue, isBlurEvent, false);\n const shouldRender = !isEmptyObject(fieldState) || watched;\n !isBlurEvent &&\n _subjects.values.next({\n name,\n type: event.type,\n values: { ..._formValues },\n });\n if (shouldSkipValidation) {\n _proxyFormState.isValid && _updateValid();\n return (shouldRender &&\n _subjects.state.next({ name, ...(watched ? {} : fieldState) }));\n }\n !isBlurEvent && watched && _subjects.state.next({ ..._formState });\n if (_options.resolver) {\n const { errors } = await _executeSchema([name]);\n _updateIsFieldValueUpdated(fieldValue);\n if (isFieldValueUpdated) {\n const previousErrorLookupResult = schemaErrorLookup(_formState.errors, _fields, name);\n const errorLookupResult = schemaErrorLookup(errors, _fields, previousErrorLookupResult.name || name);\n error = errorLookupResult.error;\n name = errorLookupResult.name;\n isValid = isEmptyObject(errors);\n }\n }\n else {\n _updateIsValidating([name], true);\n error = (await validateField(field, _formValues, shouldDisplayAllAssociatedErrors, _options.shouldUseNativeValidation))[name];\n _updateIsValidating([name]);\n _updateIsFieldValueUpdated(fieldValue);\n if (isFieldValueUpdated) {\n if (error) {\n isValid = false;\n }\n else if (_proxyFormState.isValid) {\n isValid = await executeBuiltInValidation(_fields, true);\n }\n }\n }\n if (isFieldValueUpdated) {\n field._f.deps &&\n trigger(field._f.deps);\n shouldRenderByError(name, isValid, error, fieldState);\n }\n }\n };\n const _focusInput = (ref, key) => {\n if (get(_formState.errors, key) && ref.focus) {\n ref.focus();\n return 1;\n }\n return;\n };\n const trigger = async (name, options = {}) => {\n let isValid;\n let validationResult;\n const fieldNames = convertToArrayPayload(name);\n if (_options.resolver) {\n const errors = await executeSchemaAndUpdateState(isUndefined(name) ? name : fieldNames);\n isValid = isEmptyObject(errors);\n validationResult = name\n ? !fieldNames.some((name) => get(errors, name))\n : isValid;\n }\n else if (name) {\n validationResult = (await Promise.all(fieldNames.map(async (fieldName) => {\n const field = get(_fields, fieldName);\n return await executeBuiltInValidation(field && field._f ? { [fieldName]: field } : field);\n }))).every(Boolean);\n !(!validationResult && !_formState.isValid) && _updateValid();\n }\n else {\n validationResult = isValid = await executeBuiltInValidation(_fields);\n }\n _subjects.state.next({\n ...(!isString(name) ||\n (_proxyFormState.isValid && isValid !== _formState.isValid)\n ? {}\n : { name }),\n ...(_options.resolver || !name ? { isValid } : {}),\n errors: _formState.errors,\n });\n options.shouldFocus &&\n !validationResult &&\n iterateFieldsByAction(_fields, _focusInput, name ? fieldNames : _names.mount);\n return validationResult;\n };\n const getValues = (fieldNames) => {\n const values = {\n ...(_state.mount ? _formValues : _defaultValues),\n };\n return isUndefined(fieldNames)\n ? values\n : isString(fieldNames)\n ? get(values, fieldNames)\n : fieldNames.map((name) => get(values, name));\n };\n const getFieldState = (name, formState) => ({\n invalid: !!get((formState || _formState).errors, name),\n isDirty: !!get((formState || _formState).dirtyFields, name),\n isTouched: !!get((formState || _formState).touchedFields, name),\n isValidating: !!get((formState || _formState).validatingFields, name),\n error: get((formState || _formState).errors, name),\n });\n const clearErrors = (name) => {\n name &&\n convertToArrayPayload(name).forEach((inputName) => unset(_formState.errors, inputName));\n _subjects.state.next({\n errors: name ? _formState.errors : {},\n });\n };\n const setError = (name, error, options) => {\n const ref = (get(_fields, name, { _f: {} })._f || {}).ref;\n const currentError = get(_formState.errors, name) || {};\n // Don't override existing error messages elsewhere in the object tree.\n const { ref: currentRef, message, type, ...restOfErrorTree } = currentError;\n set(_formState.errors, name, {\n ...restOfErrorTree,\n ...error,\n ref,\n });\n _subjects.state.next({\n name,\n errors: _formState.errors,\n isValid: false,\n });\n options && options.shouldFocus && ref && ref.focus && ref.focus();\n };\n const watch = (name, defaultValue) => isFunction(name)\n ? _subjects.values.subscribe({\n next: (payload) => name(_getWatch(undefined, defaultValue), payload),\n })\n : _getWatch(name, defaultValue, true);\n const unregister = (name, options = {}) => {\n for (const fieldName of name ? convertToArrayPayload(name) : _names.mount) {\n _names.mount.delete(fieldName);\n _names.array.delete(fieldName);\n if (!options.keepValue) {\n unset(_fields, fieldName);\n unset(_formValues, fieldName);\n }\n !options.keepError && unset(_formState.errors, fieldName);\n !options.keepDirty && unset(_formState.dirtyFields, fieldName);\n !options.keepTouched && unset(_formState.touchedFields, fieldName);\n !options.keepIsValidating &&\n unset(_formState.validatingFields, fieldName);\n !_options.shouldUnregister &&\n !options.keepDefaultValue &&\n unset(_defaultValues, fieldName);\n }\n _subjects.values.next({\n values: { ..._formValues },\n });\n _subjects.state.next({\n ..._formState,\n ...(!options.keepDirty ? {} : { isDirty: _getDirty() }),\n });\n !options.keepIsValid && _updateValid();\n };\n const _updateDisabledField = ({ disabled, name, field, fields, value, }) => {\n if ((isBoolean(disabled) && _state.mount) || !!disabled) {\n const inputValue = disabled\n ? undefined\n : isUndefined(value)\n ? getFieldValue(field ? field._f : get(fields, name)._f)\n : value;\n set(_formValues, name, inputValue);\n updateTouchAndDirty(name, inputValue, false, false, true);\n }\n };\n const register = (name, options = {}) => {\n let field = get(_fields, name);\n const disabledIsDefined = isBoolean(options.disabled);\n set(_fields, name, {\n ...(field || {}),\n _f: {\n ...(field && field._f ? field._f : { ref: { name } }),\n name,\n mount: true,\n ...options,\n },\n });\n _names.mount.add(name);\n if (field) {\n _updateDisabledField({\n field,\n disabled: options.disabled,\n name,\n value: options.value,\n });\n }\n else {\n updateValidAndValue(name, true, options.value);\n }\n return {\n ...(disabledIsDefined ? { disabled: options.disabled } : {}),\n ...(_options.progressive\n ? {\n required: !!options.required,\n min: getRuleValue(options.min),\n max: getRuleValue(options.max),\n minLength: getRuleValue(options.minLength),\n maxLength: getRuleValue(options.maxLength),\n pattern: getRuleValue(options.pattern),\n }\n : {}),\n name,\n onChange,\n onBlur: onChange,\n ref: (ref) => {\n if (ref) {\n register(name, options);\n field = get(_fields, name);\n const fieldRef = isUndefined(ref.value)\n ? ref.querySelectorAll\n ? ref.querySelectorAll('input,select,textarea')[0] || ref\n : ref\n : ref;\n const radioOrCheckbox = isRadioOrCheckbox(fieldRef);\n const refs = field._f.refs || [];\n if (radioOrCheckbox\n ? refs.find((option) => option === fieldRef)\n : fieldRef === field._f.ref) {\n return;\n }\n set(_fields, name, {\n _f: {\n ...field._f,\n ...(radioOrCheckbox\n ? {\n refs: [\n ...refs.filter(live),\n fieldRef,\n ...(Array.isArray(get(_defaultValues, name)) ? [{}] : []),\n ],\n ref: { type: fieldRef.type, name },\n }\n : { ref: fieldRef }),\n },\n });\n updateValidAndValue(name, false, undefined, fieldRef);\n }\n else {\n field = get(_fields, name, {});\n if (field._f) {\n field._f.mount = false;\n }\n (_options.shouldUnregister || options.shouldUnregister) &&\n !(isNameInFieldArray(_names.array, name) && _state.action) &&\n _names.unMount.add(name);\n }\n },\n };\n };\n const _focusError = () => _options.shouldFocusError &&\n iterateFieldsByAction(_fields, _focusInput, _names.mount);\n const _disableForm = (disabled) => {\n if (isBoolean(disabled)) {\n _subjects.state.next({ disabled });\n iterateFieldsByAction(_fields, (ref, name) => {\n const currentField = get(_fields, name);\n if (currentField) {\n ref.disabled = currentField._f.disabled || disabled;\n if (Array.isArray(currentField._f.refs)) {\n currentField._f.refs.forEach((inputRef) => {\n inputRef.disabled = currentField._f.disabled || disabled;\n });\n }\n }\n }, 0, false);\n }\n };\n const handleSubmit = (onValid, onInvalid) => async (e) => {\n let onValidError = undefined;\n if (e) {\n e.preventDefault && e.preventDefault();\n e.persist && e.persist();\n }\n let fieldValues = cloneObject(_formValues);\n _subjects.state.next({\n isSubmitting: true,\n });\n if (_options.resolver) {\n const { errors, values } = await _executeSchema();\n _formState.errors = errors;\n fieldValues = values;\n }\n else {\n await executeBuiltInValidation(_fields);\n }\n unset(_formState.errors, 'root');\n if (isEmptyObject(_formState.errors)) {\n _subjects.state.next({\n errors: {},\n });\n try {\n await onValid(fieldValues, e);\n }\n catch (error) {\n onValidError = error;\n }\n }\n else {\n if (onInvalid) {\n await onInvalid({ ..._formState.errors }, e);\n }\n _focusError();\n setTimeout(_focusError);\n }\n _subjects.state.next({\n isSubmitted: true,\n isSubmitting: false,\n isSubmitSuccessful: isEmptyObject(_formState.errors) && !onValidError,\n submitCount: _formState.submitCount + 1,\n errors: _formState.errors,\n });\n if (onValidError) {\n throw onValidError;\n }\n };\n const resetField = (name, options = {}) => {\n if (get(_fields, name)) {\n if (isUndefined(options.defaultValue)) {\n setValue(name, cloneObject(get(_defaultValues, name)));\n }\n else {\n setValue(name, options.defaultValue);\n set(_defaultValues, name, cloneObject(options.defaultValue));\n }\n if (!options.keepTouched) {\n unset(_formState.touchedFields, name);\n }\n if (!options.keepDirty) {\n unset(_formState.dirtyFields, name);\n _formState.isDirty = options.defaultValue\n ? _getDirty(name, cloneObject(get(_defaultValues, name)))\n : _getDirty();\n }\n if (!options.keepError) {\n unset(_formState.errors, name);\n _proxyFormState.isValid && _updateValid();\n }\n _subjects.state.next({ ..._formState });\n }\n };\n const _reset = (formValues, keepStateOptions = {}) => {\n const updatedValues = formValues ? cloneObject(formValues) : _defaultValues;\n const cloneUpdatedValues = cloneObject(updatedValues);\n const isEmptyResetValues = isEmptyObject(formValues);\n const values = isEmptyResetValues ? _defaultValues : cloneUpdatedValues;\n if (!keepStateOptions.keepDefaultValues) {\n _defaultValues = updatedValues;\n }\n if (!keepStateOptions.keepValues) {\n if (keepStateOptions.keepDirtyValues) {\n for (const fieldName of _names.mount) {\n get(_formState.dirtyFields, fieldName)\n ? set(values, fieldName, get(_formValues, fieldName))\n : setValue(fieldName, get(values, fieldName));\n }\n }\n else {\n if (isWeb && isUndefined(formValues)) {\n for (const name of _names.mount) {\n const field = get(_fields, name);\n if (field && field._f) {\n const fieldReference = Array.isArray(field._f.refs)\n ? field._f.refs[0]\n : field._f.ref;\n if (isHTMLElement(fieldReference)) {\n const form = fieldReference.closest('form');\n if (form) {\n form.reset();\n break;\n }\n }\n }\n }\n }\n _fields = {};\n }\n _formValues = props.shouldUnregister\n ? keepStateOptions.keepDefaultValues\n ? cloneObject(_defaultValues)\n : {}\n : cloneObject(values);\n _subjects.array.next({\n values: { ...values },\n });\n _subjects.values.next({\n values: { ...values },\n });\n }\n _names = {\n mount: keepStateOptions.keepDirtyValues ? _names.mount : new Set(),\n unMount: new Set(),\n array: new Set(),\n watch: new Set(),\n watchAll: false,\n focus: '',\n };\n _state.mount =\n !_proxyFormState.isValid ||\n !!keepStateOptions.keepIsValid ||\n !!keepStateOptions.keepDirtyValues;\n _state.watch = !!props.shouldUnregister;\n _subjects.state.next({\n submitCount: keepStateOptions.keepSubmitCount\n ? _formState.submitCount\n : 0,\n isDirty: isEmptyResetValues\n ? false\n : keepStateOptions.keepDirty\n ? _formState.isDirty\n : !!(keepStateOptions.keepDefaultValues &&\n !deepEqual(formValues, _defaultValues)),\n isSubmitted: keepStateOptions.keepIsSubmitted\n ? _formState.isSubmitted\n : false,\n dirtyFields: isEmptyResetValues\n ? []\n : keepStateOptions.keepDirtyValues\n ? keepStateOptions.keepDefaultValues && _formValues\n ? getDirtyFields(_defaultValues, _formValues)\n : _formState.dirtyFields\n : keepStateOptions.keepDefaultValues && formValues\n ? getDirtyFields(_defaultValues, formValues)\n : {},\n touchedFields: keepStateOptions.keepTouched\n ? _formState.touchedFields\n : {},\n errors: keepStateOptions.keepErrors ? _formState.errors : {},\n isSubmitSuccessful: keepStateOptions.keepIsSubmitSuccessful\n ? _formState.isSubmitSuccessful\n : false,\n isSubmitting: false,\n });\n };\n const reset = (formValues, keepStateOptions) => _reset(isFunction(formValues)\n ? formValues(_formValues)\n : formValues, keepStateOptions);\n const setFocus = (name, options = {}) => {\n const field = get(_fields, name);\n const fieldReference = field && field._f;\n if (fieldReference) {\n const fieldRef = fieldReference.refs\n ? fieldReference.refs[0]\n : fieldReference.ref;\n if (fieldRef.focus) {\n fieldRef.focus();\n options.shouldSelect && fieldRef.select();\n }\n }\n };\n const _updateFormState = (updatedFormState) => {\n _formState = {\n ..._formState,\n ...updatedFormState,\n };\n };\n const _resetDefaultValues = () => isFunction(_options.defaultValues) &&\n _options.defaultValues().then((values) => {\n reset(values, _options.resetOptions);\n _subjects.state.next({\n isLoading: false,\n });\n });\n return {\n control: {\n register,\n unregister,\n getFieldState,\n handleSubmit,\n setError,\n _executeSchema,\n _getWatch,\n _getDirty,\n _updateValid,\n _removeUnmounted,\n _updateFieldArray,\n _updateDisabledField,\n _getFieldArray,\n _reset,\n _resetDefaultValues,\n _updateFormState,\n _disableForm,\n _subjects,\n _proxyFormState,\n _setErrors,\n get _fields() {\n return _fields;\n },\n get _formValues() {\n return _formValues;\n },\n get _state() {\n return _state;\n },\n set _state(value) {\n _state = value;\n },\n get _defaultValues() {\n return _defaultValues;\n },\n get _names() {\n return _names;\n },\n set _names(value) {\n _names = value;\n },\n get _formState() {\n return _formState;\n },\n set _formState(value) {\n _formState = value;\n },\n get _options() {\n return _options;\n },\n set _options(value) {\n _options = {\n ..._options,\n ...value,\n };\n },\n },\n trigger,\n register,\n handleSubmit,\n watch,\n setValue,\n getValues,\n reset,\n resetField,\n clearErrors,\n unregister,\n setError,\n setFocus,\n getFieldState,\n };\n}\n\n/**\n * Custom hook to manage the entire form.\n *\n * @remarks\n * [API](https://react-hook-form.com/docs/useform) • [Demo](https://codesandbox.io/s/react-hook-form-get-started-ts-5ksmm) • [Video](https://www.youtube.com/watch?v=RkXv4AXXC_4)\n *\n * @param props - form configuration and validation parameters.\n *\n * @returns methods - individual functions to manage the form state. {@link UseFormReturn}\n *\n * @example\n * ```tsx\n * function App() {\n * const { register, handleSubmit, watch, formState: { errors } } = useForm();\n * const onSubmit = data => console.log(data);\n *\n * console.log(watch(\"example\"));\n *\n * return (\n *
\n * \n * \n * {errors.exampleRequired && This field is required}\n * \n *
\n * );\n * }\n * ```\n */\nfunction useForm(props = {}) {\n const _formControl = React.useRef();\n const _values = React.useRef();\n const [formState, updateFormState] = React.useState({\n isDirty: false,\n isValidating: false,\n isLoading: isFunction(props.defaultValues),\n isSubmitted: false,\n isSubmitting: false,\n isSubmitSuccessful: false,\n isValid: false,\n submitCount: 0,\n dirtyFields: {},\n touchedFields: {},\n validatingFields: {},\n errors: props.errors || {},\n disabled: props.disabled || false,\n defaultValues: isFunction(props.defaultValues)\n ? undefined\n : props.defaultValues,\n });\n if (!_formControl.current) {\n _formControl.current = {\n ...createFormControl(props),\n formState,\n };\n }\n const control = _formControl.current.control;\n control._options = props;\n useSubscribe({\n subject: control._subjects.state,\n next: (value) => {\n if (shouldRenderFormState(value, control._proxyFormState, control._updateFormState, true)) {\n updateFormState({ ...control._formState });\n }\n },\n });\n React.useEffect(() => control._disableForm(props.disabled), [control, props.disabled]);\n React.useEffect(() => {\n if (control._proxyFormState.isDirty) {\n const isDirty = control._getDirty();\n if (isDirty !== formState.isDirty) {\n control._subjects.state.next({\n isDirty,\n });\n }\n }\n }, [control, formState.isDirty]);\n React.useEffect(() => {\n if (props.values && !deepEqual(props.values, _values.current)) {\n control._reset(props.values, control._options.resetOptions);\n _values.current = props.values;\n updateFormState((state) => ({ ...state }));\n }\n else {\n control._resetDefaultValues();\n }\n }, [props.values, control]);\n React.useEffect(() => {\n if (props.errors) {\n control._setErrors(props.errors);\n }\n }, [props.errors, control]);\n React.useEffect(() => {\n if (!control._state.mount) {\n control._updateValid();\n control._state.mount = true;\n }\n if (control._state.watch) {\n control._state.watch = false;\n control._subjects.state.next({ ...control._formState });\n }\n control._removeUnmounted();\n });\n React.useEffect(() => {\n props.shouldUnregister &&\n control._subjects.values.next({\n values: control._getWatch(),\n });\n }, [props.shouldUnregister, control]);\n _formControl.current.formState = getProxyFormState(formState, control);\n return _formControl.current;\n}\n\nexport { Controller, Form, FormProvider, appendErrors, get, set, useController, useFieldArray, useForm, useFormContext, useFormState, useWatch };\n//# sourceMappingURL=index.esm.mjs.map\n"],"names":["isCheckBoxInput","element","type","isDateObject","value","Date","isNullOrUndefined","isObjectType","isObject","Array","isArray","getEventValue","event","target","checked","isNameInFieldArray","names","name","has","substring","search","getNodeParentName","isPlainObject","tempObject","prototypeCopy","constructor","prototype","hasOwnProperty","isWeb","window","HTMLElement","document","cloneObject","data","copy","Set","Blob","FileList","key","compact","filter","Boolean","isUndefined","val","get","object","path","defaultValue","result","split","reduce","isBoolean","isKey","test","stringToPath","input","replace","set","index","tempPath","length","lastIndex","newValue","objValue","isNaN","EVENTS","BLUR","FOCUS_OUT","CHANGE","VALIDATION_MODE","onBlur","onChange","onSubmit","onTouched","all","INPUT_VALIDATION_RULES","HookFormContext","React","createContext","useFormContext","useContext","FormProvider","props","children","createElement","Provider","getProxyFormState","formState","control","localProxyFormState","isRoot","defaultValues","_defaultValues","Object","defineProperty","_key","_proxyFormState","isEmptyObject","keys","shouldRenderFormState","formStateData","updateFormState","find","convertToArrayPayload","shouldSubscribeByName","signalName","exact","some","currentName","startsWith","useSubscribe","_props","useRef","current","useEffect","subscription","disabled","subject","subscribe","next","unsubscribe","isString","generateWatchOutput","_names","formValues","isGlobal","watch","add","map","fieldName","watchAll","useController","methods","shouldUnregister","isArrayField","array","_name","_subjects","values","updateValue","_formValues","useState","_getWatch","_removeUnmounted","useWatch","_formState","_mounted","_localProxyFormState","isDirty","isLoading","dirtyFields","touchedFields","validatingFields","isValidating","isValid","errors","_updateFormState","state","_updateValid","useFormState","_registerProps","register","rules","_shouldUnregisterField","_options","updateMounted","field","_fields","_f","mount","_state","action","unregister","_updateDisabledField","fields","useCallback","ref","elm","focus","select","setCustomValidity","message","reportValidity","fieldState","defineProperties","invalid","enumerable","isTouched","error","Controller","render","appendErrors","validateAllFieldCriteria","types","getValidationModes","mode","isOnSubmit","isOnBlur","isOnChange","isOnAll","isOnTouch","isWatched","isBlurEvent","watchName","slice","iterateFieldsByAction","fieldsNames","abortEarly","currentField","refs","updateFieldArrayRootError","fieldArrayErrors","isFileInput","isFunction","isHTMLElement","owner","ownerDocument","defaultView","isMessage","isRadioInput","isRegex","RegExp","defaultResult","validResult","getCheckboxValue","options","option","attributes","defaultReturn","getRadioValue","previous","getValidateError","every","getValueAndMessage","validationData","validateField","async","shouldUseNativeValidation","isFieldArray","required","maxLength","minLength","min","max","pattern","validate","valueAsNumber","inputValue","inputRef","isRadio","isCheckBox","isRadioOrCheckbox","isEmpty","appendErrorsCurry","bind","getMinMaxMessage","exceedMax","maxLengthMessage","minLengthMessage","maxType","minType","exceedMin","maxOutput","minOutput","valueDate","valueAsDate","convertTimeToDate","time","toDateString","isTime","isWeek","valueNumber","maxLengthOutput","minLengthOutput","patternValue","match","validateError","validationResult","unset","paths","childObject","updatePath","baseGet","obj","isEmptyArray","createSubject","_observers","observers","observer","push","o","isPrimitive","deepEqual","object1","object2","getTime","keys1","keys2","val1","includes","val2","isMultipleSelect","live","isConnected","objectHasFunction","markFieldsDirty","isParentNodeArray","getDirtyFieldsFromDefaultValues","dirtyFieldsFromValues","getDirtyFields","getFieldValueAs","setValueAs","NaN","getFieldValue","files","selectedOptions","getResolverOptions","criteriaMode","getRuleValue","rule","source","hasValidation","schemaErrorLookup","join","foundError","pop","skipValidation","isSubmitted","reValidateMode","unsetEmptyArray","defaultOptions","shouldFocusError","createFormControl","delayErrorCallback","submitCount","isSubmitting","isSubmitSuccessful","unMount","timer","validationModeBeforeSubmit","validationModeAfterSubmit","shouldDisplayAllAssociatedErrors","shouldUpdateValid","resolver","_executeSchema","executeBuiltInValidation","_updateIsValidating","from","forEach","updateValidAndValue","shouldSkipSetValueAs","defaultChecked","setFieldValue","updateTouchAndDirty","fieldValue","shouldDirty","shouldRender","shouldUpdateField","isPreviousDirty","output","disabledField","_getDirty","isCurrentFieldPristine","isPreviousFieldTouched","shouldRenderByError","previousFieldError","callback","delayError","updateErrors","wait","clearTimeout","setTimeout","updatedFormState","context","shouldOnlyCheckValid","valid","isFieldArrayRoot","fieldError","getValues","fieldReference","optionRef","selected","checkboxRef","radioRef","shouldTouch","shouldValidate","trigger","setValues","fieldKey","setValue","cloneValue","isFieldValueUpdated","_updateIsFieldValueUpdated","Number","shouldSkipValidation","deps","watched","previousErrorLookupResult","errorLookupResult","_focusInput","fieldNames","executeSchemaAndUpdateState","Promise","shouldFocus","getFieldState","setError","currentError","currentRef","restOfErrorTree","delete","keepValue","keepError","keepDirty","keepTouched","keepIsValidating","keepDefaultValue","keepIsValid","disabledIsDefined","progressive","fieldRef","querySelectorAll","radioOrCheckbox","_focusError","handleSubmit","onValid","onInvalid","e","onValidError","preventDefault","persist","fieldValues","_reset","keepStateOptions","updatedValues","cloneUpdatedValues","isEmptyResetValues","keepDefaultValues","keepValues","keepDirtyValues","form","closest","reset","keepSubmitCount","keepIsSubmitted","keepErrors","keepIsSubmitSuccessful","_updateFieldArray","method","args","shouldSetValues","shouldUpdateFieldsAndState","argA","argB","_getFieldArray","_resetDefaultValues","then","resetOptions","_disableForm","_setErrors","payload","resetField","clearErrors","inputName","setFocus","shouldSelect","useForm","_formControl","_values"],"mappings":"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","x_google_ignoreList":[0]}