@sapui5/sap.zen.dsh 1.114.6 → 1.114.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/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
# @sapui5/sap.zen.dsh
|
|
4
4
|
Runtime resources of the [SAPUI5](https://sapui5.hana.ondemand.com) Library **sap.zen.dsh**.
|
|
5
5
|
|
|
6
|
+
## Deprecation
|
|
7
|
+
This library is deprecated and should no longer be used. Please use the successor Web Dynpro control instead.
|
|
8
|
+
|
|
6
9
|
## Usage
|
|
7
10
|
Refrain from installing this package using npm, Yarn or similar package managers.
|
|
8
11
|
It is meant to be consumed using the [UI5 Tooling](https://sap.github.io/ui5-tooling/).
|
package/package.json
CHANGED
package/src/sap/zen/dsh/.library
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
<?xml version="1.0" ?>
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd" >
|
|
3
3
|
<name>sap.zen.dsh</name>
|
|
4
|
+
<deprecation since="1.96">
|
|
5
|
+
All sap.zen code in this library has been deprecated. Please use the WD Grid control instead.
|
|
6
|
+
</deprecation>
|
|
4
7
|
<vendor>SAP SE</vendor>
|
|
5
8
|
<copyright>SAPUI5
|
|
6
9
|
(c) Copyright 2009-2021 SAP SE. All rights reserved</copyright>
|
|
7
|
-
<version>1.114.
|
|
10
|
+
<version>1.114.8</version>
|
|
8
11
|
<documentation>Design Studio Runtime Library. Intended only to be used within S/4 HANA Fiori applications.</documentation>
|
|
9
12
|
<appData>
|
|
10
13
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -12079,12 +12079,11 @@ sap.zen.CharacteristicWrapper.prototype.parseInputString = function(tMemberKeys)
|
|
|
12079
12079
|
}
|
|
12080
12080
|
if (this.isCompound())
|
|
12081
12081
|
{
|
|
12082
|
-
var
|
|
12083
|
-
if (ltNonCompoundedMembers.contains(
|
|
12084
|
-
{
|
|
12082
|
+
var loNonCompoundedValue = loInternalDimensionMember.getFieldValue(loNotCompoundedKeyField).getValue();
|
|
12083
|
+
if (ltNonCompoundedMembers.contains(loNonCompoundedValue)) {
|
|
12085
12084
|
continue;
|
|
12086
12085
|
}
|
|
12087
|
-
ltNonCompoundedMembers.add(
|
|
12086
|
+
ltNonCompoundedMembers.add(loNonCompoundedValue);
|
|
12088
12087
|
}
|
|
12089
12088
|
var loMemberWrapper = sap.zen.MemberWrapper.create(this.getDataSource(), loInternalDimension, loInternalDimensionMember, this.mVariableMode, this.getVariable());
|
|
12090
12089
|
var loRange = new sap.zen.Range();
|
|
@@ -31,7 +31,7 @@ sap.ui.define(
|
|
|
31
31
|
* @alias sap.zen.dsh
|
|
32
32
|
* @public
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.114.
|
|
34
|
+
* @version 1.114.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.114.
|
|
59
|
+
version: "1.114.8"
|
|
60
60
|
}
|
|
61
61
|
);
|
|
62
62
|
|