@sapui5/sap.fe.templates 1.105.1 → 1.105.3

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.
@@ -101,7 +101,7 @@ class ObjectPageController extends PageController {
101
101
  @usingExtension(MassEdit)
102
102
  massEdit!: MassEdit;
103
103
  private mCustomSectionExtensionAPIs?: Record<string, ObjectPageExtensionAPI>;
104
- private extensionAPI?: ObjectPageExtensionAPI;
104
+ protected extensionAPI?: ObjectPageExtensionAPI;
105
105
  private oResourceBundle?: ResourceBundle;
106
106
  private bSectionNavigated?: boolean;
107
107
  private switchDraftAndActivePopOver?: Popover;
@@ -6,16 +6,19 @@
6
6
  xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"
7
7
  template:require="{
8
8
  OP: 'sap/fe/templates/ObjectPage/ObjectPageTemplating',
9
- UI: 'sap/fe/core/templating/UIFormatters'
9
+ UI: 'sap/fe/core/templating/UIFormatters',
10
+ DATAFIELDHELPER : 'sap/fe/core/converters/helpers/DataFieldHelper'
10
11
  }"
11
12
  >
12
13
  <template:with path="entityType>@com.sap.vocabularies.UI.v1.HeaderInfo" var="headerInfo">
13
- <!-- <template:if test="{= !DATAFIELDHELPER.isReferencePropertyStaticallyHidden(${headerInfo>Description@@UI.getDataModelObjectPath})}"> -->
14
- <Title
15
- text="{= OP.getExpressionForTitle(${headerInfo>@@UI.getConverterContext}, ${viewData>}, ${fullContextPath>@@UI.getDataModelObjectPath}, ${entitySet>@com.sap.vocabularies.Common.v1.DraftRoot})}"
16
- wrapping="true"
17
- level="H2"
18
- />
19
- <!-- </template:if> -->
14
+ <template:if test="{entityType>@com.sap.vocabularies.UI.v1.HeaderInfo/Title}">
15
+ <template:if test="{= !DATAFIELDHELPER.isHeaderStaticallyHidden(${headerInfo>Title@@UI.getDataModelObjectPath})}">
16
+ <Title
17
+ text="{= OP.getExpressionForTitle(${headerInfo>@@UI.getConverterContext}, ${viewData>}, ${fullContextPath>@@UI.getDataModelObjectPath}, ${entitySet>@com.sap.vocabularies.Common.v1.DraftRoot})}"
18
+ wrapping="true"
19
+ level="H2"
20
+ />
21
+ </template:if>
22
+ </template:if>
20
23
  </template:with>
21
24
  </core:FragmentDefinition>
@@ -32,7 +32,7 @@ sap.ui.define(["sap/f/library", "sap/fe/common/library", "sap/fe/core/library",
32
32
  controls: [],
33
33
  elements: [],
34
34
  // eslint-disable-next-line no-template-curly-in-string
35
- version: "1.105.1",
35
+ version: "1.105.3",
36
36
  noLibraryCSS: true
37
37
  });
38
38