drill-widgets 2.7.3 → 2.7.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/README.md +1 -6
- package/dist/{begin-widgets.es.js → drill-widgets.es.js} +277 -689
- package/dist/{begin-widgets.umd.js → drill-widgets.umd.js} +104 -186
- package/dist/lib.d.ts +2 -2
- package/package.json +18 -3
package/README.md
CHANGED
|
@@ -422,12 +422,7 @@ if (instanceData && instanceData.steps) {
|
|
|
422
422
|
console.log("Data URL:", detail.dataURL);
|
|
423
423
|
// Save signature data to your backend
|
|
424
424
|
// Note: This callback is triggered when user clicks "Next" or "Submit"
|
|
425
|
-
saveSignatureData(
|
|
426
|
-
detail.instanceId,
|
|
427
|
-
detail.questionId,
|
|
428
|
-
detail.svgData,
|
|
429
|
-
detail.dataURL
|
|
430
|
-
);
|
|
425
|
+
saveSignatureData(detail.instanceId, detail.questionId, detail.svgData, detail.dataURL);
|
|
431
426
|
},
|
|
432
427
|
onFileUploaded: (detail) => {
|
|
433
428
|
console.log("File uploaded:", detail.questionId);
|