@sapui5/sap.suite.ui.generic.template 1.142.0 → 1.143.0
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/suite/ui/generic/template/.library +5 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/ControllerImplementation.js +6 -9
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/DropDownController.js +1 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_en_US_saprigi.properties +3 -0
- package/src/sap/suite/ui/generic/template/ListReport/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/designtime/controls/SmartTable.designtime.js +12 -2
- package/src/sap/suite/ui/generic/template/designtime/utils/designtimeUtils.js +3 -10
- package/src/sap/suite/ui/generic/template/fragments/TableColumns.fragment.xml +1 -0
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/CommonEventHandlers.js +20 -1
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n.properties +0 -3
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_US_saprigi.properties +17 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/library.js +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/annotationHelpers/AnnotationHelperActionButtons.qunit.js +0 -27
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
(c) Copyright 2009-2015 SAP SE. All rights reserved
|
|
9
9
|
</copyright>
|
|
10
|
-
<version>1.
|
|
10
|
+
<version>1.143.0</version>
|
|
11
11
|
|
|
12
12
|
<documentation>Library with generic Suite UI templates.</documentation>
|
|
13
13
|
|
|
@@ -100,6 +100,10 @@
|
|
|
100
100
|
<exclude name="sap.cards.ap." external="true"/>
|
|
101
101
|
<exclude name=".*-dbg*" />
|
|
102
102
|
<exclude name=".*polyFill*" />
|
|
103
|
+
<exclude name=".*/support/**" />
|
|
104
|
+
<exclude name=".*/QuickCreate/**" />
|
|
105
|
+
<exclude name=".*/QuickView/**" />
|
|
106
|
+
<exclude name=".*/QuickTemplates/**" />
|
|
103
107
|
<exclude name="*" external="true"/> <!-- exclude files within current folder -->
|
|
104
108
|
</jscoverage>
|
|
105
109
|
<releasenotes
|
package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/ControllerImplementation.js
CHANGED
|
@@ -1019,17 +1019,14 @@ sap.ui.define(["sap/fe/navigation/SelectionVariant",
|
|
|
1019
1019
|
if (Device.system.phone && oState.oPage.getHeaderExpanded()) { //Check if isHeaderExpanded = true. If yes, collapse the header (on press of Go) (only for phone)
|
|
1020
1020
|
oState.oPage.setHeaderExpanded(false);
|
|
1021
1021
|
}
|
|
1022
|
-
var oModel = oController.getOwnerComponent().getModel();
|
|
1023
1022
|
oState.oController.getOwnerComponent().getModel("_templPriv").setProperty('/alp/filterChanged', false);
|
|
1024
1023
|
oState.oController.getOwnerComponent().getModel("_templPriv").setProperty("/generic/bDataAreShownInChart", true);
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
}
|
|
1032
|
-
});
|
|
1024
|
+
if (!oState._bIsStartingUp) {
|
|
1025
|
+
oState.oIappStateHandler.fnStoreCurrentAppStateAndAdjustURL();
|
|
1026
|
+
} else {
|
|
1027
|
+
// resolve starup promise
|
|
1028
|
+
oState.oIappStateHandler.fnResolveStartUpPromise();
|
|
1029
|
+
}
|
|
1033
1030
|
//chart selection needn't be retained for filter bar search / table personalisation
|
|
1034
1031
|
oState.oController.getOwnerComponent().getModel("_templPriv").setProperty('/alp/_ignoreChartSelections', true);
|
|
1035
1032
|
if (oState.oSmartTable) {
|
package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/DropDownController.js
CHANGED
|
@@ -208,6 +208,7 @@ sap.ui.define([
|
|
|
208
208
|
//Set the focus on the "Ok" button so that hiding the toolbar doesn't shift focus to outside the popover in chrome thus resulting in close of the dialog
|
|
209
209
|
//Shows the dotted focus for BCP: 2380033935
|
|
210
210
|
oList.getParent().getBeginButton().getDomRef().focus();
|
|
211
|
+
oList.setRememberSelections(false);
|
|
211
212
|
bShowOnlySelected = false;
|
|
212
213
|
oToolbarMenuButton.setTooltip(i18n.getResourceBundle().getText("VIS_VALUEHELP_DROPDOWN_VIEW_SELECTED"));
|
|
213
214
|
oToolbarMenuButton.setEnabled(false);
|
|
@@ -250,7 +251,6 @@ sap.ui.define([
|
|
|
250
251
|
growingThreshold: 15,
|
|
251
252
|
//compact filter does not show this message
|
|
252
253
|
showNoData: false,
|
|
253
|
-
rememberSelections:false,
|
|
254
254
|
infoToolbar: oToolbar,
|
|
255
255
|
items: {
|
|
256
256
|
path: sBindingPath,
|
|
@@ -63,6 +63,9 @@ OBJECT_NOT_EDITABLE=\u206A\u206A\u206A\u200C\u200D\u200B\u200B\u200C\u200D\u200D
|
|
|
63
63
|
|
|
64
64
|
NODATA_SMARTTABLE_LR=\u206A\u206A\u206A\u200C\u200C\u200B\u200D\u200B\u200B\u200C\u200D\u200D\u200C\u200B\u200D\u200B\u200B\u200D\u200C\u200C\u200B\u200D\u200C\u200B\u200B\u200C\u200D\u200B\u200B\u200B\u200D\u200D\u200D\u200B\u200B\u200D\u200B\u200D\u200B\u200C\u200C\u200B\u200B\u200C\u206ATo start, set the relevant filters and choose "Go".\u206A\u206A
|
|
65
65
|
|
|
66
|
+
NODATA_SMARTTABLE_LR_ILLUSTRATION_TITLE=\u206A\u206A\u206A\u200C\u200C\u200D\u200D\u200C\u200B\u200B\u200C\u200B\u200D\u200C\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200D\u200D\u200B\u200D\u200C\u200C\u200D\u200B\u200C\u200D\u200B\u200D\u200B\u200B\u200D\u200B\u200D\u200C\u200C\u200D\u200B\u200D\u206ALet\u2019s get some results\u206A\u206A
|
|
67
|
+
NODATA_SMARTTABLE_LR_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200D\u200C\u200C\u200B\u200C\u200C\u200D\u200B\u200C\u200B\u200C\u200D\u200C\u200D\u200B\u200D\u200D\u200B\u200C\u200C\u200B\u200D\u200B\u200C\u200B\u200D\u200D\u200B\u200B\u200C\u200B\u200D\u200B\u200B\u200C\u200D\u200D\u200D\u200C\u200B\u206AStart by providing your search or filter criteria.\u206A\u206A
|
|
68
|
+
|
|
66
69
|
SEARCH_FILTERS_KEYBOARD_SHORTCUT_DESC=\u206A\u206A\u206A\u200D\u200B\u200B\u200C\u200B\u200C\u200B\u200B\u200B\u200B\u200D\u200B\u200B\u200D\u200C\u200B\u200C\u200C\u200D\u200D\u200D\u200C\u200B\u200C\u200D\u200C\u200B\u200C\u200D\u200B\u200D\u200C\u200C\u200C\u200B\u200D\u200C\u200B\u200C\u206AGo\u206A\u206A
|
|
67
70
|
|
|
68
71
|
|
|
@@ -483,7 +483,7 @@ sap.ui.define([
|
|
|
483
483
|
// bGlobalSettingsOnly: true,
|
|
484
484
|
keyUser: true
|
|
485
485
|
};
|
|
486
|
-
const
|
|
486
|
+
const aUITableDesigntimeSettings = [
|
|
487
487
|
tableType,
|
|
488
488
|
condensedTableLayout,
|
|
489
489
|
widthIncludingColumnHeader,
|
|
@@ -492,10 +492,20 @@ sap.ui.define([
|
|
|
492
492
|
createMode,
|
|
493
493
|
selectionLimit,
|
|
494
494
|
threshold,
|
|
495
|
-
scrollThreshold
|
|
495
|
+
scrollThreshold
|
|
496
|
+
];
|
|
497
|
+
const aMTableDesigntimeSettings = [
|
|
498
|
+
tableType,
|
|
499
|
+
widthIncludingColumnHeader,
|
|
500
|
+
selectionMode,
|
|
501
|
+
selectAll,
|
|
502
|
+
createMode,
|
|
503
|
+
threshold,
|
|
496
504
|
addCardtoInsightsHidden
|
|
497
505
|
];
|
|
498
506
|
|
|
507
|
+
const designtimeSettings = (oSmartTable.getTableType() === "ResponsiveTable") ? aMTableDesigntimeSettings : aUITableDesigntimeSettings ;
|
|
508
|
+
|
|
499
509
|
return designtimeSettings.filter(oSetting => {
|
|
500
510
|
const sComponentName = designtimeUtils.getOwnerComponentFor(oSmartTable).getMetadata().getComponentName();
|
|
501
511
|
return !oSetting.restrictedTo || oSetting.restrictedTo.includes(sComponentName);
|
|
@@ -299,20 +299,13 @@ sap.ui.define([
|
|
|
299
299
|
return new Promise(function (resolve, reject) {
|
|
300
300
|
sap.ui.require([
|
|
301
301
|
"sap/m/Dialog",
|
|
302
|
-
"sap/m/Button"
|
|
303
|
-
|
|
304
|
-
], function (Dialog, Button, MessageStrip) {
|
|
305
|
-
const warningText = new MessageStrip({
|
|
306
|
-
type: MessageType.Warning,
|
|
307
|
-
showIcon: true,
|
|
308
|
-
text: "{i18n>RTA_CONFIGURATION_INFO_MESSAGE}"
|
|
309
|
-
});
|
|
310
|
-
warningText.addStyleClass("sapUiSmallMarginBottom");
|
|
302
|
+
"sap/m/Button"
|
|
303
|
+
], function (Dialog, Button) {
|
|
311
304
|
const dialog = new Dialog({
|
|
312
305
|
title: title,
|
|
313
306
|
contentWidth: size ? size.width : "550px",
|
|
314
307
|
contentHeight: size ? size.height : "300px",
|
|
315
|
-
content: [
|
|
308
|
+
content: [list],
|
|
316
309
|
resizable: true,
|
|
317
310
|
buttons: [
|
|
318
311
|
new Button({
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
<core:CustomData key="p13nData" value="{parts: [{path: 'listEntitySet>'}, {path: 'dataFieldValue>'}, {path: 'dataField>'}, {path: 'tableSettings>calculateWidthIncludingColumnHeader'}], formatter: 'AH.createP13N'}" />
|
|
47
47
|
<core:CustomData key="addCardtoInsightsConfig" value="{'isMultiValueColumn':true}"/>
|
|
48
48
|
<core:CustomData key="isFERenderedColumn" value="true"/>
|
|
49
|
+
<core:CustomData key="isExportable" value="false"/>
|
|
49
50
|
</customData>
|
|
50
51
|
<template:if test="{dataField>Label}">
|
|
51
52
|
<template:then>
|
|
@@ -959,7 +959,7 @@ sap.ui.define([
|
|
|
959
959
|
* @public
|
|
960
960
|
* @extends sap.ui.core.UIComponent
|
|
961
961
|
* @author SAP SE
|
|
962
|
-
* @version 1.
|
|
962
|
+
* @version 1.143.0
|
|
963
963
|
* @name sap.suite.ui.generic.template.lib.AppComponent
|
|
964
964
|
*/
|
|
965
965
|
var oAppComponent = UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
|
|
@@ -2686,6 +2686,24 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2686
2686
|
return (isObjectPage && oSmartTable) ? oCommonUtils.getContextText(sI18NKey, oSmartTable.getId(), null, aParams) : oCommonUtils.getText(sI18NKey, aParams);
|
|
2687
2687
|
}
|
|
2688
2688
|
|
|
2689
|
+
/**
|
|
2690
|
+
* This method remove the unsupported columns to get exported like 1/n navigation columns.
|
|
2691
|
+
*
|
|
2692
|
+
* @param {Object} oExportEvent - event handler for export.
|
|
2693
|
+
*/
|
|
2694
|
+
function removeUnsupportedExportColumns(oExportEvent) {
|
|
2695
|
+
var aColumns = oExportEvent.oSource.getTable().getColumns();
|
|
2696
|
+
aColumns.forEach(oColumn => {
|
|
2697
|
+
var aCustomData = oColumn.getCustomData();
|
|
2698
|
+
aCustomData.forEach(oCustomdata => {
|
|
2699
|
+
// Here if any columns custom data marked with "isExportable" key then we are ignoring those columns during export.
|
|
2700
|
+
if (oCustomdata.getKey() === "isExportable") {
|
|
2701
|
+
oExportEvent.mParameters.exportSettings.workbook.columns.splice(oExportEvent.mParameters.exportSettings.workbook.columns.findIndex((oCol) => oCol.columnId === oColumn.sId), 1);
|
|
2702
|
+
}
|
|
2703
|
+
});
|
|
2704
|
+
});
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2689
2707
|
/**
|
|
2690
2708
|
* This method listens "beforeExport" event from smart table and in the "Filters" section of exported file
|
|
2691
2709
|
* 1. Transforms the technical props (i.e. Removes the technical filters related to "Editable Status" filter
|
|
@@ -2695,7 +2713,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2695
2713
|
*
|
|
2696
2714
|
* @param {*} oExportEvent
|
|
2697
2715
|
*/
|
|
2698
|
-
function fnOnBeforeExport
|
|
2716
|
+
function fnOnBeforeExport(oExportEvent) {
|
|
2699
2717
|
var oUserExportSettings = oExportEvent.getParameter("userExportSettings"),
|
|
2700
2718
|
bIncludeFilterSettings = !!(oUserExportSettings && oUserExportSettings.includeFilterSettings),
|
|
2701
2719
|
aFilterSettings = oExportEvent.getParameter("filterSettings"),
|
|
@@ -2713,6 +2731,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2713
2731
|
filterSettings: (bIncludeFilterSettings ? aFilterSettings : []),
|
|
2714
2732
|
includeFilterSettings: bIncludeFilterSettings
|
|
2715
2733
|
};
|
|
2734
|
+
removeUnsupportedExportColumns(oExportEvent);
|
|
2716
2735
|
//Invoke the extension
|
|
2717
2736
|
oController.onBeforeExportTableExtension(oExportParams);
|
|
2718
2737
|
}
|
|
@@ -565,9 +565,6 @@ RTA_CONFIGURATION_TITLE_FILTER_BAR=Configure Filter Bar
|
|
|
565
565
|
# XTIT: Title text on Configurations dialog for Object Page
|
|
566
566
|
RTA_CONFIGURATION_TITLE_OBJECT_PAGE=Configure Object Page
|
|
567
567
|
|
|
568
|
-
# XMSG: Information message text in Configurations dialog
|
|
569
|
-
RTA_CONFIGURATION_INFO_MESSAGE=Some settings can only be applied to certain table types. Changes will only be visible after the application reloads.
|
|
570
|
-
|
|
571
568
|
# XBUT: Button text for Cancel on Configurations dialog
|
|
572
569
|
RTA_CONFIGURATION_CANCEL=Cancel
|
|
573
570
|
|
|
@@ -200,7 +200,7 @@ ST_CARD_CREATION_FAILURE_REASON_SEMANTIC_DATE_FILTERS=\u206A\u206A\u206A\u200C\u
|
|
|
200
200
|
|
|
201
201
|
ST_CARD_NAVIGATION_FAILURE_INFO=\u206A\u206A\u206A\u200D\u200B\u200C\u200D\u200B\u200C\u200D\u200C\u200B\u200D\u200D\u200B\u200D\u200D\u200C\u200C\u200C\u200D\u200C\u200C\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200C\u200B\u200B\u200D\u200B\u200D\u200B\u200D\u200C\u200B\u200D\u200C\u200B\u206ADirect navigation to the object details isn't possible from this insights card.\u206A\u206A
|
|
202
202
|
|
|
203
|
-
ST_AI_EE_BUTTON_LABEL=\u206A\u206A\u206A\u200C\u200C\u200C\u200D\u200B\u200D\u200B\u200D\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200D\u200D\u200B\u200B\u200B\u200D\u200D\u200C\u200C\u200D\u200B\u200B\u200D\u200B\u200D\u200D\u200C\u200D\u200B\u200B\u200D\u200D\u200C\u200B\
|
|
203
|
+
ST_AI_EE_BUTTON_LABEL=\u206A\u206A\u206A\u200C\u200C\u200C\u200D\u200B\u200D\u200B\u200D\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200D\u200D\u200B\u200B\u200B\u200D\u200D\u200C\u200C\u200D\u200B\u200B\u200D\u200B\u200D\u200D\u200C\u200D\u200B\u200B\u200D\u200D\u200C\u200B\u206AExplain\u206A\u206A
|
|
204
204
|
|
|
205
205
|
|
|
206
206
|
|
|
@@ -269,8 +269,16 @@ NOITEMS_SMARTTABLE_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200C\u200B\u200B
|
|
|
269
269
|
|
|
270
270
|
NOITEMS_SMARTTABLE_WITH_FILTER=\u206A\u206A\u206A\u200D\u200C\u200B\u200B\u200D\u200D\u200B\u200B\u200C\u200B\u200C\u200C\u200D\u200B\u200C\u200B\u200B\u200B\u200C\u200D\u200D\u200C\u200D\u200D\u200C\u200B\u200B\u200D\u200D\u200B\u200D\u200C\u200C\u200B\u200B\u200D\u200D\u200B\u200B\u200B\u206ANo items available. Try adjusting the search or filter parameters.\u206A\u206A
|
|
271
271
|
|
|
272
|
+
NOITEMS_SMARTTABLE_WITH_FILTER_ILLUSTRATION_TITLE=\u206A\u206A\u206A\u200D\u200D\u200D\u200B\u200D\u200D\u200B\u200B\u200B\u200C\u200C\u200D\u200D\u200D\u200C\u200C\u200D\u200D\u200B\u200C\u200C\u200B\u200B\u200B\u200B\u200D\u200B\u200C\u200B\u200C\u200C\u200C\u200B\u200B\u200B\u200C\u200D\u200D\u200D\u200D\u206ANo results found\u206A\u206A
|
|
273
|
+
|
|
274
|
+
NOITEMS_SMARTTABLE_WITH_FILTER_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200C\u200C\u200C\u200B\u200B\u200C\u200C\u200B\u200C\u200D\u200D\u200C\u200D\u200D\u200C\u200C\u200D\u200C\u200B\u200D\u200B\u200C\u200B\u200B\u200D\u200C\u200C\u200D\u200C\u200D\u200B\u200C\u200B\u200D\u200D\u200C\u200D\u200B\u200C\u200C\u200D\u206ATry changing your filter criteria.\u206A\u206A
|
|
275
|
+
|
|
272
276
|
NOITEMS_SMARTTABLE_WITH_FILTER_FOR_SEGMENTEDBUTTON=\u206A\u206A\u206A\u200C\u200B\u200B\u200C\u200B\u200B\u200C\u200B\u200C\u200B\u200D\u200B\u200D\u200C\u200C\u200D\u200D\u200B\u200B\u200C\u200B\u200C\u200D\u200C\u200C\u200C\u200C\u200C\u200D\u200B\u200B\u200B\u200C\u200C\u200C\u200D\u200B\u200B\u200B\u200D\u200D\u206AThere are no items for the selected filter criteria and table view.\u206A\u206A
|
|
273
277
|
|
|
278
|
+
NOITEMS_SMARTTABLE_WITH_FILTER_FOR_SEGMENTEDBUTTON_ILLUSTRATION_TITLE=\u206A\u206A\u206A\u200C\u200B\u200D\u200D\u200B\u200D\u200B\u200D\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u200B\u200C\u200B\u200C\u200D\u200C\u200C\u200B\u200B\u200B\u200B\u200D\u200C\u200B\u200C\u200C\u200D\u200B\u200D\u200B\u200B\u200C\u200B\u200B\u200B\u206ANo results found\u206A\u206A
|
|
279
|
+
|
|
280
|
+
NOITEMS_SMARTTABLE_WITH_FILTER_FOR_SEGMENTEDBUTTON_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200C\u200D\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200D\u200D\u200B\u200B\u200B\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200D\u200D\u200D\u200B\u200D\u200B\u200C\u200C\u200B\u200C\u200C\u200D\u200C\u200D\u200B\u200D\u200D\u200C\u200B\u206ATry changing the view or filter criteria.\u206A\u206A
|
|
281
|
+
|
|
274
282
|
NOITEMS_SMARTCHART=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200B\u200C\u200D\u200D\u200D\u200B\u200C\u200C\u200B\u200D\u200B\u200B\u200D\u200B\u200B\u200C\u200B\u200D\u200B\u200B\u200D\u200B\u200C\u200B\u200C\u200B\u200D\u200B\u200C\u200C\u200D\u200B\u200B\u200B\u200D\u200C\u200B\u206ANo data found.\u206A\u206A
|
|
275
283
|
|
|
276
284
|
NOITEMS_LR_SMARTCHART=\u206A\u206A\u206A\u200D\u200C\u200B\u200B\u200C\u200C\u200C\u200B\u200C\u200B\u200B\u200D\u200C\u200B\u200B\u200C\u200C\u200D\u200B\u200C\u200C\u200D\u200C\u200C\u200C\u200D\u200C\u200B\u200B\u200B\u200D\u200D\u200C\u200D\u200D\u200C\u200C\u200B\u200C\u200D\u206AThere is no data for the selected filter criteria and chart view.\u206A\u206A
|
|
@@ -287,8 +295,16 @@ NOITEMS_LR_SMARTTABLE_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200D\u200D\u2
|
|
|
287
295
|
|
|
288
296
|
NOITEMS_LR_SMARTTABLE_WITH_FILTER=\u206A\u206A\u206A\u200D\u200D\u200C\u200D\u200D\u200C\u200D\u200B\u200D\u200C\u200B\u200D\u200B\u200D\u200D\u200D\u200D\u200C\u200D\u200B\u200B\u200D\u200D\u200B\u200D\u200C\u200B\u200D\u200D\u200B\u200B\u200B\u200C\u200B\u200B\u200C\u200B\u200D\u200C\u200B\u206ANo data found. Try adjusting the search or filter criteria.\u206A\u206A
|
|
289
297
|
|
|
298
|
+
NOITEMS_LR_SMARTTABLE_WITH_FILTER_ILLUSTRATION_TITLE=\u206A\u206A\u206A\u200C\u200C\u200B\u200B\u200B\u200B\u200B\u200B\u200B\u200B\u200C\u200B\u200D\u200C\u200C\u200D\u200B\u200D\u200D\u200B\u200B\u200B\u200D\u200D\u200D\u200C\u200D\u200D\u200D\u200D\u200C\u200C\u200C\u200C\u200B\u200B\u200D\u200C\u200D\u200B\u200C\u206ANo results found\u206A\u206A
|
|
299
|
+
|
|
300
|
+
NOITEMS_LR_SMARTTABLE_WITH_FILTER_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200D\u200C\u200C\u200D\u200C\u200B\u200C\u200B\u200C\u200B\u200C\u200B\u200D\u200D\u200D\u200B\u200C\u200B\u200B\u200B\u200B\u200C\u200D\u200B\u200C\u200D\u200B\u200C\u200C\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200D\u200C\u206ATry changing your filter criteria.\u206A\u206A
|
|
301
|
+
|
|
290
302
|
NOITEMS_MULTIVIEW_LR_SMARTTABLE_WITH_FILTER=\u206A\u206A\u206A\u200C\u200C\u200B\u200C\u200B\u200B\u200D\u200B\u200C\u200D\u200C\u200B\u200C\u200D\u200C\u200B\u200D\u200D\u200D\u200D\u200D\u200D\u200D\u200C\u200C\u200C\u200C\u200C\u200D\u200B\u200B\u200D\u200C\u200B\u200B\u200C\u200C\u200D\u200C\u200C\u200B\u206AThere is no data for the selected filter criteria and table view.\u206A\u206A
|
|
291
303
|
|
|
304
|
+
NOITEMS_MULTIVIEW_LR_SMARTTABLE_WITH_FILTER_ILLUSTRATION_TITLE=\u206A\u206A\u206A\u200D\u200B\u200D\u200D\u200C\u200C\u200C\u200C\u200C\u200D\u200C\u200B\u200D\u200C\u200B\u200C\u200B\u200C\u200C\u200C\u200B\u200D\u200D\u200C\u200B\u200D\u200B\u200D\u200C\u200B\u200C\u200D\u200D\u200D\u200C\u200C\u200B\u206ANo results found\u206A\u206A
|
|
305
|
+
|
|
306
|
+
NOITEMS_MULTIVIEW_LR_SMARTTABLE_WITH_FILTER_ILLUSTRATION_DESCRIPTION=\u206A\u206A\u206A\u200C\u200B\u200D\u200B\u200D\u200D\u200B\u200C\u200B\u200B\u200B\u200D\u200B\u200D\u200D\u200B\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200D\u200C\u200B\u200B\u200D\u200C\u200B\u200B\u200B\u200C\u200C\u200D\u200B\u200D\u200D\u200B\u206ATry changing the view or filter criteria.\u206A\u206A
|
|
307
|
+
|
|
292
308
|
ST_GENERIC_DELETE_WITH_WARNING_SUGGESTION_SINGULAR=\u206A\u206A\u206A\u200D\u200D\u200B\u200B\u200D\u200B\u200C\u200B\u200C\u200C\u200D\u200C\u200C\u200B\u200B\u200C\u200C\u200B\u200B\u200C\u200C\u200C\u200D\u200D\u200C\u200D\u200B\u200C\u200C\u200B\u200D\u200C\u200C\u200D\u200D\u200B\u200C\u200D\u200C\u200C\u206AHint\: To ignore warnings, delete the object individually.\u206A\u206A
|
|
293
309
|
|
|
294
310
|
ST_GENERIC_DELETE_WITH_WARNING_SUGGESTION_PLURAL=\u206A\u206A\u206A\u200C\u200C\u200B\u200B\u200D\u200D\u200C\u200B\u200C\u200D\u200C\u200C\u200B\u200D\u200B\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200D\u200D\u200D\u200C\u200B\u200C\u200D\u200D\u200B\u200B\u200C\u200B\u200C\u200D\u200B\u200D\u200B\u200B\u200C\u206AHint\: To ignore warnings, delete the objects individually.\u206A\u206A
|
|
@@ -3228,7 +3228,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
3228
3228
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
3229
3229
|
* @public
|
|
3230
3230
|
* @extends sap.ui.base.Object
|
|
3231
|
-
* @version 1.
|
|
3231
|
+
* @version 1.143.0
|
|
3232
3232
|
* @since 1.30.0
|
|
3233
3233
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
3234
3234
|
*/
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/* QUnit tests for getDeleteActionButtonVisibility */
|
|
2
|
-
|
|
3
|
-
sap.ui.define([
|
|
4
|
-
"sap/suite/ui/generic/template/ObjectPage/annotationHelpers/AnnotationHelperActionButtons"
|
|
5
|
-
], function(AnnotationHelperActionButtons) {
|
|
6
|
-
"use strict";
|
|
7
|
-
|
|
8
|
-
QUnit.module("getDeleteActionButtonVisibility");
|
|
9
|
-
|
|
10
|
-
QUnit.test("should return true when delete action is visible", function(assert) {
|
|
11
|
-
var oContext = {/* mock context for visible case */};
|
|
12
|
-
var result = AnnotationHelperActionButtons.getDeleteActionButtonVisibility(oContext);
|
|
13
|
-
assert.strictEqual(result, true, "Delete button should be visible");
|
|
14
|
-
});
|
|
15
|
-
|
|
16
|
-
QUnit.test("should return false when delete action is not visible", function(assert) {
|
|
17
|
-
var oContext = {/* mock context for not visible case */};
|
|
18
|
-
var result = AnnotationHelperActionButtons.getDeleteActionButtonVisibility(oContext);
|
|
19
|
-
assert.strictEqual(result, false, "Delete button should not be visible");
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
QUnit.test("should handle edge cases gracefully", function(assert) {
|
|
23
|
-
var oContext = null;
|
|
24
|
-
var result = AnnotationHelperActionButtons.getDeleteActionButtonVisibility(oContext);
|
|
25
|
-
assert.strictEqual(result, false, "Delete button should not be visible for null context");
|
|
26
|
-
});
|
|
27
|
-
});
|