This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { makeAutoObservable, runInAction } from "mobx"; | |
import * as v from "valibot"; | |
import { ChangeEvent } from "react"; | |
/** | |
* Универсальное хранилище для управления формами с валидацией | |
* @template T - Тип данных формы (объект с ключами-строками) | |
*/ | |
export class FormStore<T extends Record<string, unknown>> { | |
/** Текущее состояние формы */ |