@openui5/sap.ui.suite 1.107.1 → 1.108.0
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/README.md +3 -0
- package/THIRDPARTY.txt +1 -1
- package/package.json +2 -2
- package/src/sap/ui/suite/.library +28 -23
- package/src/sap/ui/suite/QuickViewUtils.js +1 -0
- package/src/sap/ui/suite/TaskCircle.js +7 -5
- package/src/sap/ui/suite/VerticalProgressIndicator.js +4 -2
- package/src/sap/ui/suite/library.js +4 -3
- package/ui5.yaml +1 -0
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
# @openui5/sap.ui.suite
|
|
4
4
|
Runtime resources of the [OpenUI5](https://github.com/SAP/openui5) UI Library **sap.ui.suite**.
|
|
5
5
|
|
|
6
|
+
## Deprecation
|
|
7
|
+
**This library is deprecated and should not be used for new projects.**
|
|
8
|
+
|
|
6
9
|
## Usage
|
|
7
10
|
Add this library as a dependency to your UI5 project by using [UI5 Tooling](https://sap.github.io/ui5-tooling/):
|
|
8
11
|
|
package/THIRDPARTY.txt
CHANGED
|
@@ -382,7 +382,7 @@ Contained in: src/sap.ui.documentation/src/sap/ui/documentation/sdk/thirdparty/D
|
|
|
382
382
|
|
|
383
383
|
Library: sap.ui.integration:
|
|
384
384
|
|
|
385
|
-
Component: UI5 Web Components, version: 1.0
|
|
385
|
+
Component: UI5 Web Components, version: 1.7.0
|
|
386
386
|
Copyright: SAP
|
|
387
387
|
License: Apache-2.0
|
|
388
388
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.suite",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.108.0",
|
|
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.
|
|
17
|
+
"@openui5/sap.ui.core": "1.108.0"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -1,33 +1,38 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd" >
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
<name>sap.ui.suite</name>
|
|
5
|
+
<vendor>SAP SE</vendor>
|
|
6
|
+
<copyright>OpenUI5
|
|
7
7
|
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
8
8
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
9
|
-
|
|
9
|
+
<version>1.108.0</version>
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
<documentation>SAP UI library: sap.ui.suite (by SAP, Author)</documentation>
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
</dependencies>
|
|
13
|
+
<deprecation since="1.108">
|
|
14
|
+
All controls and helpers in this library meanwhile have been deprecated.
|
|
15
|
+
There's no general replacement for the deprecated functionality as it isn't needed any longer (no use cases known)
|
|
16
|
+
</deprecation>
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
18
|
+
<dependencies>
|
|
19
|
+
<dependency>
|
|
20
|
+
<libraryName>sap.ui.core</libraryName>
|
|
21
|
+
</dependency>
|
|
22
|
+
</dependencies>
|
|
23
|
+
|
|
24
|
+
<appData>
|
|
25
|
+
<selenium xmlns="http://www.sap.com/ui5/buildext/selenium" package="com.sap.ui5.selenium.suite" />
|
|
26
|
+
<!-- excludes for the JSCoverage -->
|
|
27
|
+
<jscoverage xmlns="http://www.sap.com/ui5/buildext/jscoverage" >
|
|
28
|
+
<exclude name="sap.ui.suite.js." />
|
|
29
|
+
</jscoverage>
|
|
30
|
+
<releasenotes xmlns="http://www.sap.com/ui5/buildext/releasenotes"
|
|
31
|
+
url="../../../../test-resources/sap/ui/suite/relnotes/changes-{major}.{minor}.json"
|
|
32
|
+
resolve="lib" />
|
|
33
|
+
<ownership xmlns="http://www.sap.com/ui5/buildext/ownership">
|
|
34
|
+
<component>CA-UI5-CTR</component><!-- default component for library, embedded text as a shortcut for <name>text</name> -->
|
|
35
|
+
</ownership>
|
|
36
|
+
</appData>
|
|
32
37
|
|
|
33
38
|
</library>
|
|
@@ -28,6 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* @param {string} sConfigName
|
|
29
29
|
* @param {string} sThingKey
|
|
30
30
|
* @returns {sap.ui.ux3.QuickView}
|
|
31
|
+
* @deprecated as of version 1.108, there's no replacement for this functionality as no active use cases are known
|
|
31
32
|
*/
|
|
32
33
|
|
|
33
34
|
var QuickViewUtils = {
|
|
@@ -28,18 +28,20 @@ sap.ui.define([
|
|
|
28
28
|
* @extends sap.ui.core.Control
|
|
29
29
|
*
|
|
30
30
|
* @author Svetozar Buzdumovic
|
|
31
|
-
* @version 1.
|
|
31
|
+
* @version 1.108.0
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
35
35
|
* @experimental Since version 1.2.
|
|
36
|
-
* The API may change.
|
|
36
|
+
* The API may change. Use with care.
|
|
37
37
|
* @alias sap.ui.suite.TaskCircle
|
|
38
|
+
* @deprecated as of version 1.108, there's no replacement for this functionality as no active use cases are known
|
|
38
39
|
*/
|
|
39
40
|
var TaskCircle = Control.extend("sap.ui.suite.TaskCircle", /** @lends sap.ui.suite.TaskCircle.prototype */ {
|
|
40
41
|
metadata : {
|
|
41
42
|
|
|
42
43
|
library : "sap.ui.suite",
|
|
44
|
+
deprecated: true,
|
|
43
45
|
properties : {
|
|
44
46
|
|
|
45
47
|
/**
|
|
@@ -107,9 +109,9 @@ sap.ui.define([
|
|
|
107
109
|
* @private
|
|
108
110
|
*/
|
|
109
111
|
TaskCircle.prototype.onclick = function(oEvent){
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
112
|
+
this.firePress({});
|
|
113
|
+
oEvent.preventDefault();
|
|
114
|
+
oEvent.stopPropagation();
|
|
113
115
|
};
|
|
114
116
|
|
|
115
117
|
|
|
@@ -34,18 +34,20 @@ sap.ui.define([
|
|
|
34
34
|
* @extends sap.ui.core.Control
|
|
35
35
|
*
|
|
36
36
|
* @author Svetozar Buzdumovic
|
|
37
|
-
* @version 1.
|
|
37
|
+
* @version 1.108.0
|
|
38
38
|
*
|
|
39
39
|
* @constructor
|
|
40
40
|
* @public
|
|
41
41
|
* @experimental Since version 1.2.
|
|
42
|
-
* The API may change.
|
|
42
|
+
* The API may change. Use with care.
|
|
43
43
|
* @alias sap.ui.suite.VerticalProgressIndicator
|
|
44
|
+
* @deprecated as of version 1.108, there's no replacement for this functionality as no active use cases are known
|
|
44
45
|
*/
|
|
45
46
|
var VerticalProgressIndicator = Control.extend("sap.ui.suite.VerticalProgressIndicator", /** @lends sap.ui.suite.VerticalProgressIndicator.prototype */ {
|
|
46
47
|
metadata : {
|
|
47
48
|
|
|
48
49
|
library : "sap.ui.suite",
|
|
50
|
+
deprecated: true,
|
|
49
51
|
properties : {
|
|
50
52
|
|
|
51
53
|
/**
|
|
@@ -18,13 +18,14 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'], // library dependency
|
|
|
18
18
|
* @namespace
|
|
19
19
|
* @alias sap.ui.suite
|
|
20
20
|
* @author SAP SE
|
|
21
|
-
* @version 1.
|
|
21
|
+
* @version 1.108.0
|
|
22
22
|
* @since 1.1
|
|
23
23
|
* @public
|
|
24
|
+
* @deprecated as of version 1.108
|
|
24
25
|
*/
|
|
25
26
|
var thisLibrary = sap.ui.getCore().initLibrary({
|
|
26
27
|
name : "sap.ui.suite",
|
|
27
|
-
version: "1.
|
|
28
|
+
version: "1.108.0",
|
|
28
29
|
dependencies : ["sap.ui.core"],
|
|
29
30
|
types: [
|
|
30
31
|
"sap.ui.suite.TaskCircleColor"
|
|
@@ -40,7 +41,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library'], // library dependency
|
|
|
40
41
|
/**
|
|
41
42
|
* Defined color values for the Task Circle Control
|
|
42
43
|
*
|
|
43
|
-
* @version 1.
|
|
44
|
+
* @version 1.108.0
|
|
44
45
|
* @enum {string}
|
|
45
46
|
* @public
|
|
46
47
|
*/
|