@arudovwen/form-builder-react 1.3.5 → 1.3.6
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 -1
- package/dist/form-builder.es.js +5827 -5727
- package/dist/form-builder.umd.js +53 -53
- package/dist/index.css +1 -1
- package/package.json +1 -1
- package/types/assets/svgs/close.d.ts +1 -0
- package/types/components/editor/layout.d.ts +16 -12
- package/types/components/editor/preview-modal.d.ts +9 -8
- package/types/components/editor/topbar.d.ts +10 -6
- package/types/pages/builder/index.d.ts +3 -3
package/README.md
CHANGED
|
@@ -99,7 +99,11 @@ export default App;
|
|
|
99
99
|
| `loading` | `boolean` | Indicates whether the form is in a loading state. |
|
|
100
100
|
| `isReadOnly` | `boolean` | Determines if the form is rendered in read-only mode. |
|
|
101
101
|
| `renderType` | `string` | Determines the style the form is rendered, either `multi` or `single`. |
|
|
102
|
-
| `goBackUrl` | `function` | function to navigate back or somewhere on your app |
|
|
102
|
+
| `goBackUrl` | `function` | function to navigate back or somewhere on your app |
|
|
103
|
+
| `previewLoading` | `boolean` | Shows loading icon |
|
|
104
|
+
| `saveLoading` | `boolean` | Shows loading icon|
|
|
105
|
+
| `publishLoading` | `boolean` | Shows loading icon |
|
|
106
|
+
| `onTitleChange` | `function` | function to navigate back or somewhere on your app |
|
|
103
107
|
|
|
104
108
|
### Form Element Types
|
|
105
109
|
|