@openui5/types 1.120.10 → 1.121.1
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 +1 -1
- package/types/sap.f.d.ts +124 -45
- package/types/sap.m.d.ts +2103 -312
- package/types/sap.tnt.d.ts +628 -113
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +92 -8
- package/types/sap.ui.core.d.ts +500 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +214 -27
- package/types/sap.ui.mdc.d.ts +1544 -811
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +57 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uxap.d.ts +52 -5
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -8,6 +8,8 @@ declare module "sap/ui/layout/library" {
|
|
|
8
8
|
/**
|
|
9
9
|
* Available Background Design.
|
|
10
10
|
*
|
|
11
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'BackgroundDesign'.
|
|
12
|
+
*
|
|
11
13
|
* @since 1.36.0
|
|
12
14
|
*/
|
|
13
15
|
export enum BackgroundDesign {
|
|
@@ -27,6 +29,8 @@ declare module "sap/ui/layout/library" {
|
|
|
27
29
|
/**
|
|
28
30
|
* A string type that is used inside the BlockLayout to set predefined background color to the cells inside
|
|
29
31
|
* the control.
|
|
32
|
+
*
|
|
33
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'BlockBackgroundType'.
|
|
30
34
|
*/
|
|
31
35
|
export enum BlockBackgroundType {
|
|
32
36
|
/**
|
|
@@ -56,6 +60,8 @@ declare module "sap/ui/layout/library" {
|
|
|
56
60
|
/**
|
|
57
61
|
* A string type that is used inside the BlockLayoutCell to set a predefined set of colors for the cells.
|
|
58
62
|
*
|
|
63
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'BlockLayoutCellColorSet'.
|
|
64
|
+
*
|
|
59
65
|
* @since 1.48
|
|
60
66
|
*/
|
|
61
67
|
export enum BlockLayoutCellColorSet {
|
|
@@ -109,6 +115,8 @@ declare module "sap/ui/layout/library" {
|
|
|
109
115
|
* cells. The colors are defined with sap.ui.layout.BlockLayoutCellColorSet. And this is for the shades
|
|
110
116
|
* only.
|
|
111
117
|
*
|
|
118
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'BlockLayoutCellColorShade'.
|
|
119
|
+
*
|
|
112
120
|
* @since 1.48
|
|
113
121
|
*/
|
|
114
122
|
export enum BlockLayoutCellColorShade {
|
|
@@ -140,6 +148,8 @@ declare module "sap/ui/layout/library" {
|
|
|
140
148
|
/**
|
|
141
149
|
* A string type that is used inside the BlockLayoutRow to set predefined set of colors the cells inside
|
|
142
150
|
* the control. Color sets depend on sap.ui.layout.BlockBackgroundType
|
|
151
|
+
*
|
|
152
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'BlockRowColorSets'.
|
|
143
153
|
*/
|
|
144
154
|
export enum BlockRowColorSets {
|
|
145
155
|
/**
|
|
@@ -189,6 +199,8 @@ declare module "sap/ui/layout/library" {
|
|
|
189
199
|
|
|
190
200
|
/**
|
|
191
201
|
* The position of the {@link sap.ui.layout.Grid}. Can be `Left` (default), `Center` or `Right`.
|
|
202
|
+
*
|
|
203
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'GridPosition'.
|
|
192
204
|
*/
|
|
193
205
|
export enum GridPosition {
|
|
194
206
|
/**
|
|
@@ -217,6 +229,8 @@ declare module "sap/ui/layout/library" {
|
|
|
217
229
|
/**
|
|
218
230
|
* Types of the DynamicSideContent FallDown options
|
|
219
231
|
*
|
|
232
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'SideContentFallDown'.
|
|
233
|
+
*
|
|
220
234
|
* @since 1.30
|
|
221
235
|
*/
|
|
222
236
|
export enum SideContentFallDown {
|
|
@@ -239,6 +253,8 @@ declare module "sap/ui/layout/library" {
|
|
|
239
253
|
}
|
|
240
254
|
/**
|
|
241
255
|
* The position of the side content - End (default) and Begin.
|
|
256
|
+
*
|
|
257
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'SideContentPosition'.
|
|
242
258
|
*/
|
|
243
259
|
export enum SideContentPosition {
|
|
244
260
|
/**
|
|
@@ -255,6 +271,8 @@ declare module "sap/ui/layout/library" {
|
|
|
255
271
|
/**
|
|
256
272
|
* Types of the DynamicSideContent Visibility options
|
|
257
273
|
*
|
|
274
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'SideContentVisibility'.
|
|
275
|
+
*
|
|
258
276
|
* @since 1.30
|
|
259
277
|
*/
|
|
260
278
|
export enum SideContentVisibility {
|
|
@@ -321,6 +339,8 @@ declare module "sap/ui/layout/library" {
|
|
|
321
339
|
/**
|
|
322
340
|
* A string type that is used for CSS grid to control how the auto-placement algorithm works, specifying
|
|
323
341
|
* exactly how auto-placed items get flowed into the grid.
|
|
342
|
+
*
|
|
343
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'cssgrid.CSSGridAutoFlow'.
|
|
324
344
|
* See:
|
|
325
345
|
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow}
|
|
326
346
|
*
|
|
@@ -388,6 +408,8 @@ declare module "sap/ui/layout/library" {
|
|
|
388
408
|
/**
|
|
389
409
|
* Available `FormLayouts` used to render a `SimpleForm`.
|
|
390
410
|
*
|
|
411
|
+
* This enum is part of the 'sap/ui/layout/library' module export and must be accessed by the property 'form.SimpleFormLayout'.
|
|
412
|
+
*
|
|
391
413
|
* @since 1.16.0
|
|
392
414
|
*/
|
|
393
415
|
enum SimpleFormLayout {
|
|
@@ -4319,6 +4341,15 @@ declare module "sap/ui/layout/cssgrid/ResponsiveColumnLayout" {
|
|
|
4319
4341
|
*
|
|
4320
4342
|
* Grid row's height is dynamically determined by the height of the highest grid element on this row.
|
|
4321
4343
|
*
|
|
4344
|
+
* The control provides the following breakpoints and layout sizes:
|
|
4345
|
+
* - "S" - screen width: up to 599px.
|
|
4346
|
+
* - "M" - screen width range: 600px - 1023px.
|
|
4347
|
+
* - "ML" - screen width range: 1024px - 1279px.
|
|
4348
|
+
* - "L" - screen width range: 1280px - 1439px.
|
|
4349
|
+
* - "XL" - screen width range: 1440px - 1679px.
|
|
4350
|
+
* - "XXL" - screen width range: 1680px - 1919px.
|
|
4351
|
+
* - "XXXL" - screen width range: 1920px and bigger.
|
|
4352
|
+
*
|
|
4322
4353
|
* @since 1.72
|
|
4323
4354
|
*/
|
|
4324
4355
|
export default class ResponsiveColumnLayout extends GridLayoutBase {
|
|
@@ -4507,6 +4538,8 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4507
4538
|
SideContentVisibility,
|
|
4508
4539
|
} from "sap/ui/layout/library";
|
|
4509
4540
|
|
|
4541
|
+
import { CSSSize } from "sap/ui/core/library";
|
|
4542
|
+
|
|
4510
4543
|
import {
|
|
4511
4544
|
PropertyBindingInfo,
|
|
4512
4545
|
AggregationBindingInfo,
|
|
@@ -4567,10 +4600,10 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4567
4600
|
* the same as in the standard view - the side content disappears on screen widths of less than 720 px and
|
|
4568
4601
|
* can only be viewed by triggering it.
|
|
4569
4602
|
*
|
|
4570
|
-
* **Note:** If
|
|
4571
|
-
* control will not work. `DynamicSideContent` has the overflow: auto style definition and this
|
|
4572
|
-
* the sticky elements of the
|
|
4573
|
-
* to {@link sap.m.Table} and {@link sap.m.PlanningCalendar}.
|
|
4603
|
+
* **Note:** If there is a control that has property `sticky` inside the `DynamicSideContent` the stickiness
|
|
4604
|
+
* of that control will not work. `DynamicSideContent` has the overflow: auto style definition and this
|
|
4605
|
+
* prevents the sticky elements of the inside controls from becoming fixed at the top of the viewport. This
|
|
4606
|
+
* applies for example to {@link sap.m.Table} and {@link sap.m.PlanningCalendar}.
|
|
4574
4607
|
*
|
|
4575
4608
|
* @since 1.30
|
|
4576
4609
|
*/
|
|
@@ -4767,7 +4800,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4767
4800
|
/**
|
|
4768
4801
|
* Gets current value of property {@link #getContainerQuery containerQuery}.
|
|
4769
4802
|
*
|
|
4770
|
-
* If set to
|
|
4803
|
+
* If set to `true`, then not the media Query (device screen size) but the size of the container, surrounding
|
|
4771
4804
|
* the control, defines the current range.
|
|
4772
4805
|
*
|
|
4773
4806
|
* Default value is `false`.
|
|
@@ -4793,6 +4826,8 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4793
4826
|
* 50:50 percent of the container on all screen sizes except for phone, where the main and side contents
|
|
4794
4827
|
* are switching visibility using the toggle method.
|
|
4795
4828
|
*
|
|
4829
|
+
* **Note:** setting this property overrides values set in `sideContentWidthM, sideContentWidthL, sideContentWidthXL`.
|
|
4830
|
+
*
|
|
4796
4831
|
* Default value is `false`.
|
|
4797
4832
|
*
|
|
4798
4833
|
*
|
|
@@ -4889,6 +4924,45 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
4889
4924
|
getSideContentVisibility():
|
|
4890
4925
|
| SideContentVisibility
|
|
4891
4926
|
| keyof typeof SideContentVisibility;
|
|
4927
|
+
/**
|
|
4928
|
+
* Gets current value of property {@link #getSideContentWidthL sideContentWidthL}.
|
|
4929
|
+
*
|
|
4930
|
+
* Sets the width of the side content for L breakpoint (screen width <= 1440 px and > 1024px).
|
|
4931
|
+
*
|
|
4932
|
+
* Setting value to this property overrides the default width of the side content container in L breakpoint,
|
|
4933
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
4934
|
+
*
|
|
4935
|
+
* @since 1.121
|
|
4936
|
+
*
|
|
4937
|
+
* @returns Value of property `sideContentWidthL`
|
|
4938
|
+
*/
|
|
4939
|
+
getSideContentWidthL(): CSSSize;
|
|
4940
|
+
/**
|
|
4941
|
+
* Gets current value of property {@link #getSideContentWidthM sideContentWidthM}.
|
|
4942
|
+
*
|
|
4943
|
+
* Sets the width of the side content for M breakpoint (screen width <= 1024 px and > 720px).
|
|
4944
|
+
*
|
|
4945
|
+
* Setting value to this property overrides the default width of the side content container in M breakpoint,
|
|
4946
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
4947
|
+
*
|
|
4948
|
+
* @since 1.121
|
|
4949
|
+
*
|
|
4950
|
+
* @returns Value of property `sideContentWidthM`
|
|
4951
|
+
*/
|
|
4952
|
+
getSideContentWidthM(): CSSSize;
|
|
4953
|
+
/**
|
|
4954
|
+
* Gets current value of property {@link #getSideContentWidthXL sideContentWidthXL}.
|
|
4955
|
+
*
|
|
4956
|
+
* Sets the width of the side content for XL breakpoint (screen width > 1440 px).
|
|
4957
|
+
*
|
|
4958
|
+
* Setting value to this property overrides the default width of the side content container in XL breakpoint,
|
|
4959
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
4960
|
+
*
|
|
4961
|
+
* @since 1.121
|
|
4962
|
+
*
|
|
4963
|
+
* @returns Value of property `sideContentWidthXL`
|
|
4964
|
+
*/
|
|
4965
|
+
getSideContentWidthXL(): CSSSize;
|
|
4892
4966
|
/**
|
|
4893
4967
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMainContent mainContent}.
|
|
4894
4968
|
* and returns its index if found or -1 otherwise.
|
|
@@ -5010,7 +5084,7 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5010
5084
|
/**
|
|
5011
5085
|
* Sets a new value for property {@link #getContainerQuery containerQuery}.
|
|
5012
5086
|
*
|
|
5013
|
-
* If set to
|
|
5087
|
+
* If set to `true`, then not the media Query (device screen size) but the size of the container, surrounding
|
|
5014
5088
|
* the control, defines the current range.
|
|
5015
5089
|
*
|
|
5016
5090
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -5127,6 +5201,66 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5127
5201
|
*/
|
|
5128
5202
|
bSuppressVisualUpdate: boolean
|
|
5129
5203
|
): this;
|
|
5204
|
+
/**
|
|
5205
|
+
* Sets a new value for property {@link #getSideContentWidthL sideContentWidthL}.
|
|
5206
|
+
*
|
|
5207
|
+
* Sets the width of the side content for L breakpoint (screen width <= 1440 px and > 1024px).
|
|
5208
|
+
*
|
|
5209
|
+
* Setting value to this property overrides the default width of the side content container in L breakpoint,
|
|
5210
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5211
|
+
*
|
|
5212
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5213
|
+
*
|
|
5214
|
+
* @since 1.121
|
|
5215
|
+
*
|
|
5216
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5217
|
+
*/
|
|
5218
|
+
setSideContentWidthL(
|
|
5219
|
+
/**
|
|
5220
|
+
* New value for property `sideContentWidthL`
|
|
5221
|
+
*/
|
|
5222
|
+
sSideContentWidthL?: CSSSize
|
|
5223
|
+
): this;
|
|
5224
|
+
/**
|
|
5225
|
+
* Sets a new value for property {@link #getSideContentWidthM sideContentWidthM}.
|
|
5226
|
+
*
|
|
5227
|
+
* Sets the width of the side content for M breakpoint (screen width <= 1024 px and > 720px).
|
|
5228
|
+
*
|
|
5229
|
+
* Setting value to this property overrides the default width of the side content container in M breakpoint,
|
|
5230
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5231
|
+
*
|
|
5232
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5233
|
+
*
|
|
5234
|
+
* @since 1.121
|
|
5235
|
+
*
|
|
5236
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5237
|
+
*/
|
|
5238
|
+
setSideContentWidthM(
|
|
5239
|
+
/**
|
|
5240
|
+
* New value for property `sideContentWidthM`
|
|
5241
|
+
*/
|
|
5242
|
+
sSideContentWidthM?: CSSSize
|
|
5243
|
+
): this;
|
|
5244
|
+
/**
|
|
5245
|
+
* Sets a new value for property {@link #getSideContentWidthXL sideContentWidthXL}.
|
|
5246
|
+
*
|
|
5247
|
+
* Sets the width of the side content for XL breakpoint (screen width > 1440 px).
|
|
5248
|
+
*
|
|
5249
|
+
* Setting value to this property overrides the default width of the side content container in XL breakpoint,
|
|
5250
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5251
|
+
*
|
|
5252
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5253
|
+
*
|
|
5254
|
+
* @since 1.121
|
|
5255
|
+
*
|
|
5256
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5257
|
+
*/
|
|
5258
|
+
setSideContentWidthXL(
|
|
5259
|
+
/**
|
|
5260
|
+
* New value for property `sideContentWidthXL`
|
|
5261
|
+
*/
|
|
5262
|
+
sSideContentWidthXL?: CSSSize
|
|
5263
|
+
): this;
|
|
5130
5264
|
/**
|
|
5131
5265
|
* Used for the toggle button functionality. When the control is on a phone screen size only, one control
|
|
5132
5266
|
* area is visible. This helper method is used to implement a button/switch for changing between the main
|
|
@@ -5168,15 +5302,47 @@ declare module "sap/ui/layout/DynamicSideContent" {
|
|
|
5168
5302
|
| PropertyBindingInfo
|
|
5169
5303
|
| `{${string}}`;
|
|
5170
5304
|
|
|
5305
|
+
/**
|
|
5306
|
+
* Sets the width of the side content for M breakpoint (screen width <= 1024 px and > 720px).
|
|
5307
|
+
*
|
|
5308
|
+
* Setting value to this property overrides the default width of the side content container in M breakpoint,
|
|
5309
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5310
|
+
*
|
|
5311
|
+
* @since 1.121
|
|
5312
|
+
*/
|
|
5313
|
+
sideContentWidthM?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
5314
|
+
|
|
5315
|
+
/**
|
|
5316
|
+
* Sets the width of the side content for L breakpoint (screen width <= 1440 px and > 1024px).
|
|
5317
|
+
*
|
|
5318
|
+
* Setting value to this property overrides the default width of the side content container in L breakpoint,
|
|
5319
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5320
|
+
*
|
|
5321
|
+
* @since 1.121
|
|
5322
|
+
*/
|
|
5323
|
+
sideContentWidthL?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
5324
|
+
|
|
5325
|
+
/**
|
|
5326
|
+
* Sets the width of the side content for XL breakpoint (screen width > 1440 px).
|
|
5327
|
+
*
|
|
5328
|
+
* Setting value to this property overrides the default width of the side content container in XL breakpoint,
|
|
5329
|
+
* except when an `equalSplit` property is set. The width of the main content container is calculated respectively.
|
|
5330
|
+
*
|
|
5331
|
+
* @since 1.121
|
|
5332
|
+
*/
|
|
5333
|
+
sideContentWidthXL?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
5334
|
+
|
|
5171
5335
|
/**
|
|
5172
5336
|
* Defines whether the control is in equal split mode. In this mode, the side and the main content take
|
|
5173
5337
|
* 50:50 percent of the container on all screen sizes except for phone, where the main and side contents
|
|
5174
5338
|
* are switching visibility using the toggle method.
|
|
5339
|
+
*
|
|
5340
|
+
* **Note:** setting this property overrides values set in `sideContentWidthM, sideContentWidthL, sideContentWidthXL`.
|
|
5175
5341
|
*/
|
|
5176
5342
|
equalSplit?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5177
5343
|
|
|
5178
5344
|
/**
|
|
5179
|
-
* If set to
|
|
5345
|
+
* If set to `true`, then not the media Query (device screen size) but the size of the container, surrounding
|
|
5180
5346
|
* the control, defines the current range.
|
|
5181
5347
|
*/
|
|
5182
5348
|
containerQuery?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
@@ -9445,7 +9611,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9445
9611
|
/**
|
|
9446
9612
|
* Gets current value of property {@link #getBreakpointL breakpointL}.
|
|
9447
9613
|
*
|
|
9448
|
-
* Breakpoint between
|
|
9614
|
+
* Breakpoint between medium size and large size.
|
|
9449
9615
|
*
|
|
9450
9616
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
9451
9617
|
*
|
|
@@ -9459,7 +9625,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9459
9625
|
/**
|
|
9460
9626
|
* Gets current value of property {@link #getBreakpointM breakpointM}.
|
|
9461
9627
|
*
|
|
9462
|
-
* Breakpoint between
|
|
9628
|
+
* Breakpoint between small size and medium size.
|
|
9463
9629
|
*
|
|
9464
9630
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
9465
9631
|
*
|
|
@@ -9473,7 +9639,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9473
9639
|
/**
|
|
9474
9640
|
* Gets current value of property {@link #getBreakpointXL breakpointXL}.
|
|
9475
9641
|
*
|
|
9476
|
-
* Breakpoint between
|
|
9642
|
+
* Breakpoint between large size and extra large size.
|
|
9477
9643
|
*
|
|
9478
9644
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
9479
9645
|
*
|
|
@@ -9595,6 +9761,8 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9595
9761
|
* might be misaligned, the labels might be rendered in the wrong mode, and the spacing between the single
|
|
9596
9762
|
* controls might be wrong. Also, controls that do not fit the mode might be rendered incorrectly.
|
|
9597
9763
|
*
|
|
9764
|
+
* Default value is `false`.
|
|
9765
|
+
*
|
|
9598
9766
|
*
|
|
9599
9767
|
* @returns Value of property `editable`
|
|
9600
9768
|
*/
|
|
@@ -9964,7 +10132,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9964
10132
|
/**
|
|
9965
10133
|
* Sets a new value for property {@link #getBreakpointL breakpointL}.
|
|
9966
10134
|
*
|
|
9967
|
-
* Breakpoint between
|
|
10135
|
+
* Breakpoint between medium size and large size.
|
|
9968
10136
|
*
|
|
9969
10137
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
9970
10138
|
*
|
|
@@ -9985,7 +10153,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
9985
10153
|
/**
|
|
9986
10154
|
* Sets a new value for property {@link #getBreakpointM breakpointM}.
|
|
9987
10155
|
*
|
|
9988
|
-
* Breakpoint between
|
|
10156
|
+
* Breakpoint between small size and medium size.
|
|
9989
10157
|
*
|
|
9990
10158
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
9991
10159
|
*
|
|
@@ -10006,7 +10174,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10006
10174
|
/**
|
|
10007
10175
|
* Sets a new value for property {@link #getBreakpointXL breakpointXL}.
|
|
10008
10176
|
*
|
|
10009
|
-
* Breakpoint between
|
|
10177
|
+
* Breakpoint between large size and extra large size.
|
|
10010
10178
|
*
|
|
10011
10179
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
10012
10180
|
*
|
|
@@ -10109,6 +10277,8 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10109
10277
|
*
|
|
10110
10278
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10111
10279
|
*
|
|
10280
|
+
* Default value is `false`.
|
|
10281
|
+
*
|
|
10112
10282
|
*
|
|
10113
10283
|
* @returns Reference to `this` in order to allow method chaining
|
|
10114
10284
|
*/
|
|
@@ -10684,7 +10854,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10684
10854
|
singleContainerFullSize?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
10685
10855
|
|
|
10686
10856
|
/**
|
|
10687
|
-
* Breakpoint between
|
|
10857
|
+
* Breakpoint between large size and extra large size.
|
|
10688
10858
|
*
|
|
10689
10859
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
10690
10860
|
*
|
|
@@ -10693,7 +10863,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10693
10863
|
breakpointXL?: int | PropertyBindingInfo | `{${string}}`;
|
|
10694
10864
|
|
|
10695
10865
|
/**
|
|
10696
|
-
* Breakpoint between
|
|
10866
|
+
* Breakpoint between medium size and large size.
|
|
10697
10867
|
*
|
|
10698
10868
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
10699
10869
|
*
|
|
@@ -10702,7 +10872,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10702
10872
|
breakpointL?: int | PropertyBindingInfo | `{${string}}`;
|
|
10703
10873
|
|
|
10704
10874
|
/**
|
|
10705
|
-
* Breakpoint between
|
|
10875
|
+
* Breakpoint between small size and medium size.
|
|
10706
10876
|
*
|
|
10707
10877
|
* **Note:** This property is only used if a `ResponsiveGridLayout` is used as a layout.
|
|
10708
10878
|
*
|
|
@@ -12714,7 +12884,6 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12714
12884
|
import { Orientation } from "sap/ui/core/library";
|
|
12715
12885
|
|
|
12716
12886
|
import {
|
|
12717
|
-
default as ManagedObject,
|
|
12718
12887
|
PropertyBindingInfo,
|
|
12719
12888
|
AggregationBindingInfo,
|
|
12720
12889
|
} from "sap/ui/base/ManagedObject";
|
|
@@ -12926,13 +13095,23 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12926
13095
|
oPane: UI5Element
|
|
12927
13096
|
): int;
|
|
12928
13097
|
/**
|
|
12929
|
-
*
|
|
13098
|
+
* Inserts a pane into the aggregation {@link #getPanes panes}.
|
|
13099
|
+
*
|
|
13100
|
+
*
|
|
13101
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
12930
13102
|
*/
|
|
12931
13103
|
insertPane(
|
|
12932
|
-
|
|
12933
|
-
|
|
12934
|
-
|
|
12935
|
-
|
|
13104
|
+
/**
|
|
13105
|
+
* The pane to insert; if empty, nothing is inserted
|
|
13106
|
+
*/
|
|
13107
|
+
oPane: UI5Element,
|
|
13108
|
+
/**
|
|
13109
|
+
* The `0`-based index the pane should be inserted at; for a negative value of `iIndex`, the pane is inserted
|
|
13110
|
+
* at position 0; for a value greater than the current size of the aggregation, the pane is inserted at
|
|
13111
|
+
* the last position
|
|
13112
|
+
*/
|
|
13113
|
+
iIndex: int
|
|
13114
|
+
): this;
|
|
12936
13115
|
/**
|
|
12937
13116
|
* Removes all the controls from the aggregation {@link #getPanes panes}.
|
|
12938
13117
|
*
|
|
@@ -12943,9 +13122,17 @@ declare module "sap/ui/layout/PaneContainer" {
|
|
|
12943
13122
|
*/
|
|
12944
13123
|
removeAllPanes(): UI5Element[];
|
|
12945
13124
|
/**
|
|
12946
|
-
*
|
|
13125
|
+
* Removes a pane from the aggregation {@link #getPanes panes}.
|
|
13126
|
+
*
|
|
13127
|
+
*
|
|
13128
|
+
* @returns The removed pane or `null`
|
|
12947
13129
|
*/
|
|
12948
|
-
removePane(
|
|
13130
|
+
removePane(
|
|
13131
|
+
/**
|
|
13132
|
+
* The pane to remove or its index or id
|
|
13133
|
+
*/
|
|
13134
|
+
vPane: int | string | UI5Element
|
|
13135
|
+
): UI5Element | null;
|
|
12949
13136
|
/**
|
|
12950
13137
|
* Setter for property layoutData.
|
|
12951
13138
|
*
|
|
@@ -13211,7 +13398,7 @@ declare module "sap/ui/layout/ResponsiveFlowLayout" {
|
|
|
13211
13398
|
/**
|
|
13212
13399
|
* The content that should be removed from the layout
|
|
13213
13400
|
*/
|
|
13214
|
-
oContent: int |
|
|
13401
|
+
oContent: int | ID | Control
|
|
13215
13402
|
): void;
|
|
13216
13403
|
/**
|
|
13217
13404
|
* Sets a new value for property {@link #getResponsive responsive}.
|
|
@@ -13642,7 +13829,7 @@ declare module "sap/ui/layout/ResponsiveSplitter" {
|
|
|
13642
13829
|
* ID of the element which is the current target of the association {@link #getDefaultPane defaultPane},
|
|
13643
13830
|
* or `null`.
|
|
13644
13831
|
*/
|
|
13645
|
-
getDefaultPane(): ID;
|
|
13832
|
+
getDefaultPane(): ID | null;
|
|
13646
13833
|
/**
|
|
13647
13834
|
* Gets current value of property {@link #getHeight height}.
|
|
13648
13835
|
*
|