@veloceapps/sdk 8.0.0-71 → 8.0.0-72
Sign up to get free protection for your applications and to get access to all the features.
- package/cms/types/common.types.d.ts +1 -0
- package/esm2020/cms/types/common.types.mjs +1 -1
- package/esm2020/cms/utils/ui-builder-layout.utils.mjs +3 -1
- package/fesm2015/veloceapps-sdk-cms.mjs +2 -2
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +2 -0
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/package.json +1 -1
@@ -2312,6 +2312,7 @@ const constructPageChildren = (path, layout) => {
|
|
2312
2312
|
const constructRegion = (name, parentPath) => {
|
2313
2313
|
return {
|
2314
2314
|
name,
|
2315
|
+
displayName: name,
|
2315
2316
|
path: `${parentPath}/${name}`,
|
2316
2317
|
type: 'REGION',
|
2317
2318
|
children: [],
|
@@ -2321,6 +2322,7 @@ const constructRegion = (name, parentPath) => {
|
|
2321
2322
|
const constructPage = (name, pageType, layout, configuredStyles) => {
|
2322
2323
|
return {
|
2323
2324
|
name,
|
2325
|
+
displayName: name,
|
2324
2326
|
path: name,
|
2325
2327
|
type: 'PAGE',
|
2326
2328
|
layout,
|