@entrypulse/builder 1.2.3 → 1.2.5
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/entry-pulse.js +13482 -10550
- package/dist/entry-pulse.js.map +1 -1
- package/dist/entry-pulse.umd.cjs +53 -52
- package/dist/entry-pulse.umd.cjs.map +1 -1
- package/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -889,6 +889,13 @@ declare interface FormPreviewProps {
|
|
|
889
889
|
* - "array": Returns an array of objects with id, value, type, and category
|
|
890
890
|
*/
|
|
891
891
|
submissionFormat?: SubmissionFormat;
|
|
892
|
+
/**
|
|
893
|
+
* Debug mode (default: false). When true, the form is not submitted
|
|
894
|
+
* (onSubmit is not called) and the transformed data is displayed as
|
|
895
|
+
* JSON below the form instead. When false, submission proceeds
|
|
896
|
+
* normally and no JSON output is shown.
|
|
897
|
+
*/
|
|
898
|
+
debug?: boolean;
|
|
892
899
|
}
|
|
893
900
|
|
|
894
901
|
export declare interface FormSchema {
|
|
@@ -1634,6 +1641,13 @@ declare interface WizardFormProps {
|
|
|
1634
1641
|
* - "array": Returns an array of objects with id, value, type, and category
|
|
1635
1642
|
*/
|
|
1636
1643
|
submissionFormat?: SubmissionFormat;
|
|
1644
|
+
/**
|
|
1645
|
+
* Debug mode (default: false). When true, the form is not submitted
|
|
1646
|
+
* (onSubmit is not called) and the transformed data is displayed as
|
|
1647
|
+
* JSON below the form instead. When false, submission proceeds
|
|
1648
|
+
* normally and no JSON output is shown.
|
|
1649
|
+
*/
|
|
1650
|
+
debug?: boolean;
|
|
1637
1651
|
}
|
|
1638
1652
|
|
|
1639
1653
|
export declare interface WizardStep {
|