├── .changeset ├── README.md └── config.json ├── .github └── workflows │ └── cypress.yml ├── .gitignore ├── .npmrc ├── README.md ├── apps ├── docs │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── (home) │ │ │ └── page.tsx │ │ ├── api │ │ │ └── search │ │ │ │ └── route.ts │ │ ├── docs │ │ │ ├── [[...slug]] │ │ │ │ └── page.tsx │ │ │ └── layout.tsx │ │ ├── global.css │ │ ├── layout.config.tsx │ │ └── layout.tsx │ ├── components │ │ ├── icons │ │ │ ├── discord-icon.tsx │ │ │ ├── github-icon.tsx │ │ │ ├── linkedin-icon.tsx │ │ │ └── x-icon.tsx │ │ ├── landing │ │ │ ├── interactive-demo.tsx │ │ │ ├── navbar.tsx │ │ │ ├── sections │ │ │ │ ├── alert-banner.tsx │ │ │ │ ├── benefits.tsx │ │ │ │ ├── community.tsx │ │ │ │ ├── faq.tsx │ │ │ │ ├── features.tsx │ │ │ │ ├── footer.tsx │ │ │ │ ├── hero.tsx │ │ │ │ ├── pricing.tsx │ │ │ │ ├── services.tsx │ │ │ │ ├── team.tsx │ │ │ │ └── testimonial.tsx │ │ │ └── tabs │ │ │ │ ├── code-block.tsx │ │ │ │ └── mode-tabs.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── dialog.tsx │ │ │ ├── icon.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ └── textarea.tsx │ ├── content │ │ └── docs │ │ │ ├── index.mdx │ │ │ ├── react │ │ │ ├── api.mdx │ │ │ ├── custom-integration.mdx │ │ │ ├── customization.md │ │ │ ├── getting-started.mdx │ │ │ ├── meta.json │ │ │ └── migration.mdx │ │ │ ├── schema-providers │ │ │ ├── joi.md │ │ │ ├── meta.json │ │ │ ├── yup.md │ │ │ └── zod.md │ │ │ └── technical │ │ │ ├── meta.json │ │ │ ├── structure.mdx │ │ │ └── todo.mdx │ ├── lib │ │ ├── source.ts │ │ └── utils.ts │ ├── mdx-components.tsx │ ├── next-env.d.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── source.config.ts │ └── tsconfig.json └── web │ ├── .eslintrc.js │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx │ ├── components │ ├── Ant.tsx │ ├── Array.tsx │ ├── Basics.tsx │ ├── Chakra.tsx │ ├── Mantine.tsx │ └── utils.tsx │ ├── cypress.config.ts │ ├── cypress │ ├── component │ │ └── autoform │ │ │ ├── all.cy.tsx │ │ │ ├── ant-joi │ │ │ ├── all.cy.tsx │ │ │ ├── basics.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── ant-zod │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── ant-zod4-mini │ │ │ ├── all.cy.tsx │ │ │ ├── basics.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── chakra-zod │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── mantine-zod │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ ├── utils.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── mui-yup │ │ │ ├── all.cy.tsx │ │ │ ├── basics.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── mui-zod │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ └── validation.cy.tsx │ │ │ ├── shadcn-zod │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── enums.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ ├── utils.tsx │ │ │ └── validation.cy.tsx │ │ │ └── shadcn-zod4 │ │ │ ├── advanced-features.cy.tsx │ │ │ ├── all.cy.tsx │ │ │ ├── arrays.cy.tsx │ │ │ ├── basic.cy.tsx │ │ │ ├── controlled-form.cy.tsx │ │ │ ├── custom-fields.cy.tsx │ │ │ ├── enums.cy.tsx │ │ │ ├── form-props.cy.tsx │ │ │ ├── subobjects.cy.tsx │ │ │ ├── ui-customization.cy.tsx │ │ │ ├── utils.tsx │ │ │ └── validation.cy.tsx │ ├── fixtures │ │ └── example.json │ └── support │ │ ├── commands.ts │ │ ├── component-index.html │ │ └── component.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.cjs │ ├── public │ ├── file-text.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ ├── tailwind.config.ts │ └── tsconfig.json ├── package.json ├── packages ├── ant │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── AutoForm.tsx │ │ ├── components │ │ │ ├── ArrayElementWrapper.tsx │ │ │ ├── ArrayWrapper.tsx │ │ │ ├── BooleanField.tsx │ │ │ ├── DateField.tsx │ │ │ ├── ErrorMessage.tsx │ │ │ ├── FieldWrapper.tsx │ │ │ ├── Form.tsx │ │ │ ├── NumberField.tsx │ │ │ ├── ObjectWrapper.tsx │ │ │ ├── SelectField.tsx │ │ │ ├── StringField.tsx │ │ │ └── SubmitButton.tsx │ │ ├── index.tsx │ │ └── types.tsx │ ├── tsconfig.json │ └── tsconfig.lint.json ├── chakra │ ├── .eslintrc.cjs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── AutoForm.tsx │ │ ├── components │ │ │ ├── autoform │ │ │ │ ├── ArrayElementWrapper.tsx │ │ │ │ ├── ArrayWrapper.tsx │ │ │ │ ├── BooleanField.tsx │ │ │ │ ├── DateField.tsx │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ ├── FieldWrapper.tsx │ │ │ │ ├── Form.tsx │ │ │ │ ├── NumberField.tsx │ │ │ │ ├── ObjectWrapper.tsx │ │ │ │ ├── SelectField.tsx │ │ │ │ ├── StringField.tsx │ │ │ │ └── SubmitButton.tsx │ │ │ └── ui │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── close-button.tsx │ │ │ │ ├── color-mode.tsx │ │ │ │ ├── field.tsx │ │ │ │ ├── input-group.tsx │ │ │ │ ├── number-input.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── provider.tsx │ │ │ │ ├── radio.tsx │ │ │ │ └── select.tsx │ │ ├── index.tsx │ │ └── types.tsx │ ├── tsconfig.json │ ├── tsconfig.lint.json │ └── tsconfig.node.json ├── core │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── label.ts │ │ ├── logic.ts │ │ ├── schema-provider.ts │ │ └── types.ts │ ├── tsconfig.json │ └── tsconfig.lint.json ├── eslint-config │ ├── CHANGELOG.md │ ├── README.md │ ├── library.js │ ├── next.js │ ├── package.json │ └── react-internal.js ├── joi │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── default-values.ts │ │ ├── field-config.ts │ │ ├── field-type-inference.ts │ │ ├── index.ts │ │ ├── provider.ts │ │ ├── schema-parser.ts │ │ ├── types.ts │ │ └── validator.ts │ ├── tsconfig.json │ └── tsconfig.lint.json ├── mantine │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── AutoForm.tsx │ │ ├── components │ │ │ ├── ArrayElementWrapper.tsx │ │ │ ├── ArrayWrapper.tsx │ │ │ ├── BooleanField.tsx │ │ │ ├── DateField.tsx │ │ │ ├── ErrorMessage.tsx │ │ │ ├── FieldWrapper.tsx │ │ │ ├── Form.tsx │ │ │ ├── NumberField.tsx │ │ │ ├── ObjectWrapper.tsx │ │ │ ├── SelectField.tsx │ │ │ ├── StringField.tsx │ │ │ └── SubmitButton.tsx │ │ ├── index.tsx │ │ └── types.ts │ ├── tsconfig.json │ └── tsconfig.lint.json ├── mui │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── AutoForm.tsx │ │ ├── components │ │ │ ├── ArrayElementWrapper.tsx │ │ │ ├── ArrayWrapper.tsx │ │ │ ├── BooleanField.tsx │ │ │ ├── DateField.tsx │ │ │ ├── ErrorMessage.tsx │ │ │ ├── FieldWrapper.tsx │ │ │ ├── Form.tsx │ │ │ ├── NumberField.tsx │ │ │ ├── ObjectWrapper.tsx │ │ │ ├── SelectField.tsx │ │ │ ├── StringField.tsx │ │ │ └── SubmitButton.tsx │ │ ├── index.tsx │ │ └── types.ts │ ├── tsconfig.json │ └── tsconfig.lint.json ├── react │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── ArrayField.tsx │ │ ├── AutoForm.tsx │ │ ├── AutoFormField.tsx │ │ ├── ObjectField.tsx │ │ ├── context.ts │ │ ├── index.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── tsconfig.lint.json ├── shadcn │ ├── .eslintrc.cjs │ ├── .npmignore │ ├── CHANGELOG.md │ ├── components.json │ ├── package.json │ ├── postcss.config.mjs │ ├── registry │ │ └── autoform.json │ ├── src │ │ ├── components │ │ │ └── ui │ │ │ │ ├── alert.tsx │ │ │ │ ├── autoform │ │ │ │ ├── AutoForm.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ArrayElementWrapper.tsx │ │ │ │ │ ├── ArrayWrapper.tsx │ │ │ │ │ ├── BooleanField.tsx │ │ │ │ │ ├── DateField.tsx │ │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ │ ├── FieldWrapper.tsx │ │ │ │ │ ├── Form.tsx │ │ │ │ │ ├── NumberField.tsx │ │ │ │ │ ├── ObjectWrapper.tsx │ │ │ │ │ ├── SelectField.tsx │ │ │ │ │ ├── StringField.tsx │ │ │ │ │ └── SubmitButton.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toggle-group.tsx │ │ │ │ └── toggle.tsx │ │ ├── globals.css │ │ ├── lib │ │ │ └── utils.ts │ │ └── scripts │ │ │ ├── build.ts │ │ │ └── schema.ts │ ├── tailwind.config.ts │ ├── tsconfig.json │ ├── tsconfig.lint.json │ └── tsconfig.node.json ├── typescript-config │ ├── CHANGELOG.md │ ├── base.json │ ├── nextjs.json │ ├── package.json │ └── react-library.json ├── yup │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── default-values.ts │ │ ├── field-config.ts │ │ ├── field-type-inference.ts │ │ ├── index.ts │ │ ├── provider.ts │ │ ├── schema-parser.ts │ │ ├── types.ts │ │ └── validator.ts │ ├── tsconfig.json │ └── tsconfig.lint.json └── zod │ ├── .eslintrc.js │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ ├── merge │ │ ├── default-values.ts │ │ ├── field-config.ts │ │ ├── field-type-inference.ts │ │ ├── index.ts │ │ ├── provider.ts │ │ ├── schema-parser.ts │ │ └── validator.ts │ ├── utils.ts │ ├── v3 │ │ ├── default-values.ts │ │ ├── field-config.ts │ │ ├── field-type-inference.ts │ │ ├── index.ts │ │ ├── provider.ts │ │ ├── schema-parser.ts │ │ ├── types.ts │ │ └── validator.ts │ └── v4 │ │ ├── default-values.ts │ │ ├── field-config.ts │ │ ├── field-type-inference.ts │ │ ├── index.ts │ │ ├── provider.ts │ │ ├── schema-parser.ts │ │ └── validator.ts │ ├── tsconfig.json │ └── tsconfig.lint.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/cypress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/.github/workflows/cypress.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/README.md -------------------------------------------------------------------------------- /apps/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/.gitignore -------------------------------------------------------------------------------- /apps/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/CHANGELOG.md -------------------------------------------------------------------------------- /apps/docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/LICENSE -------------------------------------------------------------------------------- /apps/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/README.md -------------------------------------------------------------------------------- /apps/docs/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/(home)/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/api/search/route.ts -------------------------------------------------------------------------------- /apps/docs/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /apps/docs/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/docs/layout.tsx -------------------------------------------------------------------------------- /apps/docs/app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/global.css -------------------------------------------------------------------------------- /apps/docs/app/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/layout.config.tsx -------------------------------------------------------------------------------- /apps/docs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/app/layout.tsx -------------------------------------------------------------------------------- /apps/docs/components/icons/discord-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/icons/discord-icon.tsx -------------------------------------------------------------------------------- /apps/docs/components/icons/github-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/icons/github-icon.tsx -------------------------------------------------------------------------------- /apps/docs/components/icons/linkedin-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/icons/linkedin-icon.tsx -------------------------------------------------------------------------------- /apps/docs/components/icons/x-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/icons/x-icon.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/interactive-demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/interactive-demo.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/navbar.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/alert-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/alert-banner.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/benefits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/benefits.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/community.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/faq.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/features.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/footer.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/hero.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/pricing.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/services.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/team.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/sections/testimonial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/sections/testimonial.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/tabs/code-block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/tabs/code-block.tsx -------------------------------------------------------------------------------- /apps/docs/components/landing/tabs/mode-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/landing/tabs/mode-tabs.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/accordion.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/alert.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/carousel.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/icon.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/select.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/docs/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/docs/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/index.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/react/api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/api.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/react/custom-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/custom-integration.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/react/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/customization.md -------------------------------------------------------------------------------- /apps/docs/content/docs/react/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/getting-started.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/react/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/meta.json -------------------------------------------------------------------------------- /apps/docs/content/docs/react/migration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/react/migration.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/schema-providers/joi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/schema-providers/joi.md -------------------------------------------------------------------------------- /apps/docs/content/docs/schema-providers/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/schema-providers/meta.json -------------------------------------------------------------------------------- /apps/docs/content/docs/schema-providers/yup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/schema-providers/yup.md -------------------------------------------------------------------------------- /apps/docs/content/docs/schema-providers/zod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/schema-providers/zod.md -------------------------------------------------------------------------------- /apps/docs/content/docs/technical/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/technical/meta.json -------------------------------------------------------------------------------- /apps/docs/content/docs/technical/structure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/technical/structure.mdx -------------------------------------------------------------------------------- /apps/docs/content/docs/technical/todo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/content/docs/technical/todo.mdx -------------------------------------------------------------------------------- /apps/docs/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/lib/source.ts -------------------------------------------------------------------------------- /apps/docs/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/lib/utils.ts -------------------------------------------------------------------------------- /apps/docs/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/mdx-components.tsx -------------------------------------------------------------------------------- /apps/docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/next-env.d.ts -------------------------------------------------------------------------------- /apps/docs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/next.config.mjs -------------------------------------------------------------------------------- /apps/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/package.json -------------------------------------------------------------------------------- /apps/docs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/postcss.config.mjs -------------------------------------------------------------------------------- /apps/docs/source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/source.config.ts -------------------------------------------------------------------------------- /apps/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/docs/tsconfig.json -------------------------------------------------------------------------------- /apps/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/.eslintrc.js -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/CHANGELOG.md -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/app/favicon.ico -------------------------------------------------------------------------------- /apps/web/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/app/globals.css -------------------------------------------------------------------------------- /apps/web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/app/page.tsx -------------------------------------------------------------------------------- /apps/web/components/Ant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/Ant.tsx -------------------------------------------------------------------------------- /apps/web/components/Array.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/Array.tsx -------------------------------------------------------------------------------- /apps/web/components/Basics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/Basics.tsx -------------------------------------------------------------------------------- /apps/web/components/Chakra.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/Chakra.tsx -------------------------------------------------------------------------------- /apps/web/components/Mantine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/Mantine.tsx -------------------------------------------------------------------------------- /apps/web/components/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/components/utils.tsx -------------------------------------------------------------------------------- /apps/web/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress.config.ts -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-joi/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-joi/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-joi/basics.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-joi/basics.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-joi/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-joi/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod4-mini/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod4-mini/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod4-mini/basics.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod4-mini/basics.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/ant-zod4-mini/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/ant-zod4-mini/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/chakra-zod/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/chakra-zod/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/utils.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mantine-zod/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mantine-zod/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-yup/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-yup/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-yup/basics.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-yup/basics.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-yup/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-yup/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/mui-zod/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/mui-zod/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/enums.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/enums.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/utils.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/advanced-features.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/advanced-features.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/all.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/all.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/arrays.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/arrays.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/basic.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/basic.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/controlled-form.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/controlled-form.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/custom-fields.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/custom-fields.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/enums.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/enums.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/form-props.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/form-props.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/subobjects.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/subobjects.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/ui-customization.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/ui-customization.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/utils.tsx -------------------------------------------------------------------------------- /apps/web/cypress/component/autoform/shadcn-zod4/validation.cy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/component/autoform/shadcn-zod4/validation.cy.tsx -------------------------------------------------------------------------------- /apps/web/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/fixtures/example.json -------------------------------------------------------------------------------- /apps/web/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/support/commands.ts -------------------------------------------------------------------------------- /apps/web/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/support/component-index.html -------------------------------------------------------------------------------- /apps/web/cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/cypress/support/component.ts -------------------------------------------------------------------------------- /apps/web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/next.config.mjs -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/postcss.config.cjs -------------------------------------------------------------------------------- /apps/web/public/file-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/public/file-text.svg -------------------------------------------------------------------------------- /apps/web/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/public/globe.svg -------------------------------------------------------------------------------- /apps/web/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/public/next.svg -------------------------------------------------------------------------------- /apps/web/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/public/vercel.svg -------------------------------------------------------------------------------- /apps/web/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/public/window.svg -------------------------------------------------------------------------------- /apps/web/tailwind.config.ts: -------------------------------------------------------------------------------- 1 | export * from "@autoform/shadcn/tailwind.config"; 2 | -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/package.json -------------------------------------------------------------------------------- /packages/ant/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/.eslintrc.js -------------------------------------------------------------------------------- /packages/ant/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/README.md -------------------------------------------------------------------------------- /packages/ant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/package.json -------------------------------------------------------------------------------- /packages/ant/src/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/AutoForm.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/ArrayElementWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/ArrayElementWrapper.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/ArrayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/ArrayWrapper.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/BooleanField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/BooleanField.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/DateField.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/FieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/FieldWrapper.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/Form.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/NumberField.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/ObjectWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/ObjectWrapper.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/SelectField.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/StringField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/StringField.tsx -------------------------------------------------------------------------------- /packages/ant/src/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/components/SubmitButton.tsx -------------------------------------------------------------------------------- /packages/ant/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/index.tsx -------------------------------------------------------------------------------- /packages/ant/src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/src/types.tsx -------------------------------------------------------------------------------- /packages/ant/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/tsconfig.json -------------------------------------------------------------------------------- /packages/ant/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/ant/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/chakra/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/chakra/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/chakra/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/CHANGELOG.md -------------------------------------------------------------------------------- /packages/chakra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/README.md -------------------------------------------------------------------------------- /packages/chakra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/package.json -------------------------------------------------------------------------------- /packages/chakra/src/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/AutoForm.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/ArrayElementWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/ArrayElementWrapper.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/ArrayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/ArrayWrapper.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/BooleanField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/BooleanField.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/DateField.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/ErrorMessage.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/FieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/FieldWrapper.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/Form.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/NumberField.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/ObjectWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/ObjectWrapper.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/SelectField.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/StringField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/StringField.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/autoform/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/autoform/SubmitButton.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/close-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/close-button.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/color-mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/color-mode.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/field.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/number-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/number-input.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/provider.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/radio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/radio.tsx -------------------------------------------------------------------------------- /packages/chakra/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/chakra/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/index.tsx -------------------------------------------------------------------------------- /packages/chakra/src/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/src/types.tsx -------------------------------------------------------------------------------- /packages/chakra/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/tsconfig.json -------------------------------------------------------------------------------- /packages/chakra/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/chakra/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/chakra/tsconfig.node.json -------------------------------------------------------------------------------- /packages/core/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/.eslintrc.js -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/src/label.ts -------------------------------------------------------------------------------- /packages/core/src/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/src/logic.ts -------------------------------------------------------------------------------- /packages/core/src/schema-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/src/schema-provider.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/core/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/eslint-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/eslint-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/README.md -------------------------------------------------------------------------------- /packages/eslint-config/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/library.js -------------------------------------------------------------------------------- /packages/eslint-config/next.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/next.js -------------------------------------------------------------------------------- /packages/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/package.json -------------------------------------------------------------------------------- /packages/eslint-config/react-internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/eslint-config/react-internal.js -------------------------------------------------------------------------------- /packages/joi/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/.eslintrc.js -------------------------------------------------------------------------------- /packages/joi/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/joi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/CHANGELOG.md -------------------------------------------------------------------------------- /packages/joi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/README.md -------------------------------------------------------------------------------- /packages/joi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/package.json -------------------------------------------------------------------------------- /packages/joi/src/default-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/default-values.ts -------------------------------------------------------------------------------- /packages/joi/src/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/field-config.ts -------------------------------------------------------------------------------- /packages/joi/src/field-type-inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/field-type-inference.ts -------------------------------------------------------------------------------- /packages/joi/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/index.ts -------------------------------------------------------------------------------- /packages/joi/src/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/provider.ts -------------------------------------------------------------------------------- /packages/joi/src/schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/schema-parser.ts -------------------------------------------------------------------------------- /packages/joi/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/types.ts -------------------------------------------------------------------------------- /packages/joi/src/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/src/validator.ts -------------------------------------------------------------------------------- /packages/joi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/tsconfig.json -------------------------------------------------------------------------------- /packages/joi/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/joi/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/mantine/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/.eslintrc.js -------------------------------------------------------------------------------- /packages/mantine/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/mantine/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mantine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/README.md -------------------------------------------------------------------------------- /packages/mantine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/package.json -------------------------------------------------------------------------------- /packages/mantine/src/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/AutoForm.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/ArrayElementWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/ArrayElementWrapper.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/ArrayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/ArrayWrapper.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/BooleanField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/BooleanField.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/DateField.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/FieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/FieldWrapper.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/Form.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/NumberField.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/ObjectWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/ObjectWrapper.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/SelectField.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/StringField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/StringField.tsx -------------------------------------------------------------------------------- /packages/mantine/src/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/components/SubmitButton.tsx -------------------------------------------------------------------------------- /packages/mantine/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/index.tsx -------------------------------------------------------------------------------- /packages/mantine/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/src/types.ts -------------------------------------------------------------------------------- /packages/mantine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/tsconfig.json -------------------------------------------------------------------------------- /packages/mantine/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mantine/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/mui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/.eslintrc.js -------------------------------------------------------------------------------- /packages/mui/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/mui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/CHANGELOG.md -------------------------------------------------------------------------------- /packages/mui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/README.md -------------------------------------------------------------------------------- /packages/mui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/package.json -------------------------------------------------------------------------------- /packages/mui/src/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/AutoForm.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/ArrayElementWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/ArrayElementWrapper.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/ArrayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/ArrayWrapper.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/BooleanField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/BooleanField.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/DateField.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/FieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/FieldWrapper.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/Form.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/NumberField.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/ObjectWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/ObjectWrapper.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/SelectField.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/StringField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/StringField.tsx -------------------------------------------------------------------------------- /packages/mui/src/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/components/SubmitButton.tsx -------------------------------------------------------------------------------- /packages/mui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/index.tsx -------------------------------------------------------------------------------- /packages/mui/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/src/types.ts -------------------------------------------------------------------------------- /packages/mui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/tsconfig.json -------------------------------------------------------------------------------- /packages/mui/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/mui/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/react/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/.eslintrc.js -------------------------------------------------------------------------------- /packages/react/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/react/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/README.md -------------------------------------------------------------------------------- /packages/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/package.json -------------------------------------------------------------------------------- /packages/react/src/ArrayField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/ArrayField.tsx -------------------------------------------------------------------------------- /packages/react/src/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/AutoForm.tsx -------------------------------------------------------------------------------- /packages/react/src/AutoFormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/AutoFormField.tsx -------------------------------------------------------------------------------- /packages/react/src/ObjectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/ObjectField.tsx -------------------------------------------------------------------------------- /packages/react/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/context.ts -------------------------------------------------------------------------------- /packages/react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/index.tsx -------------------------------------------------------------------------------- /packages/react/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/types.ts -------------------------------------------------------------------------------- /packages/react/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/src/utils.ts -------------------------------------------------------------------------------- /packages/react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/tsconfig.json -------------------------------------------------------------------------------- /packages/react/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/react/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/shadcn/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/.eslintrc.cjs -------------------------------------------------------------------------------- /packages/shadcn/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/shadcn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/CHANGELOG.md -------------------------------------------------------------------------------- /packages/shadcn/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/components.json -------------------------------------------------------------------------------- /packages/shadcn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/package.json -------------------------------------------------------------------------------- /packages/shadcn/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/postcss.config.mjs -------------------------------------------------------------------------------- /packages/shadcn/registry/autoform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/registry/autoform.json -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/AutoForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/AutoForm.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/ArrayElementWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/ArrayElementWrapper.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/ArrayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/ArrayWrapper.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/BooleanField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/BooleanField.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/DateField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/DateField.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/FieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/FieldWrapper.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/Form.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/NumberField.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/ObjectWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/ObjectWrapper.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/SelectField.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/StringField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/StringField.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/components/SubmitButton.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/index.ts -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/autoform/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/autoform/types.ts -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/button.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/card.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/form.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/input.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/label.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/select.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /packages/shadcn/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/globals.css -------------------------------------------------------------------------------- /packages/shadcn/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/lib/utils.ts -------------------------------------------------------------------------------- /packages/shadcn/src/scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/scripts/build.ts -------------------------------------------------------------------------------- /packages/shadcn/src/scripts/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/src/scripts/schema.ts -------------------------------------------------------------------------------- /packages/shadcn/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/tailwind.config.ts -------------------------------------------------------------------------------- /packages/shadcn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/tsconfig.json -------------------------------------------------------------------------------- /packages/shadcn/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/shadcn/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/shadcn/tsconfig.node.json -------------------------------------------------------------------------------- /packages/typescript-config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/typescript-config/CHANGELOG.md -------------------------------------------------------------------------------- /packages/typescript-config/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/typescript-config/base.json -------------------------------------------------------------------------------- /packages/typescript-config/nextjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/typescript-config/nextjs.json -------------------------------------------------------------------------------- /packages/typescript-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/typescript-config/package.json -------------------------------------------------------------------------------- /packages/typescript-config/react-library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/typescript-config/react-library.json -------------------------------------------------------------------------------- /packages/yup/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/.eslintrc.js -------------------------------------------------------------------------------- /packages/yup/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/yup/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/CHANGELOG.md -------------------------------------------------------------------------------- /packages/yup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/README.md -------------------------------------------------------------------------------- /packages/yup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/package.json -------------------------------------------------------------------------------- /packages/yup/src/default-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/default-values.ts -------------------------------------------------------------------------------- /packages/yup/src/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/field-config.ts -------------------------------------------------------------------------------- /packages/yup/src/field-type-inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/field-type-inference.ts -------------------------------------------------------------------------------- /packages/yup/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/index.ts -------------------------------------------------------------------------------- /packages/yup/src/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/provider.ts -------------------------------------------------------------------------------- /packages/yup/src/schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/schema-parser.ts -------------------------------------------------------------------------------- /packages/yup/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/types.ts -------------------------------------------------------------------------------- /packages/yup/src/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/src/validator.ts -------------------------------------------------------------------------------- /packages/yup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/tsconfig.json -------------------------------------------------------------------------------- /packages/yup/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/yup/tsconfig.lint.json -------------------------------------------------------------------------------- /packages/zod/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/.eslintrc.js -------------------------------------------------------------------------------- /packages/zod/.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | .turbo 3 | -------------------------------------------------------------------------------- /packages/zod/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/CHANGELOG.md -------------------------------------------------------------------------------- /packages/zod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/README.md -------------------------------------------------------------------------------- /packages/zod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/package.json -------------------------------------------------------------------------------- /packages/zod/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/index.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/default-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/default-values.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/field-config.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/field-type-inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/field-type-inference.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/index.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/provider.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/schema-parser.ts -------------------------------------------------------------------------------- /packages/zod/src/merge/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/merge/validator.ts -------------------------------------------------------------------------------- /packages/zod/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/utils.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/default-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/default-values.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/field-config.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/field-type-inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/field-type-inference.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/index.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/provider.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/schema-parser.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/types.ts -------------------------------------------------------------------------------- /packages/zod/src/v3/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v3/validator.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/default-values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/default-values.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/field-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/field-config.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/field-type-inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/field-type-inference.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/index.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/provider.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/schema-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/schema-parser.ts -------------------------------------------------------------------------------- /packages/zod/src/v4/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/src/v4/validator.ts -------------------------------------------------------------------------------- /packages/zod/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/tsconfig.json -------------------------------------------------------------------------------- /packages/zod/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/packages/zod/tsconfig.lint.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vantezzen/autoform/HEAD/turbo.json --------------------------------------------------------------------------------