@sapui5/sap.suite.ui.generic.template 1.96.10 → 1.96.11
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 +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddFilterItem.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddFooterActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddGroup.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddGroupElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddHeaderActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddHeaderFacet.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddSubSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddTableColumn.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/AddToolbarActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveFilterItems.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveGroup.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveGroupElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveHeaderAndFooterActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveHeaderFacet.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveSubSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveTableColumns.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/MoveToolbarActionButtons.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveFilterItem.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveGroup.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveGroupElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveHeaderAndFooterActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveHeaderFacet.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveSubSection.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveTableColumn.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RemoveToolbarActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RevealFilterItem.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RevealHeaderFacet.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RevealTableColumn.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/RevealToolbarActionButton.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/generic/AddElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/generic/MoveElements.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/generic/RemoveElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/generic/RevealElement.js +1 -1
- package/src/sap/suite/ui/generic/template/changeHandler/util/AnnotationPropertyCommand.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/CommonUtils.js +12 -9
- 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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapui5/sap.suite.ui.generic.template",
|
|
3
|
-
"version": "1.96.
|
|
3
|
+
"version": "1.96.11",
|
|
4
4
|
"description": "SAPUI5 Library sap.suite.ui.generic.template",
|
|
5
5
|
"homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
|
|
6
6
|
"author": "SAP SE (https://www.sap.com)",
|
|
@@ -31,7 +31,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
31
31
|
var oNavigationHandler; // initialized on demand
|
|
32
32
|
|
|
33
33
|
var oControlStateWrapperFactory = new ControlStateWrapperFactory(oController);
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
// This map stores additional information for controls that are used on the page.
|
|
36
36
|
// The key is the id of the control
|
|
37
37
|
// The value is an object with proprietary information defined by the corresponding template
|
|
@@ -153,7 +153,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
153
153
|
var fnCallback = onElementVisited && function(oControl){
|
|
154
154
|
onElementVisited(sElementId, oControl, oChild);
|
|
155
155
|
oChild = oControl;
|
|
156
|
-
};
|
|
156
|
+
};
|
|
157
157
|
if (controlHelper.isElementVisibleOnView(sElementId, oView, fnCallback)){
|
|
158
158
|
if (bPreferNonTables){
|
|
159
159
|
var oControl = oCore.byId(sElementId);
|
|
@@ -163,7 +163,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
return true;
|
|
166
|
-
}
|
|
166
|
+
}
|
|
167
167
|
});
|
|
168
168
|
return sRet || sFallBack;
|
|
169
169
|
}
|
|
@@ -572,7 +572,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
572
572
|
* The method returns the information whether it has triggered the refresh. The caller might take this information
|
|
573
573
|
* in order to decide that all other smart table instances on the same view using the same entity set also need to be updated.
|
|
574
574
|
*@public
|
|
575
|
-
*/
|
|
575
|
+
*/
|
|
576
576
|
function fnRefreshModel(sEntitySet) {
|
|
577
577
|
//ALP have to check their coding themselves
|
|
578
578
|
var oComponent = oController.getOwnerComponent();
|
|
@@ -659,7 +659,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
setComponentRefreshBehaviour(oOutbound);
|
|
662
|
-
|
|
662
|
+
|
|
663
663
|
oNavigationHandler.navigate(oOutbound.semanticObject, oOutbound.action, oSelectionVariant.toJSONString(),
|
|
664
664
|
null, fnHandleError);
|
|
665
665
|
//null object has to be passed to the NavigationHandler as an
|
|
@@ -928,9 +928,12 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
928
928
|
var oAppComponent = oComponent.getAppComponent();
|
|
929
929
|
var oParameterInfo = metadataAnalyser.getParametersByEntitySet(oAppComponent.getModel(), sTableEntitySet);
|
|
930
930
|
// Fix for the bcp 1980440309. fnResolveParameterizedEntitySet must be removed to commonutils.js
|
|
931
|
-
if
|
|
932
|
-
|
|
933
|
-
|
|
931
|
+
// if only parameterised entity set no need to update the sAnalyticalPath
|
|
932
|
+
if (oMetaModel.getODataEntityType(oEntitySet.entityType)["sap:semantics"] !== "aggregate") {
|
|
933
|
+
if (fnResolveParameterizedEntitySet) {
|
|
934
|
+
var sParameterizedEntitySetPath = fnResolveParameterizedEntitySet(oEntitySet, oParameterInfo);
|
|
935
|
+
sAnalyticalPath = sParameterizedEntitySetPath || sAnalyticalPath;
|
|
936
|
+
}
|
|
934
937
|
}
|
|
935
938
|
if (sAnalyticalPath) {
|
|
936
939
|
fnSetBindingPath(sAnalyticalPath);
|
|
@@ -1331,7 +1334,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
1331
1334
|
var mComponentRefresh = oServices.oApplication.getComponentRefreshBehaviour(oOutbound);
|
|
1332
1335
|
oServices.oViewDependencyHelper.setRefreshBehaviour(mComponentRefresh);
|
|
1333
1336
|
}
|
|
1334
|
-
|
|
1337
|
+
|
|
1335
1338
|
// Expose selected private functions to unit tests
|
|
1336
1339
|
// etBreakoutActionsForTable
|
|
1337
1340
|
/* eslint-disable */
|
|
@@ -2697,7 +2697,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2697
2697
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
2698
2698
|
* @public
|
|
2699
2699
|
* @extends sap.ui.base.Object
|
|
2700
|
-
* @version 1.96.
|
|
2700
|
+
* @version 1.96.11
|
|
2701
2701
|
* @since 1.30.0
|
|
2702
2702
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
2703
2703
|
*/
|
|
@@ -37,7 +37,7 @@ sap.ui.define(['sap/ui/core/library','sap/fe/placeholder/library'
|
|
|
37
37
|
interfaces: [],
|
|
38
38
|
controls: [],
|
|
39
39
|
elements: [],
|
|
40
|
-
version: "1.96.
|
|
40
|
+
version: "1.96.11",
|
|
41
41
|
extensions: {
|
|
42
42
|
//Configuration used for rule loading of Support Assistant
|
|
43
43
|
"sap.ui.support": {
|