@opengov/form-renderer 0.2.11 → 0.2.13
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/dist/lib.js +8047 -9125
- package/dist/lib.umd.cjs +61 -61
- package/dist/renderer/Form.d.ts +1 -2
- package/dist/stories/FormRenderer.stories.d.ts +0 -1
- package/package.json +1 -1
- package/dist/stories/AsyncForm.d.ts +0 -1
package/dist/renderer/Form.d.ts
CHANGED
|
@@ -10,9 +10,8 @@ import { SubmitOptions } from './types';
|
|
|
10
10
|
* @param submitOptions - The submit options to use.
|
|
11
11
|
* @returns A Form component.
|
|
12
12
|
*/
|
|
13
|
-
export default function Form({ children, formOptions, submitOptions,
|
|
13
|
+
export default function Form({ children, formOptions, submitOptions, }: {
|
|
14
14
|
children: React.ReactNode;
|
|
15
15
|
formOptions?: UseFormProps;
|
|
16
16
|
submitOptions?: SubmitOptions;
|
|
17
|
-
loading?: boolean;
|
|
18
17
|
}): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function AsyncFormExample(): import("react/jsx-runtime").JSX.Element;
|