@overmap-ai/forms 1.0.2 → 1.0.3-form-improvements.1
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 +12 -12
- package/dist/builder/FieldActions.d.ts +1 -0
- package/dist/forms.js +730 -705
- package/dist/forms.umd.cjs +1 -1
- package/package.json +88 -88
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Overmap `FormRenderer` component
|
|
2
|
-
|
|
3
|
-
Renders a form entry or renders a form that can be submitted.
|
|
4
|
-
|
|
5
|
-
# Overmap `FormBuilder` component
|
|
6
|
-
|
|
7
|
-
Allows a new form to be created or a new revision of an existing form to be made.
|
|
8
|
-
|
|
9
|
-
## Dev notes
|
|
10
|
-
|
|
11
|
-
To use unreleased versions of peer dependencies like @overmap-ai/blocks, follow
|
|
12
|
-
[these instructions](https://github.com/facebook/react/issues/14257#issuecomment-595183610) for how to use `yarn link` with react.
|
|
1
|
+
# Overmap `FormRenderer` component
|
|
2
|
+
|
|
3
|
+
Renders a form entry or renders a form that can be submitted.
|
|
4
|
+
|
|
5
|
+
# Overmap `FormBuilder` component
|
|
6
|
+
|
|
7
|
+
Allows a new form to be created or a new revision of an existing form to be made.
|
|
8
|
+
|
|
9
|
+
## Dev notes
|
|
10
|
+
|
|
11
|
+
To use unreleased versions of peer dependencies like @overmap-ai/blocks, follow
|
|
12
|
+
[these instructions](https://github.com/facebook/react/issues/14257#issuecomment-595183610) for how to use `yarn link` with react.
|
|
@@ -6,6 +6,7 @@ interface FieldActionsProps {
|
|
|
6
6
|
dragHandleProps: DraggableProvidedDragHandleProps | null | undefined;
|
|
7
7
|
editProps: FieldBuilderArgs;
|
|
8
8
|
insertAfterProps: FieldBuilderArgs;
|
|
9
|
+
duplicateProps: FieldBuilderArgs;
|
|
9
10
|
}
|
|
10
11
|
export declare const FieldActions: import("react").NamedExoticComponent<FieldActionsProps>;
|
|
11
12
|
export {};
|