@limetech/lime-elements 35.1.0-next.6 → 35.1.0-next.9

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.
@@ -24077,13 +24077,11 @@ function renderCollapsibleField(props) {
24077
24077
  }, renderDescription(props.description), renderProperties(props.properties, props.schema));
24078
24078
  }
24079
24079
  function getSchemaObjectPropertyPath(schema, subSchema) {
24080
- var _a;
24080
+ var _a, _b;
24081
24081
  const refPrefixLength = 2;
24082
24082
  const matchAllForwardSlashes = /\//g;
24083
- const rootPath = schema.$ref
24084
- .replace(matchAllForwardSlashes, '.')
24085
- .slice(refPrefixLength);
24086
- const subSchemaPath = (_a = subSchema.$id) === null || _a === void 0 ? void 0 : _a.replace('_', '.properties.');
24083
+ const rootPath = (_a = schema.$ref) === null || _a === void 0 ? void 0 : _a.replace(matchAllForwardSlashes, '.').slice(refPrefixLength);
24084
+ const subSchemaPath = (_b = subSchema.$id) === null || _b === void 0 ? void 0 : _b.replace('_', '.properties.');
24087
24085
  return subSchemaPath.replace('root', rootPath);
24088
24086
  }
24089
24087
  function renderProperties(properties, schema) {