@jsonforms/core 3.2.0-alpha.0 → 3.2.0-alpha.1

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.
@@ -1387,7 +1387,7 @@ var compose = function (path1, path2) {
1387
1387
  };
1388
1388
  var toDataPathSegments = function (schemaPath) {
1389
1389
  var s = schemaPath
1390
- .replace(/(anyOf|allOf|oneOf)\/[\d]\//g, '')
1390
+ .replace(/(anyOf|allOf|oneOf)\/[\d]+\//g, '')
1391
1391
  .replace(/(then|else)\//g, '');
1392
1392
  var segments = s.split('/');
1393
1393
  var decodedSegments = segments.map(decode);