Skip to content

v2.3.0

Choose a tag to compare

@EvanSchleret EvanSchleret released this 19 Jul 20:22
· 5 commits to main since this release

✨ Highlights

📦 Configurable file upload constraints

File fields now support accepted types, per-file size limits, maximum file counts, and cumulative size limits.

{
  type: 'file',
  multiple: true,
  accept: ['.pdf', 'image/*'],
  max_size: 5_000_000,
  max_files: 3,
  max_total_size: 10_000_000
}

🧹 Cleaner paginated rendering

Obsolete page titles and descriptions are no longer rendered by FormForgeRenderer, matching the current builder experience.

🚀 Features

  • File uploads: add client-side validation for accepted types, file count, per-file size, and cumulative size (65d4399)

🐛 Bug Fixes

  • Renderer: remove obsolete page headings and descriptions from rendered pages (0af8c55)

❤️ Contributors

Full Changelog: v2.2.0...v2.3.0