@opengov/form-renderer 0.2.11 → 0.2.12

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.
@@ -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, loading, }: {
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;
@@ -4,4 +4,3 @@ export default meta;
4
4
  type Story = StoryObj<typeof meta>;
5
5
  export declare const Basic: Story;
6
6
  export declare const Compound: Story;
7
- export declare const AsyncForm: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengov/form-renderer",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "OpenGov Smart Forms form renderer",
5
5
  "type": "module",
6
6
  "files": [
@@ -1 +0,0 @@
1
- export default function AsyncFormExample(): import("react/jsx-runtime").JSX.Element;