@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.
@@ -1225,7 +1225,7 @@ const compose = (path1, path2) => {
1225
1225
  };
1226
1226
  const toDataPathSegments = (schemaPath) => {
1227
1227
  const s = schemaPath
1228
- .replace(/(anyOf|allOf|oneOf)\/[\d]\//g, '')
1228
+ .replace(/(anyOf|allOf|oneOf)\/[\d]+\//g, '')
1229
1229
  .replace(/(then|else)\//g, '');
1230
1230
  const segments = s.split('/');
1231
1231
  const decodedSegments = segments.map(decode);