@limetech/lime-elements 35.1.0-next.5 → 35.1.0-next.8
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.
- package/dist/cjs/limel-form.cjs.entry.js +3 -5
- package/dist/cjs/limel-list_3.cjs.entry.js +1 -1
- package/dist/cjs/limel-menu-list.cjs.entry.js +1 -1
- package/dist/collection/components/form/templates/object-field.js +3 -5
- package/dist/collection/components/list/list.css +1 -0
- package/dist/collection/components/menu-list/menu-list.css +1 -0
- package/dist/collection/style/internal/z-index.scss +0 -3
- package/dist/esm/limel-form.entry.js +3 -5
- package/dist/esm/limel-list_3.entry.js +1 -1
- package/dist/esm/limel-menu-list.entry.js +1 -1
- package/dist/lime-elements/lime-elements.esm.js +1 -1
- package/dist/lime-elements/p-1a2ffe75.entry.js +82 -0
- package/dist/lime-elements/{p-b8a0454f.entry.js → p-6d50aa71.entry.js} +1 -1
- package/dist/lime-elements/p-eb13837f.entry.js +1 -0
- package/dist/lime-elements/style/internal/z-index.scss +0 -3
- package/package.json +2 -2
- package/dist/lime-elements/p-b91dc1ef.entry.js +0 -1
- package/dist/lime-elements/p-c7953a05.entry.js +0 -82
|
@@ -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
|
-
|
|
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) {
|