@form-engine-ts/react 2.9.1 → 2.9.3
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 +6 -0
- package/dist/index.cjs +907 -777
- package/dist/index.d.cts +28 -8
- package/dist/index.d.ts +28 -8
- package/dist/index.js +907 -777
- package/dist/styles.css +12 -8
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -83,6 +83,12 @@ to their normalized string-value callbacks. The `translationActions` slot also r
|
|
|
83
83
|
`translationReport`, and `onClearTranslationError`, allowing a custom MUI action surface to represent the complete
|
|
84
84
|
translation lifecycle.
|
|
85
85
|
|
|
86
|
+
`FormBuilder` adds `disableDefaultStyles` and its `unstyled` alias for design systems that provide their own styling.
|
|
87
|
+
When either is enabled, the builder omits its `form-engine-builder` and `feb-*` classes. Injected `TextInput`, `TextArea`,
|
|
88
|
+
and `Select` components receive the field `label` and accessibility attributes and are responsible for rendering their
|
|
89
|
+
own labels. Builder action icons can be supplied with `renderIcon`, which resolves `actionType` values such as
|
|
90
|
+
`moveUp`, `moveDown`, `delete`, and `add`.
|
|
91
|
+
|
|
86
92
|
```tsx
|
|
87
93
|
<FormBuilder
|
|
88
94
|
schema={schema}
|