@sapui5/sap.zen.commons 1.96.22 → 1.96.25
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 -1
- package/src/sap/zen/commons/BackgroundDesign.js +69 -69
- package/src/sap/zen/commons/Cell.js +1 -1
- package/src/sap/zen/commons/Grid.js +1 -1
- package/src/sap/zen/commons/HAlign.js +58 -58
- package/src/sap/zen/commons/Padding.js +66 -66
- package/src/sap/zen/commons/SemanticStyle.js +1 -1
- package/src/sap/zen/commons/Separation.js +70 -70
- package/src/sap/zen/commons/VAlign.js +42 -42
- 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
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd" >
|
|
3
3
|
|
|
4
4
|
<name>sap.zen.commons</name>
|
|
5
|
+
<deprecation since="1.96">
|
|
6
|
+
All sap.zen code in this library has been deprecated. Please use the WD Grid control instead.
|
|
7
|
+
</deprecation>
|
|
5
8
|
<vendor>SAP SE</vendor>
|
|
6
9
|
<copyright>SAPUI5
|
|
7
10
|
(c) Copyright 2009-2020 SAP SE. All rights reserved</copyright>
|
|
8
|
-
<version>1.96.
|
|
11
|
+
<version>1.96.25</version>
|
|
9
12
|
<documentation>Layout components used by Design Studio. NOT INTENDED FOR STANDALONE USAGE.</documentation>
|
|
10
13
|
<dependencies>
|
|
11
14
|
<dependency>
|
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
/*!
|
|
1
|
+
/*!
|
|
2
2
|
* SAPUI5
|
|
3
|
-
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
-
*/
|
|
5
|
-
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/commons/BackgroundDesign", [],
|
|
8
|
-
function () {
|
|
9
|
-
"use strict";
|
|
10
|
-
/**
|
|
11
|
-
* Background design (i.e. color), e.g. of a layout cell.
|
|
12
|
-
*
|
|
13
|
-
* @enum {string}
|
|
14
|
-
* @public
|
|
15
|
-
* @deprecated Since version 1.89.0
|
|
16
|
-
*/
|
|
17
|
-
var BackgroundDesign = {
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* A background design suitable for borders.
|
|
21
|
-
*
|
|
22
|
-
* @public
|
|
23
|
-
*/
|
|
24
|
-
Border
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* An opaque background design that looks dark filled.
|
|
28
|
-
*
|
|
29
|
-
* @public
|
|
30
|
-
*/
|
|
31
|
-
Fill1
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* An opaque background design that looks medium filled.
|
|
35
|
-
*
|
|
36
|
-
* @public
|
|
37
|
-
*/
|
|
38
|
-
Fill2
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* An opaque background design that looks light filled.
|
|
42
|
-
*
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
Fill3
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* A background design suitable for headers.
|
|
49
|
-
*
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
Header
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* A plain but opaque background design.
|
|
56
|
-
*
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
59
|
-
Plain
|
|
60
|
-
/**
|
|
61
|
-
*
|
|
62
|
-
* A transparent background.
|
|
63
|
-
*
|
|
64
|
-
* @public
|
|
65
|
-
*/
|
|
66
|
-
Transparent
|
|
67
|
-
};
|
|
68
|
-
return BackgroundDesign;
|
|
69
|
-
}
|
|
70
|
-
);
|
|
3
|
+
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define(
|
|
7
|
+
"sap/zen/commons/BackgroundDesign", [],
|
|
8
|
+
function () {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Background design (i.e. color), e.g. of a layout cell.
|
|
12
|
+
*
|
|
13
|
+
* @enum {string}
|
|
14
|
+
* @public
|
|
15
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
16
|
+
*/
|
|
17
|
+
var BackgroundDesign = {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* A background design suitable for borders.
|
|
21
|
+
*
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
Border: "Border",
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* An opaque background design that looks dark filled.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
Fill1: "Fill1",
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* An opaque background design that looks medium filled.
|
|
35
|
+
*
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Fill2: "Fill2",
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* An opaque background design that looks light filled.
|
|
42
|
+
*
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
Fill3: "Fill3",
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* A background design suitable for headers.
|
|
49
|
+
*
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
Header: "Header",
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* A plain but opaque background design.
|
|
56
|
+
*
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
Plain: "Plain",
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* A transparent background.
|
|
63
|
+
*
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
Transparent: "Transparent"
|
|
67
|
+
};
|
|
68
|
+
return BackgroundDesign;
|
|
69
|
+
}
|
|
70
|
+
);
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
/*!
|
|
1
|
+
/*!
|
|
2
2
|
* SAPUI5
|
|
3
|
-
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
-
*/
|
|
5
|
-
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/commons/HAlign", [],
|
|
8
|
-
function () {
|
|
9
|
-
"use strict";
|
|
10
|
-
/**
|
|
11
|
-
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
-
* Note that some values depend on the current locale's writing direction while
|
|
13
|
-
* others do not.
|
|
14
|
-
*
|
|
15
|
-
* @enum {string}
|
|
16
|
-
* @alias sap.zen.commons.HAlign
|
|
17
|
-
* @public
|
|
18
|
-
* @deprecated Since version 1.89.0
|
|
19
|
-
*/
|
|
20
|
-
var HAlign = {
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* Aligned towards the beginning of a line, in the current locale's writing direction.
|
|
24
|
-
*
|
|
25
|
-
* @public
|
|
26
|
-
*/
|
|
27
|
-
Begin
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* Horizontally centered.
|
|
31
|
-
*
|
|
32
|
-
* @public
|
|
33
|
-
*/
|
|
34
|
-
Center
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* Aligned towards the end of a line, in the current locale's writing direction.
|
|
38
|
-
*
|
|
39
|
-
* @public
|
|
40
|
-
*/
|
|
41
|
-
End
|
|
42
|
-
/**
|
|
43
|
-
*
|
|
44
|
-
* Left aligned, regardless of the current locale's writing direction.
|
|
45
|
-
*
|
|
46
|
-
* @public
|
|
47
|
-
*/
|
|
48
|
-
Left
|
|
49
|
-
/**
|
|
50
|
-
*
|
|
51
|
-
* Right aligned, regardless of the current locale's writing direction.
|
|
52
|
-
*
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
|
-
Right
|
|
56
|
-
};
|
|
57
|
-
return HAlign;
|
|
58
|
-
}
|
|
59
|
-
);
|
|
3
|
+
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define(
|
|
7
|
+
"sap/zen/commons/HAlign", [],
|
|
8
|
+
function () {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
+
* Note that some values depend on the current locale's writing direction while
|
|
13
|
+
* others do not.
|
|
14
|
+
*
|
|
15
|
+
* @enum {string}
|
|
16
|
+
* @alias sap.zen.commons.HAlign
|
|
17
|
+
* @public
|
|
18
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
19
|
+
*/
|
|
20
|
+
var HAlign = {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* Aligned towards the beginning of a line, in the current locale's writing direction.
|
|
24
|
+
*
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
Begin: "Begin",
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* Horizontally centered.
|
|
31
|
+
*
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
Center: "Center",
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* Aligned towards the end of a line, in the current locale's writing direction.
|
|
38
|
+
*
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
End: "End",
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* Left aligned, regardless of the current locale's writing direction.
|
|
45
|
+
*
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
Left: "Left",
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* Right aligned, regardless of the current locale's writing direction.
|
|
52
|
+
*
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
Right: "Right"
|
|
56
|
+
};
|
|
57
|
+
return HAlign;
|
|
58
|
+
}
|
|
59
|
+
);
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
/*!
|
|
1
|
+
/*!
|
|
2
2
|
* SAPUI5
|
|
3
|
-
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
-
*/
|
|
5
|
-
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/commons/Padding", [],
|
|
8
|
-
function () {
|
|
9
|
-
"use strict";
|
|
10
|
-
/**
|
|
11
|
-
* Padding, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
-
* Note that all options except "None" include a padding of 2px at the top and
|
|
13
|
-
* bottom, and differ only in the presence of a 4px padding towards the beginning
|
|
14
|
-
* or end of a line, in the current locale's writing direction.
|
|
15
|
-
*
|
|
16
|
-
* @enum {string}
|
|
17
|
-
* @public
|
|
18
|
-
* @alias sap.zen.commons.Padding
|
|
19
|
-
* @deprecated
|
|
20
|
-
* @experimental
|
|
21
|
-
*/
|
|
22
|
-
var Padding = {
|
|
23
|
-
/**
|
|
24
|
-
*
|
|
25
|
-
* No padding at all.
|
|
26
|
-
*
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
None
|
|
30
|
-
/**
|
|
31
|
-
*
|
|
32
|
-
* Top and bottom padding of 2px.
|
|
33
|
-
* Padding of 4px towards the beginning of a line, in the current locale's
|
|
34
|
-
* writing direction, but none towards its end.
|
|
35
|
-
*
|
|
36
|
-
* @public
|
|
37
|
-
*/
|
|
38
|
-
Begin
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* Top and bottom padding of 2px.
|
|
42
|
-
* Padding of 4px towards the end of a line, in the current locale's
|
|
43
|
-
* writing direction, but none towards its beginning.
|
|
44
|
-
*
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
End
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* Top and bottom padding of 2px.
|
|
51
|
-
* Padding of 4px towards both the beginning and end of a line.
|
|
52
|
-
*
|
|
53
|
-
* @public
|
|
54
|
-
*/
|
|
55
|
-
Both
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* Top and bottom padding of 2px.
|
|
59
|
-
* No padding towards neither the beginning nor end of a line.
|
|
60
|
-
*
|
|
61
|
-
* @public
|
|
62
|
-
*/
|
|
63
|
-
Neither
|
|
64
|
-
};
|
|
65
|
-
return Padding;
|
|
66
|
-
}
|
|
67
|
-
);
|
|
3
|
+
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define(
|
|
7
|
+
"sap/zen/commons/Padding", [],
|
|
8
|
+
function () {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Padding, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
+
* Note that all options except "None" include a padding of 2px at the top and
|
|
13
|
+
* bottom, and differ only in the presence of a 4px padding towards the beginning
|
|
14
|
+
* or end of a line, in the current locale's writing direction.
|
|
15
|
+
*
|
|
16
|
+
* @enum {string}
|
|
17
|
+
* @public
|
|
18
|
+
* @alias sap.zen.commons.Padding
|
|
19
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
20
|
+
* @experimental
|
|
21
|
+
*/
|
|
22
|
+
var Padding = {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* No padding at all.
|
|
26
|
+
*
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
None: "None",
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* Top and bottom padding of 2px.
|
|
33
|
+
* Padding of 4px towards the beginning of a line, in the current locale's
|
|
34
|
+
* writing direction, but none towards its end.
|
|
35
|
+
*
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Begin: "Begin",
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* Top and bottom padding of 2px.
|
|
42
|
+
* Padding of 4px towards the end of a line, in the current locale's
|
|
43
|
+
* writing direction, but none towards its beginning.
|
|
44
|
+
*
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
End: "End",
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* Top and bottom padding of 2px.
|
|
51
|
+
* Padding of 4px towards both the beginning and end of a line.
|
|
52
|
+
*
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
Both: "Both",
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* Top and bottom padding of 2px.
|
|
59
|
+
* No padding towards neither the beginning nor end of a line.
|
|
60
|
+
*
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
Neither: "Neither"
|
|
64
|
+
};
|
|
65
|
+
return Padding;
|
|
66
|
+
}
|
|
67
|
+
);
|
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
/*!
|
|
1
|
+
/*!
|
|
2
2
|
* SAPUI5
|
|
3
|
-
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
-
*/
|
|
5
|
-
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/commons/Separation", [],
|
|
8
|
-
function () {
|
|
9
|
-
"use strict";
|
|
10
|
-
/**
|
|
11
|
-
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of
|
|
12
|
-
* defined width, with or without a vertical line in its middle.
|
|
13
|
-
*
|
|
14
|
-
* @enum {string}
|
|
15
|
-
* @public
|
|
16
|
-
* @alias sap.zen.commons.Separation
|
|
17
|
-
* @deprecated Since version 1.89.0
|
|
18
|
-
*/
|
|
19
|
-
var Separation = {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* No gutter at all (0px), and without a vertical line, of course.
|
|
23
|
-
*
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
None
|
|
27
|
-
/**
|
|
28
|
-
*
|
|
29
|
-
* A small (17px) vertical gutter without a vertical line.
|
|
30
|
-
*
|
|
31
|
-
* @public
|
|
32
|
-
*/
|
|
33
|
-
Small
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* A small (17px) vertical gutter with a vertical line in its middle.
|
|
37
|
-
*
|
|
38
|
-
* @public
|
|
39
|
-
*/
|
|
40
|
-
SmallWithLine
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* A medium (31px) vertical gutter without a vertical line.
|
|
44
|
-
*
|
|
45
|
-
* @public
|
|
46
|
-
*/
|
|
47
|
-
Medium
|
|
48
|
-
/**
|
|
49
|
-
*
|
|
50
|
-
* A medium (31px) vertical gutter with a vertical line in its middle.
|
|
51
|
-
*
|
|
52
|
-
* @public
|
|
53
|
-
*/
|
|
54
|
-
MediumWithLine
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* A large (63px) vertical gutter without a vertical line.
|
|
58
|
-
*
|
|
59
|
-
* @public
|
|
60
|
-
*/
|
|
61
|
-
Large
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* A large (63px) vertical gutter with a vertical line in its middle.
|
|
65
|
-
*
|
|
66
|
-
* @public
|
|
67
|
-
*/
|
|
68
|
-
LargeWithLine
|
|
69
|
-
};
|
|
70
|
-
return Separation;
|
|
71
|
-
}
|
|
3
|
+
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define(
|
|
7
|
+
"sap/zen/commons/Separation", [],
|
|
8
|
+
function () {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of
|
|
12
|
+
* defined width, with or without a vertical line in its middle.
|
|
13
|
+
*
|
|
14
|
+
* @enum {string}
|
|
15
|
+
* @public
|
|
16
|
+
* @alias sap.zen.commons.Separation
|
|
17
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
18
|
+
*/
|
|
19
|
+
var Separation = {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* No gutter at all (0px), and without a vertical line, of course.
|
|
23
|
+
*
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
None: "None",
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* A small (17px) vertical gutter without a vertical line.
|
|
30
|
+
*
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
Small: "Small",
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* A small (17px) vertical gutter with a vertical line in its middle.
|
|
37
|
+
*
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
SmallWithLine: "SmallWithLine",
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* A medium (31px) vertical gutter without a vertical line.
|
|
44
|
+
*
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
Medium: "Medium",
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* A medium (31px) vertical gutter with a vertical line in its middle.
|
|
51
|
+
*
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
MediumWithLine: "MediumWithLine",
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* A large (63px) vertical gutter without a vertical line.
|
|
58
|
+
*
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
Large: "Large",
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* A large (63px) vertical gutter with a vertical line in its middle.
|
|
65
|
+
*
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
LargeWithLine: "LargeWithLine"
|
|
69
|
+
};
|
|
70
|
+
return Separation;
|
|
71
|
+
}
|
|
72
72
|
);
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
/*!
|
|
1
|
+
/*!
|
|
2
2
|
* SAPUI5
|
|
3
|
-
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
-
*/
|
|
5
|
-
/*global sap*/
|
|
6
|
-
sap.ui.define(
|
|
7
|
-
"sap/zen/commons/VAlign", [],
|
|
8
|
-
function () {
|
|
9
|
-
"use strict";
|
|
10
|
-
/**
|
|
11
|
-
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
-
*
|
|
13
|
-
* @enum {string}
|
|
14
|
-
* @public
|
|
15
|
-
* @alias sap.zen.commons.VAlign
|
|
16
|
-
* @deprecated Since version 1.89.0
|
|
17
|
-
*/
|
|
18
|
-
var VAlign = {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* Aligned at the bottom.
|
|
22
|
-
*
|
|
23
|
-
* @public
|
|
24
|
-
*/
|
|
25
|
-
Bottom
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* Vertically centered.
|
|
29
|
-
*
|
|
30
|
-
* @public
|
|
31
|
-
*/
|
|
32
|
-
Middle
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* Aligned at the top.
|
|
36
|
-
*
|
|
37
|
-
* @public
|
|
38
|
-
*/
|
|
39
|
-
Top
|
|
40
|
-
};
|
|
41
|
-
return VAlign;
|
|
42
|
-
}
|
|
43
|
-
);
|
|
3
|
+
* (c) Copyright 2009-2024 SAP SE. All rights reserved.
|
|
4
|
+
*/
|
|
5
|
+
/*global sap*/
|
|
6
|
+
sap.ui.define(
|
|
7
|
+
"sap/zen/commons/VAlign", [],
|
|
8
|
+
function () {
|
|
9
|
+
"use strict";
|
|
10
|
+
/**
|
|
11
|
+
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
12
|
+
*
|
|
13
|
+
* @enum {string}
|
|
14
|
+
* @public
|
|
15
|
+
* @alias sap.zen.commons.VAlign
|
|
16
|
+
* @deprecated Since version 1.89.0, Please use the WD Grid control instead.
|
|
17
|
+
*/
|
|
18
|
+
var VAlign = {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* Aligned at the bottom.
|
|
22
|
+
*
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Bottom: "Bottom",
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* Vertically centered.
|
|
29
|
+
*
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
Middle: "Middle",
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* Aligned at the top.
|
|
36
|
+
*
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
Top: "Top"
|
|
40
|
+
};
|
|
41
|
+
return VAlign;
|
|
42
|
+
}
|
|
43
|
+
);
|
|
@@ -31,13 +31,13 @@ sap.ui.define(
|
|
|
31
31
|
* @namespace
|
|
32
32
|
* @name sap.zen.commons
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.96.
|
|
34
|
+
* @version 1.96.25
|
|
35
35
|
* @public
|
|
36
36
|
*/
|
|
37
37
|
// delegate further initialization of this library to the Core
|
|
38
38
|
sap.ui.getCore().initLibrary({
|
|
39
39
|
name : "sap.zen.commons",
|
|
40
|
-
version: "1.96.
|
|
40
|
+
version: "1.96.25",
|
|
41
41
|
dependencies : ["sap.ui.core","sap.ui.layout","sap.m"],
|
|
42
42
|
types: [
|
|
43
43
|
"sap.zen.commons.BackgroundDesign",
|