@form-engine-ts/mui 4.4.0 → 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 +5 -0
- package/dist/index.cjs +460 -112
- package/dist/index.d.cts +28 -3
- package/dist/index.d.ts +28 -3
- package/dist/index.js +472 -105
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -18,6 +18,11 @@ import { MuiChoiceGroupSlot } from "@form-engine-ts/mui";
|
|
|
18
18
|
/>
|
|
19
19
|
```
|
|
20
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
|
+
|
|
21
26
|
```tsx
|
|
22
27
|
import { MuiFormBuilder } from "@form-engine-ts/mui";
|
|
23
28
|
|