@sapui5/sap.zen.crosstab 1.122.0 → 1.123.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/package.json +1 -1
- package/src/sap/zen/crosstab/.library +4 -1
- package/src/sap/zen/crosstab/Crosstab.js +1 -1
- package/src/sap/zen/crosstab/DataCell.js +1 -1
- package/src/sap/zen/crosstab/HeaderCell.js +3 -3
- package/src/sap/zen/crosstab/library.js +1 -1
- package/ui5.yaml +1 -0
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
# @sapui5/sap.zen.crosstab
|
|
4
4
|
Runtime resources of the [SAPUI5](https://sapui5.hana.ondemand.com) Library **sap.zen.crosstab**.
|
|
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,9 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd" >
|
|
3
3
|
<name>sap.zen.crosstab</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>
|
|
4
7
|
<vendor>SAP SE</vendor>
|
|
5
8
|
<copyright>(c) Copyright 2010-2019 SAP SE or an SAP affiliate company.</copyright>
|
|
6
|
-
<version>1.
|
|
9
|
+
<version>1.123.0</version>
|
|
7
10
|
<documentation>Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.</documentation>
|
|
8
11
|
<appData>
|
|
9
12
|
<jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
|
|
@@ -48,7 +48,7 @@ sap.ui.define(
|
|
|
48
48
|
* @constructor
|
|
49
49
|
* @public
|
|
50
50
|
* @name sap.zen.crosstab.Crosstab
|
|
51
|
-
* @deprecated
|
|
51
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
52
52
|
*/
|
|
53
53
|
Control.extend("sap.zen.crosstab.Crosstab", /** @lends sap.zen.crosstab.Crosstab.prototype */ { metadata : {
|
|
54
54
|
library : "sap.zen.crosstab",
|
|
@@ -28,7 +28,7 @@ sap.ui.define(
|
|
|
28
28
|
*
|
|
29
29
|
* @constructor
|
|
30
30
|
* @public
|
|
31
|
-
* @deprecated
|
|
31
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
32
32
|
* @alias sap.zen.crosstab.DataCell
|
|
33
33
|
*/
|
|
34
34
|
var DataCell = Control.extend("sap.zen.crosstab.DataCell", /** @lends sap.zen.crosstab.DataCell.prototype */ {
|
|
@@ -32,7 +32,7 @@ sap.ui.define(
|
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
35
|
-
* @deprecated
|
|
35
|
+
* @deprecated As of version 1.89.0, please use the WD Grid control instead.
|
|
36
36
|
* @alias sap.zen.crosstab.HeaderCell
|
|
37
37
|
*/
|
|
38
38
|
var HeaderCell = Control.extend("sap.zen.crosstab.HeaderCell", /** @lends sap.zen.crosstab.HeaderCell.prototype */ {
|
|
@@ -67,7 +67,7 @@ sap.ui.define(
|
|
|
67
67
|
mergeKey : {type : "string", group : "Misc", defaultValue : null},
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
|
-
* sorting
|
|
70
|
+
* sorting
|
|
71
71
|
*/
|
|
72
72
|
sort : {type : "string", group : "Misc", defaultValue : null},
|
|
73
73
|
|
|
@@ -123,7 +123,7 @@ sap.ui.define(
|
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
125
|
* the IE8 row span
|
|
126
|
-
* @deprecated
|
|
126
|
+
* @deprecated As of version 1.89.0, the concept has been discarded.
|
|
127
127
|
*/
|
|
128
128
|
htmlIE8RowSpan : {type : "int", group : "Misc", defaultValue : 1},
|
|
129
129
|
|