@form-engine-ts/mui 4.3.2 → 4.5.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
@@ -3,6 +3,26 @@
3
3
  Official Material UI v6/v7 integration layer for `@form-engine-ts/react`. `MuiFormBuilder` applies MUI controls and
4
4
  layout slots together, disables the React builder CSS classes, and propagates common size and variant settings.
5
5
 
6
+ `MuiChoiceGroupSlot` is an exported renderer slot for grouped choice questions. It uses MUI `Paper`, `FormControl`,
7
+ `FormLabel`, and `FormHelperText`, so error state and theme colors follow the active MUI theme:
8
+
9
+ ```tsx
10
+ import { FormRenderer } from "@form-engine-ts/react";
11
+ import { MuiChoiceGroupSlot } from "@form-engine-ts/mui";
12
+
13
+ <FormRenderer
14
+ appearance={{ choiceField: { radio: "grouped" } }}
15
+ slots={{ renderChoiceGroup: MuiChoiceGroupSlot }}
16
+ schema={schema}
17
+ onSubmit={save}
18
+ />
19
+ ```
20
+
21
+ `ConditionEditor` edits nested `DisplayRule` conditions in the field editor, including `all`/`any` groups and
22
+ show/hide actions. `TranslationWorkspace` provides MUI tabs, progress, status chips, manual translation editing, and
23
+ single-slot or batch translation through the React translation workspace hook. Enable the builder's submission settings
24
+ section with `submissionSettingsOptions={{ enabled: true }}` and use `layoutOptions.sectionOrder` to place it.
25
+
6
26
  ```tsx
7
27
  import { MuiFormBuilder } from "@form-engine-ts/mui";
8
28