- Can I export the form as React or plain HTML?
- Both outputs are available. The React export uses controlled components with useState; the plain HTML version uses native constraint validation attributes.
- Does it support file upload fields?
- Yes — file inputs include accept MIME type filtering and max-size attributes in the generated markup.
- How does conditional logic work?
- Each field can have show/hide rules tied to another field's value. The export includes the corresponding JS or React state logic to implement it.
- Are the forms accessible?
- Generated markup follows WCAG 2.1: every input has an associated label, error messages reference inputs via aria-describedby, and focus order matches visual order.