@arquimedes.co/eureka-forms 1.9.25-test → 1.9.26-test

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.
Files changed (2) hide show
  1. package/dist/App.d.ts +4 -2
  2. package/package.json +1 -1
package/dist/App.d.ts CHANGED
@@ -27,8 +27,10 @@ export interface AppProps {
27
27
  customSteps?: Record<string, CustomStep>;
28
28
  /** Custom function to call on send */
29
29
  customSend?: (values: any, reload: Function) => Promise<void>;
30
- /** Custom submit buttons */
31
- customSubmit?: JSX.Element;
30
+ customForm?: {
31
+ form?: any;
32
+ submit?: JSX.Element;
33
+ };
32
34
  /** Function to call on postview to fetch the download url of a file */
33
35
  fetchDownloadUrl?: (S3Key: string, fileName: string) => Promise<string>;
34
36
  /** Function to call after the confimation dialog has been closed */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arquimedes.co/eureka-forms",
3
3
  "repository": "git://github.com/Arquimede5/Eureka-Forms.git",
4
- "version":"1.9.25-test",
4
+ "version":"1.9.26-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",