devexpress-aspnetcore-spreadsheet 25.1.7 → 25.1.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.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-localization-builder.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.8
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
|
6
6
|
*/
|
|
7
7
|
/**
|
|
8
8
|
* DevExpress ASPxSpreadsheet (dx-localization-builder.js)
|
|
9
|
-
* Version: 25.1.
|
|
9
|
+
* Version: 25.1.8-build-25349-0143
|
|
10
10
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
11
11
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
12
12
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-aspnetcore-spreadsheet.js)
|
|
3
|
-
* Version: 25.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 25.1.8
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
|
6
6
|
*/
|
|
7
7
|
/*# namespace DevExpress.Web.Scripts #*/
|
|
@@ -4844,6 +4844,21 @@ ASPx.CreateHtmlElementFromString = function(str) {
|
|
|
4844
4844
|
var dummy = ASPx.CreateHtmlElement();
|
|
4845
4845
|
setInnerHtmlInternal(dummy, str);
|
|
4846
4846
|
return dummy.firstChild;
|
|
4847
|
+
};
|
|
4848
|
+
ASPx.CreateHtmlElementFromStringWithBlockedScriptExecution = function (str) {
|
|
4849
|
+
var dummyIframe = ASPx.CreateHtmlElement("iframe");
|
|
4850
|
+
dummyIframe.setAttribute('sandbox', 'allow-same-origin');
|
|
4851
|
+
document.body.appendChild(dummyIframe);
|
|
4852
|
+
var doc = dummyIframe.contentDocument || dummyIframe.contentWindow.document;
|
|
4853
|
+
doc.open();
|
|
4854
|
+
doc.write('<!doctype html><html><head><meta charset="utf-8"></head><body></body></html>');
|
|
4855
|
+
doc.close();
|
|
4856
|
+
var dummy = doc.createElement("div");
|
|
4857
|
+
setInnerHtmlInternal(dummy, str);
|
|
4858
|
+
var result = dummy.firstChild;
|
|
4859
|
+
if(dummyIframe.remove)
|
|
4860
|
+
dummyIframe.remove();
|
|
4861
|
+
return result;
|
|
4847
4862
|
};
|
|
4848
4863
|
ASPx.CreateHtmlElement = function(tagName, styles) {
|
|
4849
4864
|
var element = document.createElement(tagName || "DIV");
|
|
@@ -62417,7 +62432,7 @@ Object.defineProperty(ASPxClientSpreadsheet, 'Functions', {
|
|
|
62417
62432
|
|
|
62418
62433
|
/**
|
|
62419
62434
|
* DevExpress ASPxSpreadsheet (dx-aspnetcore-ribbon.js)
|
|
62420
|
-
* Version: 25.1.
|
|
62435
|
+
* Version: 25.1.8-build-25349-0143
|
|
62421
62436
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
|
62422
62437
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
62423
62438
|
*/
|
|
@@ -62431,7 +62446,13 @@ var DevExpress;
|
|
|
62431
62446
|
|
|
62432
62447
|
|
|
62433
62448
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
62434
|
-
exports.Browser = void 0;
|
|
62449
|
+
exports.Browser = exports.addBrowserClassNamesToHtml = void 0;
|
|
62450
|
+
var resolveBrowserClassNames = null;
|
|
62451
|
+
function addBrowserClassNamesToHtml() {
|
|
62452
|
+
if (resolveBrowserClassNames && typeof resolveBrowserClassNames === 'function')
|
|
62453
|
+
resolveBrowserClassNames();
|
|
62454
|
+
}
|
|
62455
|
+
exports.addBrowserClassNamesToHtml = addBrowserClassNamesToHtml;
|
|
62435
62456
|
var Browser = (function () {
|
|
62436
62457
|
function Browser() {
|
|
62437
62458
|
}
|
|
@@ -62634,10 +62655,17 @@ var Browser = (function () {
|
|
|
62634
62655
|
if (typeof document !== 'undefined' && document && document.documentElement) {
|
|
62635
62656
|
if (document.documentElement.className !== '')
|
|
62636
62657
|
documentElementClassName = ' ' + documentElementClassName;
|
|
62637
|
-
document.documentElement.className += documentElementClassName;
|
|
62638
62658
|
Browser.Info = documentElementClassName;
|
|
62659
|
+
Browser.applyClassNamesOnDemand(document.documentElement, documentElementClassName);
|
|
62639
62660
|
}
|
|
62640
62661
|
};
|
|
62662
|
+
Browser.applyClassNamesOnDemand = function (documentElement, documentElementClassName) {
|
|
62663
|
+
return new Promise(function (resolve) {
|
|
62664
|
+
resolveBrowserClassNames = resolve;
|
|
62665
|
+
}).then(function () {
|
|
62666
|
+
documentElement.className += documentElementClassName;
|
|
62667
|
+
});
|
|
62668
|
+
};
|
|
62641
62669
|
Browser.getUserAgent = function () {
|
|
62642
62670
|
return Browser.hasNavigator() && navigator.userAgent ? navigator.userAgent.toLowerCase() : '';
|
|
62643
62671
|
};
|
|
@@ -63924,12 +63952,12 @@ var DomUtils = (function () {
|
|
|
63924
63952
|
}
|
|
63925
63953
|
return window.getComputedStyle(element, null);
|
|
63926
63954
|
};
|
|
63927
|
-
DomUtils.setFocus = function (element) {
|
|
63955
|
+
DomUtils.setFocus = function (element, focusOptions) {
|
|
63928
63956
|
function focusCore() {
|
|
63929
63957
|
try {
|
|
63930
|
-
element.focus();
|
|
63958
|
+
element.focus(focusOptions);
|
|
63931
63959
|
if (browser_1.Browser.IE && document.activeElement !== element)
|
|
63932
|
-
element.focus();
|
|
63960
|
+
element.focus(focusOptions);
|
|
63933
63961
|
}
|
|
63934
63962
|
catch (e) {
|
|
63935
63963
|
}
|
|
@@ -66407,8 +66435,8 @@ class Ribbon {
|
|
|
66407
66435
|
(function() {
|
|
66408
66436
|
window.DevExpress = window.DevExpress || {};
|
|
66409
66437
|
if(!!window.DevExpress.config) {
|
|
66410
|
-
window.DevExpress.config(JSON.parse(atob("
|
|
66438
|
+
window.DevExpress.config(JSON.parse(atob("eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVJEZGFWVXcxYkdsVVpreFFkelpzTmpGbVkzWnFWU0lLZlE9PS5XdDhCdVdISzJweEZ5N3E2M3FlY0wvekZpVU5tSnZLMXNMNW1KSi9WRlV1V2JnNEpIanZSYXBabmN5VDVOZ2VVUFhFNURRdzVObUhYamN0NVFVWllXQVozY1MydVQrVG1LQk0rMmFUSmZ2cSs2cERhTjdIbSsrY0JlSlFLVW5wSnZKWGNlUT09In0=")));
|
|
66411
66439
|
} else {
|
|
66412
|
-
window.DevExpress.config = JSON.parse(atob("
|
|
66440
|
+
window.DevExpress.config = JSON.parse(atob("eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVJEZGFWVXcxYkdsVVpreFFkelpzTmpGbVkzWnFWU0lLZlE9PS5XdDhCdVdISzJweEZ5N3E2M3FlY0wvekZpVU5tSnZLMXNMNW1KSi9WRlV1V2JnNEpIanZSYXBabmN5VDVOZ2VVUFhFNURRdzVObUhYamN0NVFVWllXQVozY1MydVQrVG1LQk0rMmFUSmZ2cSs2cERhTjdIbSsrY0JlSlFLVW5wSnZKWGNlUT09In0="));
|
|
66413
66441
|
}
|
|
66414
66442
|
})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devexpress-aspnetcore-spreadsheet",
|
|
3
|
-
"version": "25.1.
|
|
3
|
+
"version": "25.1.8",
|
|
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.8"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"spreadsheet",
|