FormEngine 10.0.0
July 3, 2026
Overview
FormEngine 10.0.0 removes deprecated component-metadata, validation, and RSuite picker APIs that have been marked for removal in earlier releases. German (de-DE) strings are retranslated across Core, Designer, and view packages, and LocalizationStore is split into smaller pieces so form switching does not leave stale locale data behind.
Monaco editors for computed properties and localization now keep keyboard focus inside editable regions. RSuite CSS was fixed so production builds can minify styles safely. Built-in validation now uses Zod 4.4.
Why update
- Remove deprecated APIs before the next major blocks you:
Definer.preview,customPreview, thefinitenumber validator, andinlineon RsDatePickerProps / RsTimePickerProps are gone. - Pick up new German (
de-DE) strings in Designer and component packages. - Switch forms without leftover localization and work against a smaller ILocalizationStore contract if you extend localization yourself.
- Type in constrained Monaco regions for computed properties and localization code without focus getting stuck in read-only areas.
- Get smaller CSS bundles now that Lightning CSS minification works for RSuite styles.
Key features
- Removed deprecated APIs for component metadata (Definer, Meta), number validation, and RSuite date/time pickers.
- Retranslated German (
de-DE) locale files vialocalization.config.json. - Reworked LocalizationStore and expanded ILocalizationStore.
- In-house constrained Monaco editing for computed properties and localization code fields.
- Fixed
@font-faceplacement in RSuite CSS; Lightning CSS minification enabled in production builds.
Changelog
Breaking changes
- Removed
Definer.previewandcustomPreviewfrom DefinerData and Meta. You can no longer customize component palette previews through this API. - Removed the deprecated
inlineproperty from RsDatePickerProps and RsTimePickerProps. The pickers now extendOmit<DatePickerProps, 'inline'>and the equivalent time-picker props withoutinline. - Removed the deprecated
finitenumber validation rule from the built-in Zod rule set. Removefinitefrom form JSON or replace it withintegeror another number rule from Form validation. - ILocalizationStore now requires
value,engine,removeLocalization,removeLocalizationForType,hasLocalization,hasLanguage, andgetLocalizationItemId. Custom implementations must type thetypeargument as LocalizationType ingetLocalizationandsetLocalization.
Update instructions
Update all packages to version 10.0.0.
If your custom components still call Definer.preview or pass customPreview in DefinerData, delete those calls. They stopped doing anything in recent releases.
If form JSON still uses a finite validation rule on number fields, remove it or switch to a supported validator from Form validation.
If you implement ILocalizationStore yourself, match the current interface and use LocalizationType for the type parameter.
Standard Designer and Viewer integrations need no other changes.
Features
Enhancements
- Retranslated German (
de-DE) locale bundles across Core, Designer, and view packages using the new translation workflow. - Split responsibilities in LocalizationStore and FluentLocalizationEngine for language resolution, bundle creation, and store state.
- Replaced the third-party Monaco constrained-editor plugin with an in-house setup for computed-property and localization code editors.
- Upgraded built-in Zod to
^4.4.3and kept legacy date boundary error messages when Zod 4.3+ reports timestamp-based date issues. - Enabled Lightning CSS minification for production CSS builds after fixing RSuite stylesheet structure.
- Release scripts now refresh public and private
package.jsonvariants automatically during release prep.
Bug fixes
- Localization from a previously opened form no longer sticks around after you switch to another form in the Designer or Viewer.
- Constrained Monaco editors accept keyboard input again when the caret lands in a read-only region; focus moves to the nearest editable range.
- Invalid nested
@font-facerules in RSuite custom CSS no longer break CSS processors or block minification.
Resources
- ILocalizationStore API reference documents the expanded store contract.
- Computed properties is still the place to read about function-type calculated fields and the constrained code editor.
Security
- Bumped
axiosfrom1.13.6to1.16.1in examples. - Bumped
dompurifyfrom3.3.2to3.4.11in examples. - Bumped
express,body-parser, andqsin examples. - Bumped
honofrom4.12.18to4.12.26in examples. - Bumped
js-yamlfrom4.1.0/4.1.1to4.3.0in examples. - Bumped
multerfrom2.1.1to2.2.0in examples. - Bumped
@sigstore/core,@sigstore/verify, andsigstorein examples. - Bumped
shell-quotefrom1.8.3to1.8.4in examples. - Bumped
tmpfrom0.2.5to0.2.7in examples. - Bumped
viteand@vitejs/plugin-react-swcin examples.
Chore
- Bumped
zodfrom^4.0.0to^4.4.3. - Bumped
vitest,@vitest/browser,@vitest/browser-playwright, and@vitest/uifrom4.0.9to4.1.8. - Bumped
@angular/common,@angular/core, and@angular/compilerfrom21.1.5to21.2.17in examples. - Bumped
@remix-run/server-runtime,@remix-run/node,@remix-run/serve,@remix-run/dev, andreact-routerin examples. - Bumped
form-datafrom4.0.5to4.0.6in examples. - Bumped
launch-editorfrom2.13.0to2.14.1in examples. - Bumped
markdown-itfrom14.1.1to14.2.0in examples. - Flattened the open-source monorepo layout (removed the intermediate
src/directory) and updated CI/build configuration accordingly.