@sapui5/sap.zen.crosstab 1.84.23 → 1.84.24

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.zen.crosstab",
3
- "version": "1.84.23",
3
+ "version": "1.84.24",
4
4
  "description": "SAPUI5 Library sap.zen.crosstab",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -4,7 +4,7 @@
4
4
  <name>sap.zen.crosstab</name>
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>(c) Copyright 2010-2019 SAP SE or an SAP affiliate company.</copyright>
7
- <version>1.84.23</version>
7
+ <version>1.84.24</version>
8
8
 
9
9
  <documentation>Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.</documentation>
10
10
  <appData>
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
 
6
6
  // Provides control sap.zen.crosstab.Crosstab.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
 
6
6
  // Provides control sap.zen.crosstab.DataCell.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
 
6
6
  // Provides control sap.zen.crosstab.HeaderCell.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
 
6
6
  /**
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  "sap.zen.crosstab.HeaderCell"
32
32
  ],
33
33
  elements: [],
34
- version: "1.84.23"
34
+ version: "1.84.24"
35
35
  });
36
36
 
37
37
  return sap.zen.crosstab;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
  @import "../../../../../sap/ui/core/themes/base/base.less";
6
6
  @import "../../../../../sap/ui/core/themes/base/global.less";
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * SAPUI5
3
- * (c) Copyright 2009-2022 SAP SE. All rights reserved.
3
+ * (c) Copyright 2009-2023 SAP SE. All rights reserved.
4
4
  */
5
5
  @import "../base/library.source.less";
6
6
  @import "../../../../../sap/ui/core/themes/sap_hcb/global.less";
@@ -290,6 +290,8 @@ sap.zen.crosstab.utils.Utils.prepareStringForRendering = function (sText) {
290
290
  var iNumberOfLineBreaks = sap.zen.crosstab.utils.Utils.getNumberOfLineBreaks(sPreparedString);
291
291
 
292
292
  sPreparedString = sPreparedString.replace(/&#x20;/g, "&nbsp;");
293
+ var encodeXML = sap.ui.require("sap/base/security/encodeXML");
294
+ sPreparedString = encodeXML(sPreparedString);
293
295
  return {"text" : sPreparedString, "iNumberOfLineBreaks" : iNumberOfLineBreaks};
294
296
  };
295
297