@form-engine-ts/react 1.0.0 → 1.1.0

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
@@ -38,3 +38,15 @@ export function ContactForm() {
38
38
  ```
39
39
 
40
40
  Use any compatible `TranslationAdapter` in place of the mock translator.
41
+
42
+ Define `schema.pages` to enable Back/Next navigation, page validation, conditional page skipping, and an accessible
43
+ progress indicator. Pass `autoSaveKey` to persist a versioned draft in `localStorage` after a 500ms debounce and restore it
44
+ on the next mount:
45
+
46
+ ```tsx
47
+ <FormRenderer autoSaveKey={`contact-draft:${schema.version}`} />
48
+ ```
49
+
50
+ `FormProvider` resolves authoring-time translations synchronously whenever `locale` changes. `FormBuilder` includes page
51
+ membership controls and localization editors; pass an `AsyncTranslationAdapter` as `translationAdapter` to enable its
52
+ batch-translation action.