@openui5/sap.ui.suite 1.92.0 → 1.93.3

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/.reuse/dep5 CHANGED
@@ -464,3 +464,8 @@ Copyright:
464
464
  License: Apache-2.0
465
465
  Comment: these files contain content from SAP and JSDoc 3: plugin.js is overall written by SAP, but contains code taken from JSDoc 3.6.7 (see the respective comments)
466
466
 
467
+ Files: src/sap.ui.core/src/sap/ui/core/themes/base/base.less src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
468
+ Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
469
+ License: Apache-2.0
470
+ Comment: these files belong to: SAP Theming Base Content
471
+
package/THIRDPARTY.txt CHANGED
@@ -197,7 +197,7 @@ License: BSD-3-Clause
197
197
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
198
198
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
199
199
 
200
- Component: URI.js, version: 1.19.6
200
+ Component: URI.js, version: 1.19.7
201
201
  Copyright: Rodney Rehm
202
202
  License: MIT
203
203
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
@@ -462,6 +462,15 @@ License: Apache-2.0
462
462
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
463
463
  Contained in: lib/jsdoc/ui5/plugin.js
464
464
 
465
+ Component: SAP Theming Base Content, version: 11.1.34
466
+ Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
467
+ License: Apache-2.0
468
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
469
+ Contained in: src/sap.ui.core/src/sap/ui/core/themes/base/base.less
470
+ src/themelib_sap_belize/src/sap/ui/core/themes/*/base.less
471
+ src/themelib_sap_fiori_3/src/sap/ui/core/themes/*/base.less
472
+ src/themelib_sap_horizon/src/sap/ui/core/themes/*/base.less
473
+
465
474
 
466
475
  ALL LICENSE TEXTS:
467
476
  ==================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.suite",
3
- "version": "1.92.0",
3
+ "version": "1.93.3",
4
4
  "description": "OpenUI5 UI Library sap.ui.suite",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,6 +14,6 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.ui.core": "1.92.0"
17
+ "@openui5/sap.ui.core": "1.93.3"
18
18
  }
19
19
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.92.0</version>
9
+ <version>1.93.3</version>
10
10
 
11
11
  <documentation>SAP UI library: sap.ui.suite (by SAP, Author)</documentation>
12
12
 
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.core.Control
29
29
  *
30
30
  * @author Svetozar Buzdumovic
31
- * @version 1.92.0
31
+ * @version 1.93.3
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -35,13 +35,13 @@ sap.ui.define(['sap/ui/core/Core', './library'],
35
35
  var minvalue = oControl.getMinValue();
36
36
  var maxvalue = oControl.getMaxValue();
37
37
  var value = oControl.getValue();
38
- if (minvalue < 0 || minvalue == Number.NaN) {
38
+ if (minvalue < 0) {
39
39
  minvalue = 0;
40
40
  }
41
- if (maxvalue < 0 || maxvalue == Number.NaN) {
41
+ if (maxvalue < 0) {
42
42
  maxvalue = 1;
43
43
  }
44
- if (value < 0 || value == Number.NaN) {
44
+ if (value < 0) {
45
45
  value = 0;
46
46
  }
47
47
  var valuestring = value.toString();
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * @extends sap.ui.core.Control
35
35
  *
36
36
  * @author Svetozar Buzdumovic
37
- * @version 1.92.0
37
+ * @version 1.93.3
38
38
  *
39
39
  * @constructor
40
40
  * @public
@@ -101,7 +101,7 @@ sap.ui.define([
101
101
 
102
102
  // get the new Value and calculate Pixels
103
103
  VerticalPercent = iPercentage;
104
- if (VerticalPercent < 0 || VerticalPercent == Number.NaN) {
104
+ if (VerticalPercent < 0) {
105
105
  VerticalPercent = 0;
106
106
  }
107
107
  if (VerticalPercent > 100) {
@@ -29,7 +29,7 @@ sap.ui.define(function() {
29
29
 
30
30
  //calculate percentage
31
31
  var VerticalPercent = oControl.getPercentage();
32
- if (VerticalPercent < 0 || VerticalPercent == Number.NaN) {
32
+ if (VerticalPercent < 0) {
33
33
  VerticalPercent = 0;
34
34
  }
35
35
  if (VerticalPercent > 100) {
@@ -16,7 +16,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'], // library dependency
16
16
  // delegate further initialization of this library to the Core
17
17
  sap.ui.getCore().initLibrary({
18
18
  name : "sap.ui.suite",
19
- version: "1.92.0",
19
+ version: "1.93.3",
20
20
  dependencies : ["sap.ui.core"],
21
21
  types: [
22
22
  "sap.ui.suite.TaskCircleColor"
@@ -36,7 +36,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'], // library dependency
36
36
  * @namespace
37
37
  * @alias sap.ui.suite
38
38
  * @author SAP SE
39
- * @version 1.92.0
39
+ * @version 1.93.3
40
40
  * @since 1.1
41
41
  * @public
42
42
  */
@@ -46,7 +46,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'], // library dependency
46
46
  /**
47
47
  * Defined color values for the Task Circle Control
48
48
  *
49
- * @version 1.92.0
49
+ * @version 1.93.3
50
50
  * @enum {string}
51
51
  * @public
52
52
  * @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel