@sapui5/sap.fe.templates 1.136.2 → 1.136.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.
- package/package.json +1 -1
- package/src/sap/fe/templates/.library +1 -1
- package/src/sap/fe/templates/AnalyticalListPage/manifest.json +1 -1
- package/src/sap/fe/templates/ListReport/ListReport.view.xml +47 -49
- package/src/sap/fe/templates/ListReport/manifest.json +1 -1
- package/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.js +8 -1
- package/src/sap/fe/templates/ObjectPage/ObjectPageController.controller.ts +9 -0
- package/src/sap/fe/templates/ObjectPage/components/CollaborationDraft.js +3 -2
- package/src/sap/fe/templates/ObjectPage/components/CollaborationDraft.tsx +2 -1
- package/src/sap/fe/templates/ObjectPage/manifest.json +1 -1
- package/src/sap/fe/templates/ObjectPage/view/fragments/Heading.fragment.xml +30 -1
- package/src/sap/fe/templates/library.js +1 -1
- package/src/sap/fe/templates/messagebundle_cnr.properties +1 -1
- package/src/sap/fe/templates/messagebundle_fr_CA.properties +3 -3
- package/src/sap/fe/templates/messagebundle_sh.properties +1 -1
- package/src/sap/fe/templates/messagebundle_sr.properties +1 -1
package/package.json
CHANGED
|
@@ -194,56 +194,54 @@
|
|
|
194
194
|
</template:if>
|
|
195
195
|
</f:DynamicPageTitle>
|
|
196
196
|
</f:title>
|
|
197
|
-
<
|
|
198
|
-
<f:
|
|
199
|
-
<
|
|
200
|
-
<
|
|
201
|
-
<template:
|
|
202
|
-
<
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
<template:
|
|
207
|
-
<
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
disableDraftEditStateFilter="{filterBarContext>disableDraftEditStateFilter}"
|
|
228
|
-
/>
|
|
229
|
-
</template:with>
|
|
230
|
-
</template:then>
|
|
231
|
-
</template:if>
|
|
232
|
-
<template:if test="{converterContext>easyFilterEnabled}">
|
|
233
|
-
<template:then>
|
|
234
|
-
<macroAI:EasyFilterBar
|
|
235
|
-
id="fe::EasyFilterBar"
|
|
236
|
-
contextPath="{entityType>}"
|
|
237
|
-
filterBar="{converterContext>filterBarId}"
|
|
238
|
-
contentSwitcher="{= ID.generate([ ${converterContext>filterBarId}, 'LayoutToggle']) }"
|
|
239
|
-
contentSwitcherKey="ai"
|
|
240
|
-
visible="false"
|
|
197
|
+
<template:if test="{= !${converterContext>hideFilterBar} }">
|
|
198
|
+
<f:header>
|
|
199
|
+
<f:DynamicPageHeader pinnable="{converterContext>showPinnableToggle}">
|
|
200
|
+
<VBox>
|
|
201
|
+
<template:if test="{= !!${converterContext>expandedHeaderFragment} }">
|
|
202
|
+
<template:then>
|
|
203
|
+
<core:Fragment fragmentName="{converterContext>expandedHeaderFragment}" type="XML" />
|
|
204
|
+
</template:then>
|
|
205
|
+
</template:if>
|
|
206
|
+
<template:with path="converterContext>filterBar" var="filterBarContext">
|
|
207
|
+
<macroInternal:FilterBar
|
|
208
|
+
id="{converterContext>filterBarId}"
|
|
209
|
+
_applyIdToContent="true"
|
|
210
|
+
metaPath="{entityType>}"
|
|
211
|
+
variantBackreference="{= LR.getVariantBackReference(${viewData>}, ${converterContext>} )}"
|
|
212
|
+
selectionFields="{filterBarContext>selectionFields}"
|
|
213
|
+
internalFilterChanged=".handlers.onFiltersChanged"
|
|
214
|
+
filterConditions="{parts:[{path:'converterContext>filterConditions'}, {path:'entitySet>'}, {path:'viewData>'}, {path:'filterBarContext>showDraftEditStatus'}], formatter: 'FILTER.getFilterConditions'}"
|
|
215
|
+
internalSearch=".handlers.onSearch"
|
|
216
|
+
hideBasicSearch="{filterBarContext>hideBasicSearch}"
|
|
217
|
+
showClearButton="{filterBarContext>showClearButton}"
|
|
218
|
+
afterClear=".onAfterClear"
|
|
219
|
+
liveMode="{viewData>/liveMode}"
|
|
220
|
+
showAdaptFiltersButton="true"
|
|
221
|
+
p13nMode="Item,Value"
|
|
222
|
+
useSemanticDateRange="{converterContext>useSemanticDateRange}"
|
|
223
|
+
suspendSelection="true"
|
|
224
|
+
toggleControlId="{= ${converterContext>/filterLayout} === 'compactvisual' || ${converterContext>easyFilterEnabled} ? ID.generate([ ${converterContext>filterBarId}, 'LayoutToggle']) : undefined }"
|
|
225
|
+
initialLayout="{= ${converterContext>/filterLayout} === 'compactvisual' ? ${converterContext>/filterInitialLayout} : undefined }"
|
|
226
|
+
disableDraftEditStateFilter="{filterBarContext>disableDraftEditStateFilter}"
|
|
241
227
|
/>
|
|
242
|
-
</template:
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
228
|
+
</template:with>
|
|
229
|
+
<template:if test="{converterContext>easyFilterEnabled}">
|
|
230
|
+
<template:then>
|
|
231
|
+
<macroAI:EasyFilterBar
|
|
232
|
+
id="fe::EasyFilterBar"
|
|
233
|
+
contextPath="{entityType>}"
|
|
234
|
+
filterBar="{converterContext>filterBarId}"
|
|
235
|
+
contentSwitcher="{= ID.generate([ ${converterContext>filterBarId}, 'LayoutToggle']) }"
|
|
236
|
+
contentSwitcherKey="ai"
|
|
237
|
+
visible="false"
|
|
238
|
+
/>
|
|
239
|
+
</template:then>
|
|
240
|
+
</template:if>
|
|
241
|
+
</VBox>
|
|
242
|
+
</f:DynamicPageHeader>
|
|
243
|
+
</f:header>
|
|
244
|
+
</template:if>
|
|
247
245
|
<f:content>
|
|
248
246
|
<template:if test="{= ${converterContext>views}.length > 0}">
|
|
249
247
|
<template:if test="{converterContext>multiViewsControl}">
|