I see from the docs that "@mantine/form supports schema validation with zod, joi and yup out of the box" which is fantastic. Is there any plan to support json-schema and ui-schema? I'd like to use a validation library that I can generate the rules from SQL DDLs and share it across the backend and front end, and json-schema makes that simpler to be backend agnostic.
Today I can trivially generate json-schemas for tables using https://github.com/duartealexf/sql-ddl-to-json-schema and spin up a form in seconds using https://rjsf-team.github.io/react-jsonschema-form/ and then all i need to worry about is styling and rich input support for date ranges and rich text editors which mantine has baked in. I either have to choose these libraries and find a way to marry it with mantine OR have support for generating some validation schema from DDLs with these other libraries so i can use mantine's native form handler. Ouch.
SQL DDL to JSON Schema Converter. Contribute to duartealexf/sql-ddl-to-json-schema development by creating an account on GitHub.