@dmitryvim/form-builder 0.1.18 → 0.1.19
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/form-builder.js +3 -0
- package/package.json +1 -1
package/dist/form-builder.js
CHANGED
|
@@ -88,6 +88,9 @@ function validateSchema(schema) {
|
|
|
88
88
|
// Form rendering
|
|
89
89
|
function renderForm(schema, prefill) {
|
|
90
90
|
console.log('🔧 FormBuilder.renderForm called with:', { schema, prefill });
|
|
91
|
+
console.log('🔧 Arguments length:', arguments.length);
|
|
92
|
+
console.log('🔧 Argument 0 (schema):', typeof schema, schema?.title);
|
|
93
|
+
console.log('🔧 Argument 1 (prefill):', typeof prefill, prefill);
|
|
91
94
|
console.log('🔧 Prefill keys:', Object.keys(prefill || {}));
|
|
92
95
|
console.log('🔧 Schema element keys:', schema.elements?.map(e => e.key));
|
|
93
96
|
|