@arquimedes.co/eureka-forms 1.0.5-test → 1.0.8-test
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.
|
@@ -219,7 +219,11 @@ var updateValue = function (idStep, values, form, customSteps) {
|
|
|
219
219
|
break;
|
|
220
220
|
}
|
|
221
221
|
default:
|
|
222
|
-
|
|
222
|
+
console.log('CustomSteps:', customSteps);
|
|
223
|
+
console.log('values');
|
|
224
|
+
console.log('STEP', step);
|
|
225
|
+
var custom = customSteps[step.type];
|
|
226
|
+
console.log('UPDATE:', custom);
|
|
223
227
|
if (custom !== undefined) {
|
|
224
228
|
custom.updateValue(idStep, values, form);
|
|
225
229
|
}
|
package/package.json
CHANGED