@sapui5/sap.suite.ui.generic.template 1.142.2 → 1.143.1

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.
Files changed (26) hide show
  1. package/package.json +1 -1
  2. package/src/sap/suite/ui/generic/template/.library +5 -1
  3. package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/ControllerImplementation.js +6 -9
  4. package/src/sap/suite/ui/generic/template/AnalyticalListPage/controller/DropDownController.js +1 -1
  5. package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
  6. package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
  7. package/src/sap/suite/ui/generic/template/ListReport/controller/ControllerImplementation.js +2 -5
  8. package/src/sap/suite/ui/generic/template/ListReport/controller/IappStateHandler.js +2 -2
  9. package/src/sap/suite/ui/generic/template/ListReport/i18n/i18n_en_US_saprigi.properties +3 -0
  10. package/src/sap/suite/ui/generic/template/ListReport/manifest.json +1 -1
  11. package/src/sap/suite/ui/generic/template/ObjectPage/annotationHelpers/AnnotationHelperActionButtons.js +2 -8
  12. package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
  13. package/src/sap/suite/ui/generic/template/ObjectPage/view/fragments/Actions.fragment.xml +1 -2
  14. package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
  15. package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
  16. package/src/sap/suite/ui/generic/template/designtime/controls/SmartTable.designtime.js +12 -2
  17. package/src/sap/suite/ui/generic/template/designtime/utils/designtimeUtils.js +3 -10
  18. package/src/sap/suite/ui/generic/template/fragments/TableColumns.fragment.xml +1 -0
  19. package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
  20. package/src/sap/suite/ui/generic/template/lib/CommonEventHandlers.js +20 -1
  21. package/src/sap/suite/ui/generic/template/lib/ai/EasyFill/fragments/EasyFillDialog.fragment.xml +4 -6
  22. package/src/sap/suite/ui/generic/template/lib/i18n/i18n.properties +0 -3
  23. package/src/sap/suite/ui/generic/template/lib/i18n/i18n_en_US_saprigi.properties +17 -1
  24. package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
  25. package/src/sap/suite/ui/generic/template/library.js +1 -1
  26. package/src/sap/suite/ui/generic/template/ObjectPage/annotationHelpers/AnnotationHelperActionButtons.qunit.js +0 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.suite.ui.generic.template",
3
- "version": "1.142.2",
3
+ "version": "1.143.1",
4
4
  "description": "SAPUI5 Library sap.suite.ui.generic.template",
