@sapui5/sap.zen.crosstab 1.124.7 → 1.124.10
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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
</deprecation>
|
|
7
7
|
<vendor>SAP SE</vendor>
|
|
8
8
|
<copyright>(c) Copyright 2010-2019 SAP SE or an SAP affiliate company.</copyright>
|
|
9
|
-
<version>1.124.
|
|
9
|
+
<version>1.124.10</version>
|
|
10
10
|
<documentation>Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.</documentation>
|
|
11
11
|
<appData>
|
|
12
12
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -1640,7 +1640,6 @@ sap.ui.define(
|
|
|
1640
1640
|
// adjustRenderSizeDivSize
|
|
1641
1641
|
this.calculateRenderSizeDivSize = function () {
|
|
1642
1642
|
if (bAdjustFrameDivs || !bDivSizesValid) {
|
|
1643
|
-
var oRenderSize = oMeasuring.calculateRenderSize(true);
|
|
1644
1643
|
var oDomRenderSizeDiv = jQuery(jQuery.sap.byId(oCrosstab.getId() + "_renderSizeDiv"));
|
|
1645
1644
|
var oBorders = oMeasuring.getRenderSizeDivBorders(oDomRenderSizeDiv);
|
|
1646
1645
|
|
|
@@ -1656,14 +1655,12 @@ sap.ui.define(
|
|
|
1656
1655
|
var iMaxWidth = oCrosstab.getContentWidth() - oBorders.borders.iLeftBorderWidth
|
|
1657
1656
|
- oBorders.borders.iRightBorderWidth;
|
|
1658
1657
|
|
|
1659
|
-
|
|
1660
|
-
oDomRenderSizeDiv.width(Math.min(iMaxWidth, iWidth) + "px");
|
|
1658
|
+
oDomRenderSizeDiv.width(iMaxWidth + "px");
|
|
1661
1659
|
|
|
1662
1660
|
var iMaxHeight = oCrosstab.getContentHeight() - oBorders.borders.iBottomBorderWidth
|
|
1663
1661
|
- oBorders.borders.iTopBorderWidth;
|
|
1664
1662
|
|
|
1665
|
-
|
|
1666
|
-
oDomRenderSizeDiv.height(Math.min(iMaxHeight, iHeight) + "px");
|
|
1663
|
+
oDomRenderSizeDiv.height(iMaxHeight + "px");
|
|
1667
1664
|
}
|
|
1668
1665
|
};
|
|
1669
1666
|
|
|
@@ -5,13 +5,11 @@
|
|
|
5
5
|
sap.ui.define(
|
|
6
6
|
[
|
|
7
7
|
"jquery.sap.global",
|
|
8
|
-
"sap/zen/crosstab/utils/Measuring",
|
|
9
8
|
"sap/ui/core/Popup",
|
|
10
|
-
"sap/ui/core/OpenState",
|
|
11
9
|
"sap/zen/crosstab/TextConstants",
|
|
12
10
|
"sap/zen/crosstab/utils/Utils"
|
|
13
11
|
],
|
|
14
|
-
function(jQuery,
|
|
12
|
+
function(jQuery, Popup, TextConstants, Utils) {
|
|
15
13
|
"use strict";
|
|
16
14
|
jQuery.sap.declare("sap.zen.crosstab.rendering.ScrollManager");
|
|
17
15
|
sap.zen.crosstab.rendering.ScrollManager = function (oCrosstab, oRenderEngine) {
|