@entrypulse/builder 1.2.4 → 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/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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entrypulse/builder",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "type": "module",
5
5
  "description": "A customizable form builder with drag-and-drop functionality",
6
6
  "main": "./dist/entry-pulse.js",