@form-engine-ts/react 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -61,6 +61,12 @@ initial field, option, and page shapes. `<FormBuilder>` delegates its UI mutatio
61
61
  options. Its completion-message editors cover both source and locale text. `translationOptions` and
62
62
  `onTranslationReport` expose automatic-translation policy and reporting.
63
63
 
64
+ Visual-builder field creation uses `defaultFieldType` when it is allowed, otherwise the first allowed policy type, then
65
+ `text` when unrestricted. The add button is disabled when no type is allowed or `maxFields` is reached.
66
+ `onActionError` receives typed failures from visual headless actions, and `createManualTranslationMetadata` can attach
67
+ per-locale/property metadata to manual edits. Automatic translation defaults to `overwrite: "missing-only"`; explicitly
68
+ pass `{ overwrite: "all" }` to replace existing translations.
69
+
64
70
  `FormRenderer` can also be used without an explicit provider:
65
71
 
66
72
  ```tsx