devexpress-aspnetcore-spreadsheet 25.1.1-alpha → 25.1.2-beta
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-aspnetcore-spreadsheet.js)
|
|
3
|
-
* Version: 25.1.
|
|
3
|
+
* Version: 25.1.2
|
|
4
4
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
|
6
6
|
*/
|
|
@@ -2815,7 +2815,9 @@ ASPx.GetVerticalScrollBarWidth = function(nonZero) {
|
|
|
2815
2815
|
document.body.removeChild(container);
|
|
2816
2816
|
}
|
|
2817
2817
|
if(nonZero && verticalScrollBarWidth === 0) {
|
|
2818
|
-
if(ASPx.Browser.MacOSPlatform
|
|
2818
|
+
if(ASPx.Browser.MacOSPlatform)
|
|
2819
|
+
return 16;
|
|
2820
|
+
if(ASPx.Browser.Firefox)
|
|
2819
2821
|
return 12;
|
|
2820
2822
|
if(ASPx.Browser.WebKitTouchUI)
|
|
2821
2823
|
return 1;
|
|
@@ -26262,7 +26264,7 @@ window.ASPxClientSpreadsheetCustomCommandExecutedEventArgs = ASPxClientSpreadshe
|
|
|
26262
26264
|
workbook.style.height = actualHeight + "px";
|
|
26263
26265
|
}
|
|
26264
26266
|
|
|
26265
|
-
var scrollSize = ASPx.GetVerticalScrollBarWidth(),
|
|
26267
|
+
var scrollSize = ASPx.GetVerticalScrollBarWidth(true),
|
|
26266
26268
|
width = workbook.offsetWidth,
|
|
26267
26269
|
height = workbook.offsetHeight,
|
|
26268
26270
|
leftRightBorderPaddingsSize = ASPx.GetLeftRightBordersAndPaddingsSummaryValue(workbook),
|
|
@@ -26383,7 +26385,7 @@ window.ASPxClientSpreadsheetCustomCommandExecutedEventArgs = ASPxClientSpreadshe
|
|
|
26383
26385
|
mainElement.style.height = actualHeight + "px";
|
|
26384
26386
|
}
|
|
26385
26387
|
|
|
26386
|
-
var scrollSize = ASPx.GetVerticalScrollBarWidth();
|
|
26388
|
+
var scrollSize = ASPx.GetVerticalScrollBarWidth(true);
|
|
26387
26389
|
var width = mainElement.offsetWidth;
|
|
26388
26390
|
var height = mainElement.offsetHeight;
|
|
26389
26391
|
|
|
@@ -28931,7 +28933,7 @@ window.ASPxClientSpreadsheetCustomCommandExecutedEventArgs = ASPxClientSpreadshe
|
|
|
28931
28933
|
var scrollDivWidth = ASPx.PxToInt(scrollDiv.style.width);
|
|
28932
28934
|
var scrollDivHeight = ASPx.PxToInt(scrollDiv.style.height);
|
|
28933
28935
|
|
|
28934
|
-
var scrollSize = ASPx.GetVerticalScrollBarWidth();
|
|
28936
|
+
var scrollSize = ASPx.GetVerticalScrollBarWidth(true);
|
|
28935
28937
|
|
|
28936
28938
|
var xOffset = scrollDivWidth - x + scrollDivX;
|
|
28937
28939
|
var yOffset = scrollDivHeight - y + scrollDivY;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devexpress-aspnetcore-spreadsheet",
|
|
3
|
-
"version": "25.1.
|
|
3
|
+
"version": "25.1.2-beta",
|
|
4
4
|
"homepage": "https://www.devexpress.com/",
|
|
5
5
|
"bugs": "https://www.devexpress.com/support/",
|
|
6
6
|
"author": "Developer Express Inc.",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"localization": "node bin/localization-builder.js localization-source localization"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"devextreme": "25.1.
|
|
14
|
+
"devextreme": "25.1.2-beta"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"spreadsheet",
|