@stubber/form-fields 1.0.4 → 1.0.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.
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
let accordionValue = collapsed ? "" : "item-1";
|
|
32
32
|
|
|
33
33
|
function handleValueChange(value) {
|
|
34
|
-
console.log("Accordion value changed to:", value);
|
|
34
|
+
// console.log("Accordion value changed to:", value);
|
|
35
35
|
collapsed = value !== "item-1";
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
// Debug: Track changes in your reactive variables.
|
|
39
|
-
$: console.log("allChildrenConditionsChecked =>", allChildrenConditionsChecked);
|
|
40
|
-
$: console.log("collapsed =>", collapsed);
|
|
41
|
-
$: console.log("accordionValue =>", accordionValue);
|
|
39
|
+
// $: console.log("allChildrenConditionsChecked =>", allChildrenConditionsChecked);
|
|
40
|
+
// $: console.log("collapsed =>", collapsed);
|
|
41
|
+
// $: console.log("accordionValue =>", accordionValue);
|
|
42
42
|
</script>
|
|
43
43
|
|
|
44
44
|
<div class="fade-container {!allChildrenConditionsChecked ? 'fade-hidden' : ''}">
|
package/dist/utils/createForm.js
CHANGED
|
@@ -481,7 +481,7 @@ export function createForm(opts) {
|
|
|
481
481
|
pre_submit_results[state_key] = result;
|
|
482
482
|
}
|
|
483
483
|
}
|
|
484
|
-
console.log("pre_submit_results", pre_submit_results);
|
|
484
|
+
// console.log("pre_submit_results", pre_submit_results);
|
|
485
485
|
return _.cloneDeep(get(store));
|
|
486
486
|
}
|
|
487
487
|
|