@sapui5/sap.zen.dsh 1.130.6 → 1.130.8
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
CHANGED
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<vendor>SAP SE</vendor>
|
|
8
8
|
<copyright>SAPUI5
|
|
9
9
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
10
|
-
<version>1.130.
|
|
10
|
+
<version>1.130.8</version>
|
|
11
11
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
12
12
|
<appData>
|
|
13
13
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -758,7 +758,7 @@ $Firefly.createClass(
|
|
|
758
758
|
if(!xml){
|
|
759
759
|
return null;
|
|
760
760
|
}
|
|
761
|
-
var xmlDoc =
|
|
761
|
+
var xmlDoc = jQuery.parseXML(xml); //$.parseXML(xml);
|
|
762
762
|
var xmlNode = sap.buddha.XXmlNode.create();
|
|
763
763
|
var cn = xmlDoc.childNodes;
|
|
764
764
|
for (var i = 0, len = cn.length; i < len; i++) {
|
|
@@ -11522,6 +11522,10 @@ sap.zen.CharacteristicWrapper.prototype.getMembersByField = function(tKeys, oFie
|
|
|
11522
11522
|
lSearchString = tKeys.get(lKeyIndex);
|
|
11523
11523
|
loInternalDimension.clearSelectorFilter();
|
|
11524
11524
|
loInternalDimension.clearSelectorHierarchyNode();
|
|
11525
|
+
// If drill level is not set to 0 then node and all children of the node (recursively) are selected which can cause performance issue
|
|
11526
|
+
// when only a single value is selected it is not necessary to select all child nodes
|
|
11527
|
+
// see customer ticket case number: 466284/2025
|
|
11528
|
+
loInternalDimension.setSelectorInitialDrillLevel(0);
|
|
11525
11529
|
let lComparisonOperator = null;
|
|
11526
11530
|
try
|
|
11527
11531
|
{
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.130.
|
|
34
|
+
* @version 1.130.8
|
|
35
35
|
*/
|
|
36
36
|
var thisLib = sap.ui.getCore().initLibrary(
|
|
37
37
|
{
|
|
@@ -56,7 +56,7 @@ sap.ui.define(
|
|
|
56
56
|
],
|
|
57
57
|
elements: [],
|
|
58
58
|
noLibraryCSS: true,
|
|
59
|
-
version: "1.130.
|
|
59
|
+
version: "1.130.8"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|