@openui5/sap.ui.layout 1.126.1 → 1.128.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/THIRDPARTY.txt +1 -1
- package/package.json +2 -2
- package/src/sap/ui/layout/.library +1 -1
- package/src/sap/ui/layout/AlignedFlowLayout.js +1 -1
- package/src/sap/ui/layout/AssociativeSplitter.js +1 -1
- package/src/sap/ui/layout/BlockLayout.js +1 -1
- package/src/sap/ui/layout/BlockLayoutCell.js +1 -1
- package/src/sap/ui/layout/BlockLayoutCellData.js +1 -1
- package/src/sap/ui/layout/BlockLayoutRow.js +1 -1
- package/src/sap/ui/layout/DynamicSideContent.js +1 -1
- package/src/sap/ui/layout/FixFlex.js +1 -1
- package/src/sap/ui/layout/Grid.js +1 -1
- package/src/sap/ui/layout/GridData.js +1 -1
- package/src/sap/ui/layout/GridRenderer.js +1 -1
- package/src/sap/ui/layout/HorizontalLayout.js +1 -1
- package/src/sap/ui/layout/PaneContainer.js +1 -1
- package/src/sap/ui/layout/ResponsiveFlowLayout.js +1 -1
- package/src/sap/ui/layout/ResponsiveFlowLayoutData.js +1 -1
- package/src/sap/ui/layout/ResponsiveSplitter.js +1 -1
- package/src/sap/ui/layout/ResponsiveSplitterPage.js +1 -1
- package/src/sap/ui/layout/SplitPane.js +1 -1
- package/src/sap/ui/layout/Splitter.js +5 -1
- package/src/sap/ui/layout/SplitterLayoutData.js +1 -1
- package/src/sap/ui/layout/VerticalLayout.js +3 -1
- package/src/sap/ui/layout/changeHandler/AddFormContainer.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddFormField.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddSimpleFormField.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddSimpleFormGroup.js +1 -1
- package/src/sap/ui/layout/changeHandler/HideSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/MoveSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/RenameFormContainer.js +1 -1
- package/src/sap/ui/layout/changeHandler/RenameSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/UnhideSimpleForm.js +1 -1
- package/src/sap/ui/layout/cssgrid/CSSGrid.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridBasicLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridBoxLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridItemLayoutData.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridLayoutBase.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridLayoutDelegate.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridResponsiveLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridSettings.js +1 -1
- package/src/sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData.js +1 -1
- package/src/sap/ui/layout/cssgrid/ResponsiveColumnLayout.js +1 -1
- package/src/sap/ui/layout/designtime/form/SimpleForm.designtime.js +12 -0
- package/src/sap/ui/layout/designtime/messagebundle_en_US_saptrc.properties +11 -11
- package/src/sap/ui/layout/form/ColumnContainerData.js +1 -1
- package/src/sap/ui/layout/form/ColumnElementData.js +1 -1
- package/src/sap/ui/layout/form/ColumnLayout.js +11 -11
- package/src/sap/ui/layout/form/Form.js +7 -3
- package/src/sap/ui/layout/form/FormContainer.js +5 -1
- package/src/sap/ui/layout/form/FormElement.js +1 -1
- package/src/sap/ui/layout/form/FormLayout.js +1 -1
- package/src/sap/ui/layout/form/GridContainerData.js +1 -1
- package/src/sap/ui/layout/form/GridElementData.js +1 -1
- package/src/sap/ui/layout/form/GridLayout.js +1 -1
- package/src/sap/ui/layout/form/ResponsiveGridLayout.js +5 -5
- package/src/sap/ui/layout/form/ResponsiveLayout.js +1 -1
- package/src/sap/ui/layout/form/SemanticFormElement.js +1 -1
- package/src/sap/ui/layout/form/SimpleForm.js +12 -2
- package/src/sap/ui/layout/library.js +2 -2
- package/src/sap/ui/layout/messagebundle_en_US_saptrc.properties +9 -9
package/THIRDPARTY.txt
CHANGED
|
@@ -468,7 +468,7 @@ License: Apache-2.0
|
|
|
468
468
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
469
469
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
470
470
|
|
|
471
|
-
Component: SAP Theming Base Content, version: 11.
|
|
471
|
+
Component: SAP Theming Base Content, version: 11.16.1
|
|
472
472
|
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
473
473
|
License: Apache-2.0
|
|
474
474
|
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.layout",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.128.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.layout",
|
|
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.128.0"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<copyright>OpenUI5
|
|
7
7
|
* (c) Copyright 2009-2024 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.128.0</version>
|
|
10
10
|
|
|
11
11
|
<documentation>SAPUI5 library with layout controls.</documentation>
|
|
12
12
|
|
|
@@ -72,7 +72,7 @@ sap.ui.define([
|
|
|
72
72
|
* @extends sap.ui.core.Control
|
|
73
73
|
*
|
|
74
74
|
* @author SAP SE
|
|
75
|
-
* @version 1.
|
|
75
|
+
* @version 1.128.0
|
|
76
76
|
*
|
|
77
77
|
* @constructor
|
|
78
78
|
* @public
|
|
@@ -1247,6 +1247,10 @@ sap.ui.define([
|
|
|
1247
1247
|
|
|
1248
1248
|
//////////////////////////////////////// Overridden Methods ////////////////////////////////////////
|
|
1249
1249
|
|
|
1250
|
+
Splitter.prototype.getFocusDomRef = function() {
|
|
1251
|
+
return this.getDomRef("splitbar-0") || this.getDomRef();
|
|
1252
|
+
};
|
|
1253
|
+
|
|
1250
1254
|
Splitter.prototype.invalidate = function(oOrigin) {
|
|
1251
1255
|
var bForce =
|
|
1252
1256
|
// In case the content invalidates and bubbles up (for example an invisible button being
|
|
@@ -22,10 +22,12 @@ sap.ui.define([
|
|
|
22
22
|
*
|
|
23
23
|
* @class
|
|
24
24
|
* In this layout the content controls are rendered one below the other.
|
|
25
|
+
*
|
|
26
|
+
* <b>Note:</b> <code>VerticalLayout</code> is not a focusable element and therefore the inheritance of the <code>tooltip</code> property isn't supported.
|
|
25
27
|
* @extends sap.ui.core.Control
|
|
26
28
|
*
|
|
27
29
|
* @author SAP SE
|
|
28
|
-
* @version 1.
|
|
30
|
+
* @version 1.128.0
|
|
29
31
|
*
|
|
30
32
|
* @constructor
|
|
31
33
|
* @public
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
* Change handler for adding a simple form group.
|
|
18
18
|
* @alias sap.ui.layout.changeHandler.AddSimpleFormGroup
|
|
19
19
|
* @author SAP SE
|
|
20
|
-
* @version 1.
|
|
20
|
+
* @version 1.128.0
|
|
21
21
|
* @experimental Since 1.27.0
|
|
22
22
|
*/
|
|
23
23
|
var AddSimpleFormGroup = {};
|
|
@@ -14,7 +14,7 @@ sap.ui.define([
|
|
|
14
14
|
*
|
|
15
15
|
* @alias sap.ui.layout.changeHandler.RenameFormContainer
|
|
16
16
|
* @author SAP SE
|
|
17
|
-
* @version 1.
|
|
17
|
+
* @version 1.128.0
|
|
18
18
|
* @since 1.48
|
|
19
19
|
* @private
|
|
20
20
|
* @experimental Since 1.48. This class is experimental and provides only limited functionality. Also the API might be changed in future.
|
|
@@ -20,7 +20,7 @@ sap.ui.define([
|
|
|
20
20
|
*
|
|
21
21
|
* @alias sap.ui.layout.changeHandler.RenameForm
|
|
22
22
|
* @author SAP SE
|
|
23
|
-
* @version 1.
|
|
23
|
+
* @version 1.128.0
|
|
24
24
|
* @since 1.40
|
|
25
25
|
* @private
|
|
26
26
|
* @experimental Since 1.40. This class is experimental and provides only limited functionality. Also the API might be changed in future.
|
|
@@ -96,7 +96,7 @@ sap.ui.define([
|
|
|
96
96
|
* @see {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
|
|
97
97
|
*
|
|
98
98
|
* @author SAP SE
|
|
99
|
-
* @version 1.
|
|
99
|
+
* @version 1.128.0
|
|
100
100
|
*
|
|
101
101
|
* @extends sap.ui.core.Control
|
|
102
102
|
* @implements sap.ui.layout.cssgrid.IGridConfigurable
|
|
@@ -22,7 +22,7 @@ sap.ui.define([
|
|
|
22
22
|
* Have to possibility to hold multiple sap.ui.layout.cssgrid.GridSettings and apply the currently active GridSettings.
|
|
23
23
|
*
|
|
24
24
|
* @author SAP SE
|
|
25
|
-
* @version 1.
|
|
25
|
+
* @version 1.128.0
|
|
26
26
|
*
|
|
27
27
|
* @extends sap.ui.layout.cssgrid.GridLayoutBase
|
|
28
28
|
*
|
|
@@ -65,6 +65,10 @@ sap.ui.define([
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
var oFormPropagatedMetadata = {
|
|
68
|
+
properties: {
|
|
69
|
+
width: {ignore: true},
|
|
70
|
+
editable: {ignore: true}
|
|
71
|
+
},
|
|
68
72
|
aggregations: {
|
|
69
73
|
formContainers: {
|
|
70
74
|
//maybe inherited from Form
|
|
@@ -145,6 +149,11 @@ sap.ui.define([
|
|
|
145
149
|
singular: "GROUP_CONTROL_NAME",
|
|
146
150
|
plural: "GROUP_CONTROL_NAME_PLURAL"
|
|
147
151
|
},
|
|
152
|
+
properties: {
|
|
153
|
+
visible: {ignore: true},
|
|
154
|
+
expanded: {ignore: true},
|
|
155
|
+
expandable: {ignore: true}
|
|
156
|
+
},
|
|
148
157
|
aggregations: {
|
|
149
158
|
formElements: {
|
|
150
159
|
childNames: {
|
|
@@ -228,6 +237,9 @@ sap.ui.define([
|
|
|
228
237
|
singular: "FIELD_CONTROL_NAME",
|
|
229
238
|
plural: "FIELD_CONTROL_NAME_PLURAL"
|
|
230
239
|
},
|
|
240
|
+
properties: {
|
|
241
|
+
visible: {ignore: true}
|
|
242
|
+
},
|
|
231
243
|
actions: {
|
|
232
244
|
rename: {
|
|
233
245
|
changeType: "renameLabel",
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
|
|
2
|
-
MSG_REMOVING_TOOLBAR=
|
|
2
|
+
MSG_REMOVING_TOOLBAR=xJBe3YqQGOr3oQko3mQIcg_The header area of this group contains additional elements. If you remove the group, they will be lost. Do you want to remove the group anyway?
|
|
3
3
|
|
|
4
|
-
GROUP_CONTROL_NAME=
|
|
5
|
-
GROUP_CONTROL_NAME_PLURAL=
|
|
6
|
-
FIELD_CONTROL_NAME=
|
|
7
|
-
FIELD_CONTROL_NAME_PLURAL=
|
|
4
|
+
GROUP_CONTROL_NAME=Mbrpt8d9tAMiKsqz1vXtZA_Group
|
|
5
|
+
GROUP_CONTROL_NAME_PLURAL=IH8lIpo3PNNoGWslFGfq2Q_Groups
|
|
6
|
+
FIELD_CONTROL_NAME=32tOjjunnXaTo1JrqBT/ow_Field
|
|
7
|
+
FIELD_CONTROL_NAME_PLURAL=itPDJb3jEdqDfM68ZeQ4jw_Fields
|
|
8
8
|
|
|
9
|
-
HORIZONTAL_LAYOUT_CONTROL_NAME=
|
|
9
|
+
HORIZONTAL_LAYOUT_CONTROL_NAME=e9WfzyUHqjegT4obDJQ7mQ_Horizontal Container
|
|
10
10
|
|
|
11
|
-
HORIZONTAL_LAYOUT_CONTROL_NAME_PLURAL=
|
|
11
|
+
HORIZONTAL_LAYOUT_CONTROL_NAME_PLURAL=1cblhOgB3MHsG3rULGpCfA_Horizontal Containers
|
|
12
12
|
|
|
13
|
-
VERTICAL_LAYOUT_CONTROL_NAME=
|
|
13
|
+
VERTICAL_LAYOUT_CONTROL_NAME=T4GSkpmqS2rc7TSpuvd2Ag_Vertical Container
|
|
14
14
|
|
|
15
|
-
VERTICAL_LAYOUT_NAME_PLURAL
|
|
15
|
+
VERTICAL_LAYOUT_NAME_PLURAL=+cxm7ZrkSLIopMmqRpgElw_Vertical Containers
|
|
16
16
|
|
|
17
|
-
GRID_CONTROL_NAME=
|
|
17
|
+
GRID_CONTROL_NAME=ge03rg9Gq0LdNFvgouGcPg_Grid
|
|
18
18
|
|
|
19
|
-
GRID_CONTROL_NAME_PLURAL=
|
|
19
|
+
GRID_CONTROL_NAME_PLURAL=DztqDB8tSZEVjd2GPmpPUg_Grids
|
|
@@ -60,7 +60,7 @@ sap.ui.define([
|
|
|
60
60
|
* This control cannot be used stand-alone, it just renders a {@link sap.ui.layout.form.Form Form} control,
|
|
61
61
|
* so it must be assigned to a {@link sap.ui.layout.form.Form Form} control using the <code>layout</code> aggregation.
|
|
62
62
|
* @extends sap.ui.layout.form.FormLayout
|
|
63
|
-
* @version 1.
|
|
63
|
+
* @version 1.128.0
|
|
64
64
|
*
|
|
65
65
|
* @constructor
|
|
66
66
|
* @public
|
|
@@ -614,25 +614,25 @@ sap.ui.define([
|
|
|
614
614
|
var iColumns = 1;
|
|
615
615
|
|
|
616
616
|
if (iWidth <= this._iBreakPointTablet) {
|
|
617
|
-
|
|
618
|
-
|
|
617
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Phone", true);
|
|
618
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Desktop", false).toggleStyleClass("sapUiFormCLMedia-Std-Tablet", false).toggleStyleClass("sapUiFormCLMedia-Std-LargeDesktop", false);
|
|
619
619
|
} else if ((iWidth > this._iBreakPointTablet) && (iWidth <= this._iBreakPointDesktop)) {
|
|
620
|
-
|
|
621
|
-
|
|
620
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Tablet", true);
|
|
621
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Desktop", false).toggleStyleClass("sapUiFormCLMedia-Std-Phone", false).toggleStyleClass("sapUiFormCLMedia-Std-LargeDesktop", false);
|
|
622
622
|
iColumns = this.getColumnsM();
|
|
623
623
|
} else if ((iWidth > this._iBreakPointDesktop) && (iWidth <= this._iBreakPointLargeDesktop)) {
|
|
624
|
-
|
|
625
|
-
|
|
624
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Desktop", true);
|
|
625
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Phone", false).toggleStyleClass("sapUiFormCLMedia-Std-Tablet", false).toggleStyleClass("sapUiFormCLMedia-Std-LargeDesktop", false);
|
|
626
626
|
iColumns = this.getColumnsL();
|
|
627
627
|
} else {
|
|
628
|
-
|
|
629
|
-
|
|
628
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-LargeDesktop", true);
|
|
629
|
+
this.toggleStyleClass("sapUiFormCLMedia-Std-Desktop", false).toggleStyleClass("sapUiFormCLMedia-Std-Phone", false).toggleStyleClass("sapUiFormCLMedia-Std-Tablet", false);
|
|
630
630
|
iColumns = this.getColumnsXL();
|
|
631
631
|
}
|
|
632
632
|
|
|
633
633
|
var bWideColumns = this.getLabelCellsLarge() < 12 && iWidth / iColumns > this._iBreakPointTablet;
|
|
634
|
-
|
|
635
|
-
|
|
634
|
+
this.toggleStyleClass("sapUiFormCLWideColumns", bWideColumns);
|
|
635
|
+
this.toggleStyleClass("sapUiFormCLSmallColumns", !bWideColumns);
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
ColumnLayout.prototype.getLayoutDataForDelimiter = function() {
|
|
@@ -44,7 +44,7 @@ sap.ui.define([
|
|
|
44
44
|
* @extends sap.ui.core.Control
|
|
45
45
|
*
|
|
46
46
|
* @author SAP SE
|
|
47
|
-
* @version 1.
|
|
47
|
+
* @version 1.128.0
|
|
48
48
|
*
|
|
49
49
|
* @constructor
|
|
50
50
|
* @public
|
|
@@ -95,7 +95,7 @@ sap.ui.define([
|
|
|
95
95
|
*
|
|
96
96
|
* <b>Note:</b> If the title is provided as a string, the title is rendered with a theme-dependent default level.
|
|
97
97
|
* As the <code>Form</code> control cannot know the structure of the page, this might not fit the page structure.
|
|
98
|
-
* In this case provide the title using a <code>Title</code> element and set its {@link sap.ui.core.Title#setLevel level} to the needed value.
|
|
98
|
+
* In this case, provide the title using a <code>Title</code> element and set its {@link sap.ui.core.Title#setLevel level} to the needed value.
|
|
99
99
|
*/
|
|
100
100
|
title : {type : "sap.ui.core.Title", altTypes : ["string"], multiple : false},
|
|
101
101
|
|
|
@@ -104,7 +104,7 @@ sap.ui.define([
|
|
|
104
104
|
*
|
|
105
105
|
* <b>Note:</b> If a <code>Toolbar</code> is used, the <code>Title</code> is ignored.
|
|
106
106
|
* If a title is needed inside the <code>Toolbar</code> it must be added at content to the <code>Toolbar</code>.
|
|
107
|
-
* In this case add the <code>Title</code> to the <code>ariaLabelledBy</code> association.
|
|
107
|
+
* In this case, add the <code>Title</code> to the <code>ariaLabelledBy</code> association.
|
|
108
108
|
* Use the right title level to meet the visual requirements. This might be theme-dependent.
|
|
109
109
|
* @since 1.36.0
|
|
110
110
|
*/
|
|
@@ -121,6 +121,10 @@ sap.ui.define([
|
|
|
121
121
|
|
|
122
122
|
/**
|
|
123
123
|
* Association to controls / IDs that label this control (see WAI-ARIA attribute <code>aria-labelledby</code>).
|
|
124
|
+
*
|
|
125
|
+
* <b>Note:</b> Every <code>Form</code> needs to have some title or label (at least for screen reader support). If no <code>Title</code>
|
|
126
|
+
* is set, and the <code>Form</code> is not a child or a control with a title, such as {@link sap.m.Panel Panel} or {@link sap.m.Dialog Dialog},
|
|
127
|
+
* a label or title needs to be assigned using the <code>ariaLabelledBy</code> association.
|
|
124
128
|
* @since 1.28.0
|
|
125
129
|
*/
|
|
126
130
|
ariaLabelledBy: { type: "sap.ui.core.Control", multiple: true, singularName: "ariaLabelledBy" }
|
|
@@ -29,7 +29,7 @@ sap.ui.define([
|
|
|
29
29
|
* @extends sap.ui.core.Element
|
|
30
30
|
*
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.128.0
|
|
33
33
|
*
|
|
34
34
|
* @constructor
|
|
35
35
|
* @public
|
|
@@ -113,6 +113,10 @@ sap.ui.define([
|
|
|
113
113
|
*
|
|
114
114
|
* <b>Note:</b> This attribute is only rendered if the <code>FormContainer</code> has it's own
|
|
115
115
|
* DOM representation in the used <code>FormLayout</code>.
|
|
116
|
+
*
|
|
117
|
+
* <b>Note:</b> If there is more than one <code>FormContainers</code>, every <code>FormContainer</code> needs to have some title or label
|
|
118
|
+
* (at least for screen reader support).
|
|
119
|
+
* If no <code>Title</code> is set, a label or title needs to be assigned using the <code>ariaLabelledBy</code> association.
|
|
116
120
|
* @since 1.36.0
|
|
117
121
|
*/
|
|
118
122
|
ariaLabelledBy: { type: "sap.ui.core.Control", multiple: true, singularName: "ariaLabelledBy" }
|
|
@@ -46,16 +46,16 @@ sap.ui.define([
|
|
|
46
46
|
* Depending on the available space, the {@link sap.ui.layout.form.FormContainer FormContainers} are rendered in one or different columns and the labels are rendered in the same row as the fields or above the fields.
|
|
47
47
|
* This behavior can be influenced by the properties of this layout control.
|
|
48
48
|
*
|
|
49
|
-
* On the {@link sap.ui.layout.form.FormContainer FormContainers}, labels and content fields, {@link sap.ui.layout.
|
|
50
|
-
* {@link sap.ui.layout.
|
|
49
|
+
* On the {@link sap.ui.layout.form.FormContainer FormContainers}, labels and content fields, {@link sap.ui.layout.GridData GridData} can be used to change the default rendering.
|
|
50
|
+
* {@link sap.ui.layout.GridData GridData} is not supported for {@link sap.ui.layout.form.FormElement FormElements}.
|
|
51
51
|
*
|
|
52
|
-
* <b>Note:</b> If {@link sap.ui.layout.
|
|
52
|
+
* <b>Note:</b> If {@link sap.ui.layout.GridData GridData} is used, this may result in a much more complex layout than the default one.
|
|
53
53
|
* This means that in some cases, the calculation for the other content may not bring the expected result.
|
|
54
|
-
* In such cases, {@link sap.ui.layout.
|
|
54
|
+
* In such cases, {@link sap.ui.layout.GridData GridData} should be used for all content controls to disable the default behavior.
|
|
55
55
|
*
|
|
56
56
|
* This control cannot be used stand-alone, it just renders a {@link sap.ui.layout.form.Form Form}, so it must be assigned to a {@link sap.ui.layout.form.Form Form} using the <code>layout</code> aggregation.
|
|
57
57
|
* @extends sap.ui.layout.form.FormLayout
|
|
58
|
-
* @version 1.
|
|
58
|
+
* @version 1.128.0
|
|
59
59
|
*
|
|
60
60
|
* @constructor
|
|
61
61
|
* @public
|
|
@@ -69,7 +69,7 @@ sap.ui.define([
|
|
|
69
69
|
* <b>Note:</b> If a more complex form is needed, use the <code>{@link sap.ui.layout.form.Form Form}</code> control instead.
|
|
70
70
|
*
|
|
71
71
|
* @extends sap.ui.core.Control
|
|
72
|
-
* @version 1.
|
|
72
|
+
* @version 1.128.0
|
|
73
73
|
*
|
|
74
74
|
* @constructor
|
|
75
75
|
* @public
|
|
@@ -364,6 +364,12 @@ sap.ui.define([
|
|
|
364
364
|
|
|
365
365
|
/**
|
|
366
366
|
* Title element of the <code>SimpleForm</code>. Can either be a <code>Title</code> element, or a string.
|
|
367
|
+
*
|
|
368
|
+
* <b>Note:</b> If a <code>Toolbar</code> is used, the <code>Title</code> is ignored.
|
|
369
|
+
*
|
|
370
|
+
* <b>Note:</b> If the title is provided as a string, the title is rendered with a theme-dependent default level.
|
|
371
|
+
* As the <code>Form</code> control cannot know the structure of the page, this might not fit the page structure.
|
|
372
|
+
* In this case, provide the title using a <code>Title</code> element and set its {@link sap.ui.core.Title#setLevel level} to the needed value.
|
|
367
373
|
* @since 1.16.3
|
|
368
374
|
*/
|
|
369
375
|
title : {type : "sap.ui.core.Title", altTypes : ["string"], multiple : false},
|
|
@@ -373,7 +379,7 @@ sap.ui.define([
|
|
|
373
379
|
*
|
|
374
380
|
* <b>Note:</b> If a <code>Toolbar</code> is used, the <code>Title</code> is ignored.
|
|
375
381
|
* If a title is needed inside the <code>Toolbar</code> it must be added at content to the <code>Toolbar</code>.
|
|
376
|
-
* In this case add the <code>Title</code> to the <code>ariaLabelledBy</code> association.
|
|
382
|
+
* In this case, add the <code>Title</code> to the <code>ariaLabelledBy</code> association.
|
|
377
383
|
* @since 1.36.0
|
|
378
384
|
*/
|
|
379
385
|
toolbar : {type : "sap.ui.core.Toolbar", multiple : false,
|
|
@@ -387,6 +393,10 @@ sap.ui.define([
|
|
|
387
393
|
|
|
388
394
|
/**
|
|
389
395
|
* Association to controls / IDs which label this control (see WAI-ARIA attribute <code>aria-labelledby</code>).
|
|
396
|
+
*
|
|
397
|
+
* <b>Note:</b> Every <code>Form</code> needs to have some title or label (at least for screen reader support). If no <code>Title</code>
|
|
398
|
+
* is set, and the <code>Form</code> is not a child or a control with a title, such as {@link sap.m.Panel Panel} or {@link sap.m.Dialog Dialog},
|
|
399
|
+
* a label or title needs to be assigned using the <code>ariaLabelledBy</code> association.
|
|
390
400
|
* @since 1.32.0
|
|
391
401
|
*/
|
|
392
402
|
ariaLabelledBy: { type: "sap.ui.core.Control", multiple: true, singularName: "ariaLabelledBy" }
|
|
@@ -21,14 +21,14 @@ sap.ui.define([
|
|
|
21
21
|
* @namespace
|
|
22
22
|
* @alias sap.ui.layout
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.
|
|
24
|
+
* @version 1.128.0
|
|
25
25
|
* @since 1.15
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
28
|
var thisLib = Library.init({
|
|
29
29
|
apiVersion: 2,
|
|
30
30
|
name : "sap.ui.layout",
|
|
31
|
-
version: "1.
|
|
31
|
+
version: "1.128.0",
|
|
32
32
|
dependencies: ["sap.ui.core"],
|
|
33
33
|
designtime: "sap/ui/layout/designtime/library.designtime",
|
|
34
34
|
types: [
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
|
|
2
|
-
FORM_EXPAND=
|
|
3
|
-
FORM_COLLAPSE=
|
|
2
|
+
FORM_EXPAND=7Zay2iwIJM/EDnTfSQczUA_Expand
|
|
3
|
+
FORM_COLLAPSE=NcbR6oXO01wRtqpcmZKJbQ_Collapse
|
|
4
4
|
|
|
5
|
-
SPLITTER_MOVE=
|
|
5
|
+
SPLITTER_MOVE=q6fPoV4nPzTcxLTA2QWc3w_Press ARROW keys to move
|
|
6
6
|
|
|
7
|
-
SIDE_CONTENT_LABEL=
|
|
7
|
+
SIDE_CONTENT_LABEL=A9xfQcEf3me38LFpqRX0ow_Side Content
|
|
8
8
|
|
|
9
|
-
RESPONSIVE_SPLITTER_RESIZE=
|
|
9
|
+
RESPONSIVE_SPLITTER_RESIZE=4Ayey5+wC65ZECx+Mr6o0A_Resize between pane {0} and pane {1}
|
|
10
10
|
|
|
11
|
-
RESPONSIVE_SPLITTER_HOME=
|
|
11
|
+
RESPONSIVE_SPLITTER_HOME=4gaHmqTxuNGRjqzbYMuUJw_Go to split screen
|
|
12
12
|
|
|
13
|
-
RESPONSIVE_SPLITTER_AND=
|
|
13
|
+
RESPONSIVE_SPLITTER_AND=tg5Os3DNmgls+54Z2tugTQ_and
|
|
14
14
|
|
|
15
|
-
RESPONSIVE_SPLITTER_GOTO=
|
|
15
|
+
RESPONSIVE_SPLITTER_GOTO=rxO819eNb+Q1MyjqZUXCKw_Go to screen
|
|
16
16
|
|
|
17
|
-
RESPONSIVE_SPLITTER_ARIA_PAGINATOR_LABEL=
|
|
17
|
+
RESPONSIVE_SPLITTER_ARIA_PAGINATOR_LABEL=EfD6Ja5HDc2J30DGihMVBQ_Pane Switcher
|