devexpress-aspnetcore-spreadsheet 24.1.15 → 24.1.16
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,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-localization-builder.js)
|
|
3
|
-
* Version: 24.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 24.1.16
|
|
4
|
+
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
|
6
6
|
*/
|
|
7
7
|
const jsHeader =
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* DevExpress AspNetCore Spreadsheet (dx-aspnetcore-spreadsheet.js)
|
|
3
|
-
* Version: 24.1.
|
|
4
|
-
* Copyright (c) 2012 -
|
|
3
|
+
* Version: 24.1.16
|
|
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");
|
|
@@ -62401,8 +62416,8 @@ var DevExpress;!function(){"use strict";var t={279:function(t,e){Object.definePr
|
|
|
62401
62416
|
(function() {
|
|
62402
62417
|
window.DevExpress = window.DevExpress || {};
|
|
62403
62418
|
if(!!window.DevExpress.config) {
|
|
62404
|
-
window.DevExpress.config(JSON.parse(atob("
|
|
62419
|
+
window.DevExpress.config(JSON.parse(atob("eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVFqQTBTSEF5VlU0eE0xQkxUbkJoYlU5MFRtRlpZU0lLZlE9PS5iSGY2RXVwd3FwbXRjWStuZjVVQWtDcm5JQ1VlRm1NM3laVVJad0FLOGkzZ0F2SGJWeWlnNWgyZXBHTFluRnpxZitGYVE0UVdveklKUVp2TlJYVUdRaWVRMXdXek9aK3JHR2N6aUgrQUh4d0ZOTGNlRDZzTGd2eXE2NmZlUExMUzk1K3pHZz09In0=")));
|
|
62405
62420
|
} else {
|
|
62406
|
-
window.DevExpress.config = JSON.parse(atob("
|
|
62421
|
+
window.DevExpress.config = JSON.parse(atob("eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVFqQTBTSEF5VlU0eE0xQkxUbkJoYlU5MFRtRlpZU0lLZlE9PS5iSGY2RXVwd3FwbXRjWStuZjVVQWtDcm5JQ1VlRm1NM3laVVJad0FLOGkzZ0F2SGJWeWlnNWgyZXBHTFluRnpxZitGYVE0UVdveklKUVp2TlJYVUdRaWVRMXdXek9aK3JHR2N6aUgrQUh4d0ZOTGNlRDZzTGd2eXE2NmZlUExMUzk1K3pHZz09In0="));
|
|
62407
62422
|
}
|
|
62408
62423
|
})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devexpress-aspnetcore-spreadsheet",
|
|
3
|
-
"version": "24.1.
|
|
3
|
+
"version": "24.1.16",
|
|
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": "24.1.
|
|
14
|
+
"devextreme": "24.1.16"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"spreadsheet",
|