5
5
  "keywords": [
6
6
  "sapui5",
@@ -7,7 +7,7 @@
7
7
 
8
8
  (c) Copyright 2009-2015 SAP SE. All rights reserved
9
9
  </copyright>
10
- <version>1.142.2</version>
10
+ <version>1.143.1</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
@@ -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
- oModel.attachEventOnce("requestSent", function() {
1026
- if (!oState._bIsStartingUp) {
1027
- oState.oIappStateHandler.fnStoreCurrentAppStateAndAdjustURL();
1028
- } else {
1029
- // resolve starup promise
1030
- oState.oIappStateHandler.fnResolveStartUpPromise();
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) {
@@ -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,
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.142.2"
11
+ "version": "1.143.1"
12
12
  },
13
13
  "title": "{{TITLE}}",
14
14
  "description": "{{DESCRIPTION}}",
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.142.2"
11
+ "version": "1.143.1"
12
12
  },
13
13
  "title": "Canvas",
14
14
  "description": "Canvas Page",
@@ -27,8 +27,7 @@ sap.ui.define([
27
27
  "sap/ui/core/message/MessageType",
28
28
  "sap/ui/core/Element",
29
29
  "sap/suite/ui/generic/template/genericUtilities/testableHelper",
30
- "sap/suite/ui/generic/template/lib/TableNoDataHandler",
31
- "sap/fe/controls/easyFilter/PXFeedback"
30
+ "sap/suite/ui/generic/template/lib/TableNoDataHandler"
32
31
  ], function (
33
32
  Filter,
34
33
  ExtensionAPI,
@@ -58,8 +57,7 @@ sap.ui.define([
58
57
  MessageType,
59
58
  Element,
60
59
  testableHelper,
61
- TableNoDataHandler,
62
- PXFeedback
60
+ TableNoDataHandler
63
61
  ) {
64
62
  "use strict";
65
63
 
@@ -835,7 +833,6 @@ sap.ui.define([
835
833
  oTemplatePrivateModel.setProperty("/listReport/firstSelection", true);
836
834
  oTemplatePrivateModel.setProperty("/generic/bDataAreShownInTable", false);
837
835
  } else {
838
- PXFeedback.triggerPXIntegration("toggleSwitchV2");
839
836
  oSmartFilterbar.setVisible(true);
840
837
  oSmartVariant.setVisible(true);
841
838
  }
@@ -458,8 +458,8 @@ sap.ui.define([
458
458
  function fnAdaptToAppStateIappState(oAppData){
459
459
 
460
460
  fnAdaptOtherControlsToAppState(oAppData.controlStates);
461
- if (areDataShownInTable() && Object.keys(oState.oSmartFilterbar.verifySearchAllowed()).length === 0){
462
- // fnAdaptOtherControlsToAppState only (synchronously) sets the state including the information whether data should be loaded and search is allowed,- if this is the case, the actual loading
461
+ if (areDataShownInTable()){
462
+ // fnAdaptOtherControlsToAppState only (synchronously) sets the state including the information whether data should be loaded - if this is the case, the actual loading
463
463
  // (which happens asynchronous of course) still needs to be triggered
464
464
  loadData();
465
465
  } else {
@@ -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
 
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.142.2"
11
+ "version": "1.143.1"
12
12
  },
13
13
  "title": "{{TITLE}}",
14
14
  "description": "{{DESCRIPTION}}",
@@ -135,15 +135,9 @@ sap.ui.define([
135
135
  getEditActionButtonVisibility.requiresIContext = true;
136
136
 
137
137
  // Returns the visibility for the EasyFill button
138
- function getEasyFillButtonVisibility(oInterface,mRestrictions, oEntitySet, oAppComponent, oTreeNode, aAncestortreeNodes,bIsStandardAction,bParameterEdit) {
138
+ function getEasyFillButtonVisibility(oInterface, mRestrictions, oEntitySet, oAppComponent, oTreeNode, aAncestortreeNodes) {
139
139
  var sGeneralExpression = "{_templPrivGlobal>/generic/fioriAI/isEasyFillEnabled}"; // Ensure whether AI resource has been loaded for the EasyFill functionality
140
-
141
- // The Edit button triggers intent-based navigation or CrossNavigation if it is a standard action button and the external edit parameter is specified in the manifest.
142
- // In this case, we should not display the EasyFill button because the Object Page cannot enter edit mode. Otherwise, clicking the EasyFill button would incorrectly switch the Object Page to an editable state.
143
- if (bIsStandardAction && bParameterEdit) {
144
- return false;
145
- }
146
-
140
+
147
141
  //oTreeNode.isDraft is use to show "Hide Draft Values" or "Show Draft Values" button in List Report table toolbar and "Display Saved version/Return to Draft" button in Object page header for a draft application.
148
142
  var sFCLExpression = getFCLPathExpression(oAppComponent, oTreeNode, "Edit");
149
143
  var sPathExpression = getPathExpression(oInterface, oEntitySet, mRestrictions, "Updatable"); // if there is an updatable path, add it to the condition
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.142.2"
9
+ "version": "1.143.1"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -142,11 +142,10 @@
142
142
  importance="High"
143
143
  enabled="{ui>/enabled}"
144
144
  dt:designtime="not-adaptable"
145
- fesr:press="fe2:ef:easyfill"
146
145
  press="._templateEventHandlers.onEasyFillEdit"
147
146
  ariaHasPopup="Dialog"
148
147
  type="Ghost"
149
- visible="{parts: [{path: 'entitySet>Org.OData.Capabilities.V1.UpdateRestrictions'}, {path: 'entitySet>'}, {path: 'appSettings>/'}, {path: 'parameter>/treeNode'}, {path: 'parameter>/treeNodeAncestors'},{path: 'parameter>/templateSpecific/pageLevelActions/commandExecution/Edit/isStandardAction'},{path:'parameter>/treeNode/page/navigation/edit/target'}], formatter: 'AHActionButtons.getEasyFillButtonVisibility'}"
148
+ visible="{parts: [{path: 'entitySet>Org.OData.Capabilities.V1.UpdateRestrictions'}, {path: 'entitySet>'}, {path: 'appSettings>/'}, {path: 'parameter>/treeNode'}, {path: 'parameter>/treeNodeAncestors'}], formatter: 'AHActionButtons.getEasyFillButtonVisibility'}"
150
149
  />
151
150
  </template:if>
152
151
  </template:if>
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.142.2"
9
+ "version": "1.143.1"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.142.2"
9
+ "version": "1.143.1"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -483,7 +483,7 @@ sap.ui.define([
483
483
  // bGlobalSettingsOnly: true,
484
484
  keyUser: true
485
485
  };
486
- const designtimeSettings = [
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
- "sap/m/MessageStrip"
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: [warningText, list],
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.142.2
962
+ * @version 1.143.1
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 (oExportEvent) {
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
  }
@@ -36,7 +36,6 @@ xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"
36
36
  text="Easy Fill"
37
37
  type="Default"
38
38
  icon="sap-icon://ai"
39
- fesr:press="fe2:ef:analyzeText"
40
39
  enabled="{easyFillDialogModel>/isEasyFillButtonEnabled}"
41
40
  press="onEasyFillSubmitInputToAI">
42
41
  </Button>
@@ -44,7 +43,6 @@ xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"
44
43
  id="EasyFillClearAll"
45
44
  type = "Transparent"
46
45
  press="onEasyFillClearAll"
47
- fesr:press="fe2:ef:clearAll"
48
46
  text="{i18n>EASYFILL_CLEAR_ALL}">
49
47
  </Button>
50
48
  </FlexBox>
@@ -60,8 +58,8 @@ xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"
60
58
  <HBox gap="0.5rem" justifyContent = "End" alignItems = "Center" renderType="Bare" class="sapSmartTemplatesObjectPageEasyFillReviewAreaBanner">
61
59
  <Link text="{i18n>AI_LINK_NOTICE_TITLE}" press="onLinkPress"/>
62
60
  <Label text="{i18n>AI_WARNING_TEXT}"/>
63
- <Button icon = "sap-icon://thumb-up" type = "Transparent" fesr:press="fe2:ef:thumbsup" enabled="{easyFillDialogModel>/feedbackEnabled}" press="onFeedbackPress"/>
64
- <Button icon = "sap-icon://thumb-down" type="Transparent" fesr:press="fe2:ef:thumbsdown" enabled="{easyFillDialogModel>/feedbackEnabled}" press="onFeedbackPress"/>
61
+ <Button icon = "sap-icon://thumb-up" type = "Transparent" fesr:press="fe:ef:thumbsup" enabled="{easyFillDialogModel>/feedbackEnabled}" press="onFeedbackPress"/>
62
+ <Button icon = "sap-icon://thumb-down" type="Transparent" fesr:press="fe:ef:thumbsdown" enabled="{easyFillDialogModel>/feedbackEnabled}" press="onFeedbackPress"/>
65
63
  </HBox>
66
64
  <VBox class="sapSmartTemplatesObjectPageEasyFillReviewAreaSmartFormWrapper" renderType = "Bare" visible="{easyFillDialogModel>/isUpdatableVisible}">
67
65
  <core:Fragment fragmentName="sap.suite.ui.generic.template.lib.ai.EasyFill.fragments.EasyFillUpdatebleSmartForm" type="XML"/>
@@ -75,10 +73,10 @@ xmlns:template="http://schemas.sap.com/sapui5/extension/sap.ui.core.template/1"
75
73
  </FlexBox>
76
74
  </content>
77
75
  <beginButton>
78
- <Button text="{i18n>EASY_FILL_CONFIRM}" fesr:press="fe2:ef:confirm" enabled="{easyFillDialogModel>/isSaveEnabled}" press="onSaveFromEasyFillDialog" type="Emphasized"/>
76
+ <Button text="{i18n>EASY_FILL_CONFIRM}" enabled="{easyFillDialogModel>/isSaveEnabled}" press="onSaveFromEasyFillDialog" type="Emphasized"/>
79
77
  </beginButton>
80
78
  <endButton>
81
- <Button text="{i18n>CANCEL}" press="onCancelEasyFillDialog" fesr:press="fe2:ef:cancel"/>
79
+ <Button text="{i18n>CANCEL}" press="onCancelEasyFillDialog"/>
82
80
  </endButton>
83
81
  </Dialog>
84
82
  </core:FragmentDefinition>
@@ -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\u206AGenerate Explanation\u206A\u206A
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.142.2
3231
+ * @version 1.143.1
3232
3232
  * @since 1.30.0
3233
3233
  * @alias sap.suite.ui.generic.template.lib.NavigationController
3234
3234
  */
@@ -66,7 +66,7 @@ sap.ui.define([
66
66
  interfaces: [],
67
67
  controls: [],
68
68
  elements: [],
69
- version: "1.142.2",
69
+ version: "1.143.1",
70
70
  extensions: {
71
71
  //Configuration used for rule loading of Support Assistant
72
72
  "sap.ui.support": {
@@ -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
- });