@sapui5/sap.zen.commons 1.114.8 → 1.114.13
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/package.json +1 -1
- package/src/sap/zen/commons/.library +4 -2
- package/src/sap/zen/commons/BackgroundDesign.js +1 -1
- package/src/sap/zen/commons/HAlign.js +2 -2
- package/src/sap/zen/commons/Padding.js +1 -1
- package/src/sap/zen/commons/Separation.js +1 -1
- package/src/sap/zen/commons/VAlign.js +1 -1
- package/src/sap/zen/commons/layout/MatrixLayout.js +1 -1
- package/src/sap/zen/commons/layout/MatrixLayoutCell.js +1 -1
- package/src/sap/zen/commons/layout/MatrixLayoutRow.js +1 -1
- package/src/sap/zen/commons/layout/PositionContainer.js +1 -1
- package/src/sap/zen/commons/library.js +2 -2
- package/ui5.yaml +1 -0
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
# @sapui5/sap.zen.commons
|
|
4
4
|
Runtime resources of the [SAPUI5](https://sapui5.hana.ondemand.com) Library **sap.zen.commons**.
|
|
5
5
|
|
|
6
|
+
## Deprecation
|
|
7
|
+
This library is deprecated and should no longer be used. Please use the successor Web Dynpro control instead.
|
|
8
|
+
|
|
6
9
|
## Usage
|
|
7
10
|
Refrain from installing this package using npm, Yarn or similar package managers.
|
|
8
11
|
It is meant to be consumed using the [UI5 Tooling](https://sap.github.io/ui5-tooling/).
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd">
|
|
3
|
-
|
|
4
3
|
<name>sap.zen.commons</name>
|
|
4
|
+
<deprecation since="1.96">
|
|
5
|
+
All sap.zen code in this library has been deprecated. Please use the WD Grid control instead.
|
|
6
|
+
</deprecation>
|
|
5
7
|
<vendor>SAP SE</vendor>
|
|
6
8
|
<copyright>SAPUI5
|
|
7
9
|
(c) Copyright 2009-2020 SAP SE. All rights reserved
|
|
8
10
|
</copyright>
|
|
9
|
-
<version>1.114.
|
|
11
|
+
<version>1.114.13</version>
|
|
10
12
|
<documentation>Layout components used by Design Studio. NOT INTENDED FOR STANDALONE USAGE.</documentation>
|
|
11
13
|
<dependencies>
|
|
12
14
|
<dependency>
|
|
@@ -14,9 +14,9 @@ sap.ui.define(
|
|
|
14
14
|
* others do not.
|
|
15
15
|
*
|
|
16
16
|
* @enum {string}
|
|
17
|
-
|
|
17
|
+
* @alias sap.zen.commons.HAlign
|
|
18
18
|
* @public
|
|
19
|
-
* @deprecated Since version 1.89.0
|
|
19
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
20
20
|
*/
|
|
21
21
|
var HAlign = {
|
|
22
22
|
/**
|
|
@@ -27,13 +27,13 @@ sap.ui.define(
|
|
|
27
27
|
* @namespace
|
|
28
28
|
* @name sap.zen.commons
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.114.
|
|
30
|
+
* @version 1.114.13
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
33
|
// delegate further initialization of this library to the Core
|
|
34
34
|
sap.ui.getCore().initLibrary({
|
|
35
35
|
name : "sap.zen.commons",
|
|
36
|
-
version: "1.114.
|
|
36
|
+
version: "1.114.13",
|
|
37
37
|
dependencies : ["sap.ui.core","sap.ui.layout","sap.m"],
|
|
38
38
|
types: [
|
|
39
39
|
"sap.zen.commons.BackgroundDesign",
|