@openui5/sap.tnt 1.98.0 → 1.99.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/package.json +3 -3
- package/src/sap/tnt/.library +1 -1
- package/src/sap/tnt/InfoLabel.js +1 -1
- package/src/sap/tnt/NavigationList.js +1 -1
- package/src/sap/tnt/NavigationListItem.js +1 -1
- package/src/sap/tnt/NavigationListRenderer.js +1 -1
- package/src/sap/tnt/SideNavigation.js +1 -1
- package/src/sap/tnt/SideNavigationRenderer.js +1 -1
- package/src/sap/tnt/ToolHeader.js +1 -1
- package/src/sap/tnt/ToolHeaderUtilitySeparator.js +1 -1
- package/src/sap/tnt/ToolPage.js +1 -1
- package/src/sap/tnt/ToolPageRenderer.js +1 -1
- package/src/sap/tnt/library.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.tnt",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.99.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.tnt",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"url": "https://github.com/SAP/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.m": "1.
|
|
18
|
-
"@openui5/sap.ui.core": "1.
|
|
17
|
+
"@openui5/sap.m": "1.99.0",
|
|
18
|
+
"@openui5/sap.ui.core": "1.99.0"
|
|
19
19
|
}
|
|
20
20
|
}
|
package/src/sap/tnt/.library
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
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
|
-
<version>1.
|
|
9
|
+
<version>1.99.0</version>
|
|
10
10
|
|
|
11
11
|
<documentation>SAPUI5 library with responsive controls.</documentation>
|
|
12
12
|
|
package/src/sap/tnt/InfoLabel.js
CHANGED
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
27
27
|
*
|
|
28
28
|
* @param {sap.ui.core.RenderManager} rm The RenderManager that can be used for writing to the renderer output buffer
|
|
29
|
-
* @param {sap.
|
|
29
|
+
* @param {sap.tnt.NavigationList} control An object representation of the control that should be rendered
|
|
30
30
|
*/
|
|
31
31
|
NavigationListRenderer.render = function (rm, control) {
|
|
32
32
|
var role,
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
25
25
|
*
|
|
26
26
|
* @param {sap.ui.core.RenderManager} rm the RenderManager that can be used for writing to the render output buffer
|
|
27
|
-
* @param {sap.
|
|
27
|
+
* @param {sap.tnt.SideNavigation} control an object representation of the control that should be rendered
|
|
28
28
|
*/
|
|
29
29
|
SideNavigationRenderer.render = function (rm, control) {
|
|
30
30
|
this.startSideNavigation(rm, control);
|
package/src/sap/tnt/ToolPage.js
CHANGED
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}.
|
|
22
22
|
*
|
|
23
23
|
* @param {sap.ui.core.RenderManager} oRM the RenderManager that can be used for writing to the render output buffer
|
|
24
|
-
* @param {sap.
|
|
24
|
+
* @param {sap.tnt.ToolPage} oControl an object representation of the control that should be rendered
|
|
25
25
|
*/
|
|
26
26
|
ToolPageRenderer.render = function (oRM, oControl) {
|
|
27
27
|
var oHeader = oControl.getHeader(),
|
package/src/sap/tnt/library.js
CHANGED
|
@@ -17,7 +17,7 @@ sap.ui.define(["sap/ui/core/library", "sap/m/library"],
|
|
|
17
17
|
* @namespace
|
|
18
18
|
* @name sap.tnt
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.
|
|
20
|
+
* @version 1.99.0
|
|
21
21
|
* @since 1.36
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
@@ -25,7 +25,7 @@ sap.ui.define(["sap/ui/core/library", "sap/m/library"],
|
|
|
25
25
|
// delegate further initialization of this library to the Core
|
|
26
26
|
sap.ui.getCore().initLibrary({
|
|
27
27
|
name : "sap.tnt",
|
|
28
|
-
version: "1.
|
|
28
|
+
version: "1.99.0",
|
|
29
29
|
dependencies : ["sap.ui.core", "sap.m"],
|
|
30
30
|
designtime: "sap/tnt/designtime/library.designtime",
|
|
31
31
|
types: [
|