@openui5/sap.ui.documentation 1.111.2 → 1.111.4

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": "@openui5/sap.ui.documentation",
3
- "version": "1.111.2",
3
+ "version": "1.111.4",
4
4
  "description": "OpenUI5 UI Library sap.ui.documentation",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,11 +14,11 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.m": "1.111.2",
18
- "@openui5/sap.ui.core": "1.111.2",
19
- "@openui5/sap.ui.layout": "1.111.2",
20
- "@openui5/themelib_sap_belize": "1.111.2",
21
- "@openui5/themelib_sap_fiori_3": "1.111.2",
22
- "@openui5/themelib_sap_horizon": "1.111.2"
17
+ "@openui5/sap.m": "1.111.4",
18
+ "@openui5/sap.ui.core": "1.111.4",
19
+ "@openui5/sap.ui.layout": "1.111.4",
20
+ "@openui5/themelib_sap_belize": "1.111.4",
21
+ "@openui5/themelib_sap_fiori_3": "1.111.4",
22
+ "@openui5/themelib_sap_horizon": "1.111.4"
23
23
  }
24
24
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.111.2</version>
9
+ <version>1.111.4</version>
10
10
 
11
11
  <documentation>SAPUI5 library for the Demokit 2.0.</documentation>
12
12
 
@@ -25,13 +25,13 @@ sap.ui.define([
25
25
  * @namespace
26
26
  * @alias sap.ui.documentation
27
27
  * @author SAP SE
28
- * @version 1.111.2
28
+ * @version 1.111.4
29
29
  * @since 1.48
30
30
  * @public
31
31
  */
32
32
  var thisLibrary = sap.ui.getCore().initLibrary({
33
33
  name : 'sap.ui.documentation',
34
- version: '1.111.2',
34
+ version: '1.111.4',
35
35
  dependencies : ['sap.ui.core','sap.m'],
36
36
  types: [],
37
37
  interfaces: [],
@@ -230,7 +230,7 @@ function() {
230
230
  Highlighter.prototype._createHighlightedNode = function (oTokensToHighlight, sText) {
231
231
  var oRootNode = document.createElement("span"),
232
232
  aAllTokens = [],
233
- fnSort = function(a, b) {return a > b;},
233
+ fnSort = function(a, b) {return parseInt(a) > parseInt(b);},
234
234
  aIndices = Object.keys(oTokensToHighlight).sort(fnSort),
235
235
  iIndex,
236
236
  iStartIndex = 0;