@arquimedes.co/eureka-forms 1.9.47 → 1.9.49-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.
Files changed (2) hide show
  1. package/dist/App.js +8 -0
  2. package/package.json +1 -1
package/dist/App.js CHANGED
@@ -399,6 +399,9 @@ var mapOriginalValues = function (originalValues, form) {
399
399
  }
400
400
  }
401
401
  }
402
+ else {
403
+ newValues[idValue] = originalValues[idValue];
404
+ }
402
405
  }
403
406
  return newValues;
404
407
  };
@@ -427,6 +430,11 @@ var mapOriginalValue = function (step, value, form) {
427
430
  break;
428
431
  }
429
432
  default:
433
+ if (step.type.startsWith('CBR_') &&
434
+ (value === null || value === void 0 ? void 0 : value.id) &&
435
+ typeof value.id === 'number') {
436
+ return __assign(__assign({}, value), { id: value.id.toString() });
437
+ }
430
438
  return value;
431
439
  }
432
440
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arquimedes.co/eureka-forms",
3
3
  "repository": "git://github.com/Arquimede5/Eureka-Forms.git",
4
- "version": "1.9.47",
4
+ "version":"1.9.49-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",