@openui5/ts-types 1.114.0 → 1.115.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.
@@ -1,16 +1,16 @@
1
- // For Library Version: 1.114.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
5
5
  /**
6
- * @SINCE 1.15
6
+ * @since 1.15
7
7
  *
8
8
  * SAPUI5 library with layout controls.
9
9
  */
10
10
  namespace layout {
11
11
  namespace cssgrid {
12
12
  /**
13
- * @SINCE 1.60.0
13
+ * @since 1.60.0
14
14
  *
15
15
  * Defines the functions that need to be implemented by a Control which wants to have display:grid behavior
16
16
  * via sap.ui.layout.cssgrid.GridLayoutDelegate
@@ -19,7 +19,7 @@ declare namespace sap {
19
19
  __implements__sap_ui_layout_cssgrid_IGridConfigurable: boolean;
20
20
 
21
21
  /**
22
- * @SINCE 1.60.0
22
+ * @since 1.60.0
23
23
  *
24
24
  * The function is used by GridLayoutDelegate to determine on which HTML Elements the display:grid styles
25
25
  * should be applied
@@ -28,7 +28,7 @@ declare namespace sap {
28
28
  */
29
29
  getGridDomRefs(): sap.ui.core.Control[] | HTMLElement[];
30
30
  /**
31
- * @SINCE 1.60.0
31
+ * @since 1.60.0
32
32
  *
33
33
  * The function is used by GridLayoutDelegate to get the grid layout (display:grid styles) to apply
34
34
  *
@@ -38,7 +38,7 @@ declare namespace sap {
38
38
  }
39
39
 
40
40
  /**
41
- * @SINCE 1.88.0
41
+ * @since 1.88.0
42
42
  *
43
43
  * LayoutData for grid items
44
44
  */
@@ -56,8 +56,7 @@ declare namespace sap {
56
56
  | `{${string}}`;
57
57
 
58
58
  /**
59
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
60
- * MDN web docs: grid-template-columns}
59
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
61
60
  */
62
61
  gridTemplateColumns?:
63
62
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -65,8 +64,7 @@ declare namespace sap {
65
64
  | `{${string}}`;
66
65
 
67
66
  /**
68
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
69
- * MDN web docs: grid-template-rows}
67
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
70
68
  */
71
69
  gridTemplateRows?:
72
70
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -74,8 +72,7 @@ declare namespace sap {
74
72
  | `{${string}}`;
75
73
 
76
74
  /**
77
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
78
- * MDN web docs: grid-row-gap}
75
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
79
76
  */
80
77
  gridRowGap?:
81
78
  | sap.ui.core.CSSSize
@@ -83,8 +80,7 @@ declare namespace sap {
83
80
  | `{${string}}`;
84
81
 
85
82
  /**
86
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
87
- * MDN web docs: grid-column-gap}
83
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
88
84
  */
89
85
  gridColumnGap?:
90
86
  | sap.ui.core.CSSSize
@@ -92,9 +88,9 @@ declare namespace sap {
92
88
  | `{${string}}`;
93
89
 
94
90
  /**
95
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
96
- * MDN web docs: grid-gap} It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the
97
- * gridGap value will have less priority and will be overwritten.
91
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
92
+ * It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
93
+ * less priority and will be overwritten.
98
94
  */
99
95
  gridGap?:
100
96
  | sap.ui.layout.cssgrid.CSSGridGapShortHand
@@ -102,8 +98,7 @@ declare namespace sap {
102
98
  | `{${string}}`;
103
99
 
104
100
  /**
105
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
106
- * MDN web docs: grid-auto-rows}
101
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
107
102
  */
108
103
  gridAutoRows?:
109
104
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -111,8 +106,7 @@ declare namespace sap {
111
106
  | `{${string}}`;
112
107
 
113
108
  /**
114
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
115
- * MDN web docs: grid-auto-columns}
109
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
116
110
  */
117
111
  gridAutoColumns?:
118
112
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -120,8 +114,7 @@ declare namespace sap {
120
114
  | `{${string}}`;
121
115
 
122
116
  /**
123
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
124
- * MDN web docs: grid-auto-flow}
117
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
125
118
  */
126
119
  gridAutoFlow?:
127
120
  | sap.ui.layout.cssgrid.CSSGridAutoFlow
@@ -146,8 +139,7 @@ declare namespace sap {
146
139
  interface $GridBasicLayoutSettings
147
140
  extends sap.ui.layout.cssgrid.$GridLayoutBaseSettings {
148
141
  /**
149
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
150
- * MDN web docs: grid-template-columns}
142
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
151
143
  */
152
144
  gridTemplateColumns?:
153
145
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -155,8 +147,7 @@ declare namespace sap {
155
147
  | `{${string}}`;
156
148
 
157
149
  /**
158
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
159
- * MDN web docs: grid-template-rows}
150
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
160
151
  */
161
152
  gridTemplateRows?:
162
153
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -164,8 +155,7 @@ declare namespace sap {
164
155
  | `{${string}}`;
165
156
 
166
157
  /**
167
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
168
- * MDN web docs: grid-row-gap}
158
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
169
159
  */
170
160
  gridRowGap?:
171
161
  | sap.ui.core.CSSSize
@@ -173,8 +163,7 @@ declare namespace sap {
173
163
  | `{${string}}`;
174
164
 
175
165
  /**
176
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
177
- * MDN web docs: grid-column-gap}
166
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
178
167
  */
179
168
  gridColumnGap?:
180
169
  | sap.ui.core.CSSSize
@@ -182,8 +171,7 @@ declare namespace sap {
182
171
  | `{${string}}`;
183
172
 
184
173
  /**
185
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
186
- * MDN web docs: grid-gap}
174
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
187
175
  */
188
176
  gridGap?:
189
177
  | sap.ui.layout.cssgrid.CSSGridGapShortHand
@@ -191,8 +179,7 @@ declare namespace sap {
191
179
  | `{${string}}`;
192
180
 
193
181
  /**
194
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
195
- * MDN web docs: grid-auto-rows}
182
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
196
183
  */
197
184
  gridAutoRows?:
198
185
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -200,8 +187,7 @@ declare namespace sap {
200
187
  | `{${string}}`;
201
188
 
202
189
  /**
203
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
204
- * MDN web docs: grid-auto-columns}
190
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
205
191
  */
206
192
  gridAutoColumns?:
207
193
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -209,8 +195,7 @@ declare namespace sap {
209
195
  | `{${string}}`;
210
196
 
211
197
  /**
212
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
213
- * MDN web docs: grid-auto-flow}
198
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
214
199
  */
215
200
  gridAutoFlow?:
216
201
  | sap.ui.layout.cssgrid.CSSGridAutoFlow
@@ -250,8 +235,7 @@ declare namespace sap {
250
235
  interface $GridItemLayoutDataSettings
251
236
  extends sap.ui.core.$LayoutDataSettings {
252
237
  /**
253
- * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
254
- * MDN web docs: grid-column-start}
238
+ * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
255
239
  */
256
240
  gridColumnStart?:
257
241
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -259,8 +243,7 @@ declare namespace sap {
259
243
  | `{${string}}`;
260
244
 
261
245
  /**
262
- * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
263
- * MDN web docs: grid-column-end}
246
+ * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
264
247
  */
265
248
  gridColumnEnd?:
266
249
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -268,8 +251,7 @@ declare namespace sap {
268
251
  | `{${string}}`;
269
252
 
270
253
  /**
271
- * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
272
- * MDN web docs: grid-row-start}
254
+ * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
273
255
  */
274
256
  gridRowStart?:
275
257
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -277,8 +259,7 @@ declare namespace sap {
277
259
  | `{${string}}`;
278
260
 
279
261
  /**
280
- * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
281
- * MDN web docs: grid-row-end}
262
+ * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
282
263
  */
283
264
  gridRowEnd?:
284
265
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -286,8 +267,7 @@ declare namespace sap {
286
267
  | `{${string}}`;
287
268
 
288
269
  /**
289
- * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
290
- * MDN web docs: grid-column}
270
+ * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
291
271
  */
292
272
  gridColumn?:
293
273
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -295,8 +275,7 @@ declare namespace sap {
295
275
  | `{${string}}`;
296
276
 
297
277
  /**
298
- * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
299
- * MDN web docs: grid-row}
278
+ * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
300
279
  */
301
280
  gridRow?:
302
281
  | sap.ui.layout.cssgrid.CSSGridLine
@@ -346,14 +325,15 @@ declare namespace sap {
346
325
  /**
347
326
  * Fired when the currently active GridSettings changes
348
327
  */
349
- layoutChange?: (oEvent: sap.ui.base.Event) => void;
328
+ layoutChange?: (
329
+ oEvent: sap.ui.base.Event<sap.ui.layout.cssgrid.GridResponsiveLayout$LayoutChangeEventParameters>
330
+ ) => void;
350
331
  }
351
332
 
352
333
  interface $GridSettingsSettings
353
334
  extends sap.ui.base.$ManagedObjectSettings {
354
335
  /**
355
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
356
- * MDN web docs: grid-template-columns}
336
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
357
337
  */
358
338
  gridTemplateColumns?:
359
339
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -361,8 +341,7 @@ declare namespace sap {
361
341
  | `{${string}}`;
362
342
 
363
343
  /**
364
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
365
- * MDN web docs: grid-template-rows}
344
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
366
345
  */
367
346
  gridTemplateRows?:
368
347
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -370,8 +349,7 @@ declare namespace sap {
370
349
  | `{${string}}`;
371
350
 
372
351
  /**
373
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
374
- * MDN web docs: grid-row-gap}
352
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
375
353
  */
376
354
  gridRowGap?:
377
355
  | sap.ui.core.CSSSize
@@ -379,8 +357,7 @@ declare namespace sap {
379
357
  | `{${string}}`;
380
358
 
381
359
  /**
382
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
383
- * MDN web docs: grid-column-gap}
360
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
384
361
  */
385
362
  gridColumnGap?:
386
363
  | sap.ui.core.CSSSize
@@ -388,8 +365,7 @@ declare namespace sap {
388
365
  | `{${string}}`;
389
366
 
390
367
  /**
391
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
392
- * MDN web docs: grid-gap}
368
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
393
369
  */
394
370
  gridGap?:
395
371
  | sap.ui.layout.cssgrid.CSSGridGapShortHand
@@ -397,8 +373,7 @@ declare namespace sap {
397
373
  | `{${string}}`;
398
374
 
399
375
  /**
400
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
401
- * MDN web docs: grid-auto-rows}
376
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
402
377
  */
403
378
  gridAutoRows?:
404
379
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -406,8 +381,7 @@ declare namespace sap {
406
381
  | `{${string}}`;
407
382
 
408
383
  /**
409
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
410
- * MDN web docs: grid-auto-columns}
384
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
411
385
  */
412
386
  gridAutoColumns?:
413
387
  | sap.ui.layout.cssgrid.CSSGridTrack
@@ -415,8 +389,7 @@ declare namespace sap {
415
389
  | `{${string}}`;
416
390
 
417
391
  /**
418
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
419
- * MDN web docs: grid-auto-flow}
392
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
420
393
  */
421
394
  gridAutoFlow?:
422
395
  | sap.ui.layout.cssgrid.CSSGridAutoFlow
@@ -448,11 +421,27 @@ declare namespace sap {
448
421
  /**
449
422
  * Fired when the currently active layout changes
450
423
  */
451
- layoutChange?: (oEvent: sap.ui.base.Event) => void;
424
+ layoutChange?: (
425
+ oEvent: sap.ui.base.Event<sap.ui.layout.cssgrid.ResponsiveColumnLayout$LayoutChangeEventParameters>
426
+ ) => void;
427
+ }
428
+
429
+ interface GridResponsiveLayout$LayoutChangeEventParameters {
430
+ /**
431
+ * The name of the newly active layout aggregation
432
+ */
433
+ layout?: string;
434
+ }
435
+
436
+ interface ResponsiveColumnLayout$LayoutChangeEventParameters {
437
+ /**
438
+ * The name of the newly active layout - "S", "M", "ML", "L", "XL", "XXL" or "XXXL".
439
+ */
440
+ layout?: string;
452
441
  }
453
442
 
454
443
  /**
455
- * @SINCE 1.60
444
+ * @since 1.60
456
445
  *
457
446
  * A layout control, used to create full page layouts or user interface elements.
458
447
  *
@@ -480,10 +469,10 @@ declare namespace sap {
480
469
  * - Grid lines - The lines around and between the rows and columns
481
470
  * - Grid tracks - The space between any two lines in the grid
482
471
  * - "fr" Unit - A special grid unit (short from "fraction") which represents a fraction of the available
483
- * space in the grid
472
+ * space in the grid
484
473
  * - Implicit and Explicit grid - Explicit grid consists of rows and columns defined with `gridTemplateColumns`
485
- * and `gridTemplateRows`. The grid also creates rows and columns on its own when needed. Their dimensions
486
- * are defined with `gridAutoColumns` and `gridAutoRows`.
474
+ * and `gridTemplateRows`. The grid also creates rows and columns on its own when needed. Their dimensions
475
+ * are defined with `gridAutoColumns` and `gridAutoRows`.
487
476
  *
488
477
  * Structure: The `CSSGrid` has the following elements:
489
478
  * - `items` - The items of the `CSSGrid`
@@ -492,25 +481,24 @@ declare namespace sap {
492
481
  * Usage:
493
482
  *
494
483
  * For general cases, use the `CSSGrid` properties to configure how the layout should look. For Box case
495
- * (equal sized items), use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout}
484
+ * (equal sized items), use `customLayout` aggregation with {@link sap.ui.layout.cssgrid.GridBoxLayout GridBoxLayout }
496
485
  * For Grids which need different configurations based on available width, use `customLayout` aggregation
497
486
  * with {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout} To set a specific position
498
- * to an item or define its dimensions in the grid, pass `layoutData` of type {@link sap.ui.layout.cssgrid.GridItemLayoutData
499
- * GridItemLayoutData}
487
+ * to an item or define its dimensions in the grid, pass `layoutData` of type {@link sap.ui.layout.cssgrid.GridItemLayoutData GridItemLayoutData}
500
488
  *
501
489
  * When to use
502
490
  * - If a two-dimensional layout configuration is needed (both columns and rows are defined)
503
491
  *
504
492
  * When not to use
505
- * - If the layout needs to be defined only by one dimension (either column or row, not both). Use {@link
506
- * sap.m.FlexBox FlexBox} instead.
493
+ * - If the layout needs to be defined only by one dimension (either column or row, not both). Use {@link sap.m.FlexBox FlexBox }
494
+ * instead.
507
495
  *
508
496
  * Responsive behavior:
509
497
  * - Fully configurable by the developer. It is possible to create a "breathing" columns layout which
510
- * means columns width will grow/shrink depending on grid size.
511
- * - It is possible to pass a {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout}
512
- * to the `customLayout` aggregation of the `CSSGrid` and configure how it will look in different breakpoints
513
- * (S, M, L, XL).
498
+ * means columns width will grow/shrink depending on grid size.
499
+ * - It is possible to pass a {@link sap.ui.layout.cssgrid.GridResponsiveLayout GridResponsiveLayout }
500
+ * to the `customLayout` aggregation of the `CSSGrid` and configure how it will look in different breakpoints
501
+ * (S, M, L, XL).
514
502
  *
515
503
  * Out of current scope::
516
504
  * - Alignment and ordering
@@ -527,7 +515,7 @@ declare namespace sap {
527
515
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
528
516
  * of the syntax of the settings object.
529
517
  * See:
530
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
518
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
531
519
  * {@link fiori:https://experience.sap.com/fiori-design-web/flexible-grid/ Flexible Grid}
532
520
  * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
533
521
  */
@@ -544,7 +532,7 @@ declare namespace sap {
544
532
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
545
533
  * of the syntax of the settings object.
546
534
  * See:
547
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
535
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
548
536
  * {@link fiori:https://experience.sap.com/fiori-design-web/flexible-grid/ Flexible Grid}
549
537
  * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout MDN web docs: CSS Grid Layout}
550
538
  */
@@ -620,8 +608,7 @@ declare namespace sap {
620
608
  /**
621
609
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
622
610
  *
623
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
624
- * MDN web docs: grid-auto-columns}
611
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
625
612
  *
626
613
  * Default value is `empty string`.
627
614
  *
@@ -631,8 +618,7 @@ declare namespace sap {
631
618
  /**
632
619
  * Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
633
620
  *
634
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
635
- * MDN web docs: grid-auto-flow}
621
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
636
622
  *
637
623
  * Default value is `"Row"`.
638
624
  *
@@ -642,8 +628,7 @@ declare namespace sap {
642
628
  /**
643
629
  * Gets current value of property {@link #getGridAutoRows gridAutoRows}.
644
630
  *
645
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
646
- * MDN web docs: grid-auto-rows}
631
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
647
632
  *
648
633
  * Default value is `empty string`.
649
634
  *
@@ -653,8 +638,7 @@ declare namespace sap {
653
638
  /**
654
639
  * Gets current value of property {@link #getGridColumnGap gridColumnGap}.
655
640
  *
656
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
657
- * MDN web docs: grid-column-gap}
641
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
658
642
  *
659
643
  * Default value is `empty string`.
660
644
  *
@@ -662,7 +646,7 @@ declare namespace sap {
662
646
  */
663
647
  getGridColumnGap(): sap.ui.core.CSSSize;
664
648
  /**
665
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
649
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
666
650
  *
667
651
  * Implements IGridConfigurable interface
668
652
  *
@@ -672,9 +656,9 @@ declare namespace sap {
672
656
  /**
673
657
  * Gets current value of property {@link #getGridGap gridGap}.
674
658
  *
675
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
676
- * MDN web docs: grid-gap} It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the
677
- * gridGap value will have less priority and will be overwritten.
659
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
660
+ * It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
661
+ * less priority and will be overwritten.
678
662
  *
679
663
  * Default value is `empty string`.
680
664
  *
@@ -682,7 +666,7 @@ declare namespace sap {
682
666
  */
683
667
  getGridGap(): sap.ui.layout.cssgrid.CSSGridGapShortHand;
684
668
  /**
685
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
669
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
686
670
  *
687
671
  * Returns the layout configuration of the `CSSGrid`.
688
672
  *
@@ -692,8 +676,7 @@ declare namespace sap {
692
676
  /**
693
677
  * Gets current value of property {@link #getGridRowGap gridRowGap}.
694
678
  *
695
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
696
- * MDN web docs: grid-row-gap}
679
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
697
680
  *
698
681
  * Default value is `empty string`.
699
682
  *
@@ -703,8 +686,7 @@ declare namespace sap {
703
686
  /**
704
687
  * Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
705
688
  *
706
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
707
- * MDN web docs: grid-template-columns}
689
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
708
690
  *
709
691
  * Default value is `empty string`.
710
692
  *
@@ -714,8 +696,7 @@ declare namespace sap {
714
696
  /**
715
697
  * Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
716
698
  *
717
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
718
- * MDN web docs: grid-template-rows}
699
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
719
700
  *
720
701
  * Default value is `empty string`.
721
702
  *
@@ -800,8 +781,7 @@ declare namespace sap {
800
781
  /**
801
782
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
802
783
  *
803
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
804
- * MDN web docs: grid-auto-columns}
784
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
805
785
  *
806
786
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
807
787
  *
@@ -818,8 +798,7 @@ declare namespace sap {
818
798
  /**
819
799
  * Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
820
800
  *
821
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
822
- * MDN web docs: grid-auto-flow}
801
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
823
802
  *
824
803
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
825
804
  *
@@ -836,8 +815,7 @@ declare namespace sap {
836
815
  /**
837
816
  * Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
838
817
  *
839
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
840
- * MDN web docs: grid-auto-rows}
818
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
841
819
  *
842
820
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
843
821
  *
@@ -854,8 +832,7 @@ declare namespace sap {
854
832
  /**
855
833
  * Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
856
834
  *
857
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
858
- * MDN web docs: grid-column-gap}
835
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
859
836
  *
860
837
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
861
838
  *
@@ -872,9 +849,9 @@ declare namespace sap {
872
849
  /**
873
850
  * Sets a new value for property {@link #getGridGap gridGap}.
874
851
  *
875
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
876
- * MDN web docs: grid-gap} It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the
877
- * gridGap value will have less priority and will be overwritten.
852
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap }
853
+ * It is a shorthand for gridRowGap and gridColumnGap. If some of them is set, the gridGap value will have
854
+ * less priority and will be overwritten.
878
855
  *
879
856
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
880
857
  *
@@ -891,8 +868,7 @@ declare namespace sap {
891
868
  /**
892
869
  * Sets a new value for property {@link #getGridRowGap gridRowGap}.
893
870
  *
894
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
895
- * MDN web docs: grid-row-gap}
871
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
896
872
  *
897
873
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
898
874
  *
@@ -909,8 +885,7 @@ declare namespace sap {
909
885
  /**
910
886
  * Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
911
887
  *
912
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
913
- * MDN web docs: grid-template-columns}
888
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
914
889
  *
915
890
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
916
891
  *
@@ -927,8 +902,7 @@ declare namespace sap {
927
902
  /**
928
903
  * Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
929
904
  *
930
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
931
- * MDN web docs: grid-template-rows}
905
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
932
906
  *
933
907
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
934
908
  *
@@ -961,7 +935,7 @@ declare namespace sap {
961
935
  ): this;
962
936
  }
963
937
  /**
964
- * @SINCE 1.60
938
+ * @since 1.60
965
939
  *
966
940
  * Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
967
941
  */
@@ -1032,8 +1006,7 @@ declare namespace sap {
1032
1006
  /**
1033
1007
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
1034
1008
  *
1035
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
1036
- * MDN web docs: grid-auto-columns}
1009
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
1037
1010
  *
1038
1011
  * Default value is `empty string`.
1039
1012
  *
@@ -1043,8 +1016,7 @@ declare namespace sap {
1043
1016
  /**
1044
1017
  * Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
1045
1018
  *
1046
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
1047
- * MDN web docs: grid-auto-flow}
1019
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
1048
1020
  *
1049
1021
  * Default value is `"Row"`.
1050
1022
  *
@@ -1054,8 +1026,7 @@ declare namespace sap {
1054
1026
  /**
1055
1027
  * Gets current value of property {@link #getGridAutoRows gridAutoRows}.
1056
1028
  *
1057
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
1058
- * MDN web docs: grid-auto-rows}
1029
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
1059
1030
  *
1060
1031
  * Default value is `empty string`.
1061
1032
  *
@@ -1065,8 +1036,7 @@ declare namespace sap {
1065
1036
  /**
1066
1037
  * Gets current value of property {@link #getGridColumnGap gridColumnGap}.
1067
1038
  *
1068
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
1069
- * MDN web docs: grid-column-gap}
1039
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
1070
1040
  *
1071
1041
  * Default value is `empty string`.
1072
1042
  *
@@ -1076,8 +1046,7 @@ declare namespace sap {
1076
1046
  /**
1077
1047
  * Gets current value of property {@link #getGridGap gridGap}.
1078
1048
  *
1079
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
1080
- * MDN web docs: grid-gap}
1049
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
1081
1050
  *
1082
1051
  * Default value is `empty string`.
1083
1052
  *
@@ -1087,8 +1056,7 @@ declare namespace sap {
1087
1056
  /**
1088
1057
  * Gets current value of property {@link #getGridRowGap gridRowGap}.
1089
1058
  *
1090
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
1091
- * MDN web docs: grid-row-gap}
1059
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
1092
1060
  *
1093
1061
  * Default value is `empty string`.
1094
1062
  *
@@ -1098,8 +1066,7 @@ declare namespace sap {
1098
1066
  /**
1099
1067
  * Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
1100
1068
  *
1101
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
1102
- * MDN web docs: grid-template-columns}
1069
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
1103
1070
  *
1104
1071
  * Default value is `empty string`.
1105
1072
  *
@@ -1109,8 +1076,7 @@ declare namespace sap {
1109
1076
  /**
1110
1077
  * Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
1111
1078
  *
1112
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
1113
- * MDN web docs: grid-template-rows}
1079
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
1114
1080
  *
1115
1081
  * Default value is `empty string`.
1116
1082
  *
@@ -1120,8 +1086,7 @@ declare namespace sap {
1120
1086
  /**
1121
1087
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
1122
1088
  *
1123
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
1124
- * MDN web docs: grid-auto-columns}
1089
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
1125
1090
  *
1126
1091
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1127
1092
  *
@@ -1138,8 +1103,7 @@ declare namespace sap {
1138
1103
  /**
1139
1104
  * Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
1140
1105
  *
1141
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
1142
- * MDN web docs: grid-auto-flow}
1106
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
1143
1107
  *
1144
1108
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1145
1109
  *
@@ -1156,8 +1120,7 @@ declare namespace sap {
1156
1120
  /**
1157
1121
  * Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
1158
1122
  *
1159
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
1160
- * MDN web docs: grid-auto-rows}
1123
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
1161
1124
  *
1162
1125
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1163
1126
  *
@@ -1174,8 +1137,7 @@ declare namespace sap {
1174
1137
  /**
1175
1138
  * Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
1176
1139
  *
1177
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
1178
- * MDN web docs: grid-column-gap}
1140
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
1179
1141
  *
1180
1142
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1181
1143
  *
@@ -1192,8 +1154,7 @@ declare namespace sap {
1192
1154
  /**
1193
1155
  * Sets a new value for property {@link #getGridGap gridGap}.
1194
1156
  *
1195
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
1196
- * MDN web docs: grid-gap}
1157
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
1197
1158
  *
1198
1159
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1199
1160
  *
@@ -1210,8 +1171,7 @@ declare namespace sap {
1210
1171
  /**
1211
1172
  * Sets a new value for property {@link #getGridRowGap gridRowGap}.
1212
1173
  *
1213
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
1214
- * MDN web docs: grid-row-gap}
1174
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
1215
1175
  *
1216
1176
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1217
1177
  *
@@ -1228,8 +1188,7 @@ declare namespace sap {
1228
1188
  /**
1229
1189
  * Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
1230
1190
  *
1231
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
1232
- * MDN web docs: grid-template-columns}
1191
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
1233
1192
  *
1234
1193
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1235
1194
  *
@@ -1246,8 +1205,7 @@ declare namespace sap {
1246
1205
  /**
1247
1206
  * Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
1248
1207
  *
1249
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
1250
- * MDN web docs: grid-template-rows}
1208
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
1251
1209
  *
1252
1210
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1253
1211
  *
@@ -1263,7 +1221,7 @@ declare namespace sap {
1263
1221
  ): this;
1264
1222
  }
1265
1223
  /**
1266
- * @SINCE 1.60
1224
+ * @since 1.60
1267
1225
  *
1268
1226
  * Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
1269
1227
  */
@@ -1329,7 +1287,7 @@ declare namespace sap {
1329
1287
  */
1330
1288
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1331
1289
  /**
1332
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1290
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1333
1291
  *
1334
1292
  * Returns a gridTemplateColumns value based on boxWidth and boxMinWidth properties
1335
1293
  *
@@ -1500,8 +1458,7 @@ declare namespace sap {
1500
1458
  /**
1501
1459
  * Gets current value of property {@link #getGridColumn gridColumn}.
1502
1460
  *
1503
- * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
1504
- * MDN web docs: grid-column}
1461
+ * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
1505
1462
  *
1506
1463
  * Default value is `empty string`.
1507
1464
  *
@@ -1511,8 +1468,7 @@ declare namespace sap {
1511
1468
  /**
1512
1469
  * Gets current value of property {@link #getGridColumnEnd gridColumnEnd}.
1513
1470
  *
1514
- * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
1515
- * MDN web docs: grid-column-end}
1471
+ * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
1516
1472
  *
1517
1473
  * Default value is `empty string`.
1518
1474
  *
@@ -1522,8 +1478,7 @@ declare namespace sap {
1522
1478
  /**
1523
1479
  * Gets current value of property {@link #getGridColumnStart gridColumnStart}.
1524
1480
  *
1525
- * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
1526
- * MDN web docs: grid-column-start}
1481
+ * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
1527
1482
  *
1528
1483
  * Default value is `empty string`.
1529
1484
  *
@@ -1533,8 +1488,7 @@ declare namespace sap {
1533
1488
  /**
1534
1489
  * Gets current value of property {@link #getGridRow gridRow}.
1535
1490
  *
1536
- * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
1537
- * MDN web docs: grid-row}
1491
+ * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
1538
1492
  *
1539
1493
  * Default value is `empty string`.
1540
1494
  *
@@ -1544,8 +1498,7 @@ declare namespace sap {
1544
1498
  /**
1545
1499
  * Gets current value of property {@link #getGridRowEnd gridRowEnd}.
1546
1500
  *
1547
- * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
1548
- * MDN web docs: grid-row-end}
1501
+ * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
1549
1502
  *
1550
1503
  * Default value is `empty string`.
1551
1504
  *
@@ -1555,8 +1508,7 @@ declare namespace sap {
1555
1508
  /**
1556
1509
  * Gets current value of property {@link #getGridRowStart gridRowStart}.
1557
1510
  *
1558
- * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
1559
- * MDN web docs: grid-row-start}
1511
+ * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
1560
1512
  *
1561
1513
  * Default value is `empty string`.
1562
1514
  *
@@ -1566,8 +1518,7 @@ declare namespace sap {
1566
1518
  /**
1567
1519
  * Sets a new value for property {@link #getGridColumn gridColumn}.
1568
1520
  *
1569
- * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
1570
- * MDN web docs: grid-column}
1521
+ * Sets the value for the CSS display:grid item property grid-column {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column MDN web docs: grid-column}
1571
1522
  *
1572
1523
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1573
1524
  *
@@ -1584,8 +1535,7 @@ declare namespace sap {
1584
1535
  /**
1585
1536
  * Sets a new value for property {@link #getGridColumnEnd gridColumnEnd}.
1586
1537
  *
1587
- * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end
1588
- * MDN web docs: grid-column-end}
1538
+ * Sets the value for the CSS display:grid item property grid-column-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-end MDN web docs: grid-column-end}
1589
1539
  *
1590
1540
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1591
1541
  *
@@ -1602,8 +1552,7 @@ declare namespace sap {
1602
1552
  /**
1603
1553
  * Sets a new value for property {@link #getGridColumnStart gridColumnStart}.
1604
1554
  *
1605
- * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start
1606
- * MDN web docs: grid-column-start}
1555
+ * Sets the value for the CSS display:grid item property grid-column-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-start MDN web docs: grid-column-start}
1607
1556
  *
1608
1557
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1609
1558
  *
@@ -1620,8 +1569,7 @@ declare namespace sap {
1620
1569
  /**
1621
1570
  * Sets a new value for property {@link #getGridRow gridRow}.
1622
1571
  *
1623
- * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
1624
- * MDN web docs: grid-row}
1572
+ * Sets the value for the CSS display:grid item property grid-row {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row MDN web docs: grid-row}
1625
1573
  *
1626
1574
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1627
1575
  *
@@ -1638,8 +1586,7 @@ declare namespace sap {
1638
1586
  /**
1639
1587
  * Sets a new value for property {@link #getGridRowEnd gridRowEnd}.
1640
1588
  *
1641
- * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end
1642
- * MDN web docs: grid-row-end}
1589
+ * Sets the value for the CSS display:grid item property grid-row-end {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-end MDN web docs: grid-row-end}
1643
1590
  *
1644
1591
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1645
1592
  *
@@ -1656,8 +1603,7 @@ declare namespace sap {
1656
1603
  /**
1657
1604
  * Sets a new value for property {@link #getGridRowStart gridRowStart}.
1658
1605
  *
1659
- * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start
1660
- * MDN web docs: grid-row-start}
1606
+ * Sets the value for the CSS display:grid item property grid-row-start {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-start MDN web docs: grid-row-start}
1661
1607
  *
1662
1608
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1663
1609
  *
@@ -1673,7 +1619,7 @@ declare namespace sap {
1673
1619
  ): this;
1674
1620
  }
1675
1621
  /**
1676
- * @SINCE 1.60
1622
+ * @since 1.60
1677
1623
  *
1678
1624
  * Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control.
1679
1625
  */
@@ -1683,8 +1629,8 @@ declare namespace sap {
1683
1629
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1684
1630
  * of the syntax of the settings object.
1685
1631
  *
1686
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor
1687
- * sap.ui.base.ManagedObject} can be used.
1632
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor sap.ui.base.ManagedObject }
1633
+ * can be used.
1688
1634
  */
1689
1635
  constructor(
1690
1636
  /**
@@ -1697,8 +1643,8 @@ declare namespace sap {
1697
1643
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1698
1644
  * of the syntax of the settings object.
1699
1645
  *
1700
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor
1701
- * sap.ui.base.ManagedObject} can be used.
1646
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.base.ManagedObject#constructor sap.ui.base.ManagedObject }
1647
+ * can be used.
1702
1648
  */
1703
1649
  constructor(
1704
1650
  /**
@@ -1741,7 +1687,7 @@ declare namespace sap {
1741
1687
  */
1742
1688
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
1743
1689
  /**
1744
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1690
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1745
1691
  *
1746
1692
  * Removes all display:grid styles from the provided HTML element
1747
1693
  */
@@ -1752,7 +1698,7 @@ declare namespace sap {
1752
1698
  oElement: HTMLElement
1753
1699
  ): void;
1754
1700
  /**
1755
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1701
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1756
1702
  *
1757
1703
  * Sets all display:grid styles to the provided HTML element
1758
1704
  */
@@ -1785,7 +1731,7 @@ declare namespace sap {
1785
1731
  */
1786
1732
  isResponsive(): boolean;
1787
1733
  /**
1788
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1734
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1789
1735
  *
1790
1736
  * Hook function for the Grid's onAfterRendering
1791
1737
  */
@@ -1796,7 +1742,7 @@ declare namespace sap {
1796
1742
  oGrid: sap.ui.layout.cssgrid.IGridConfigurable
1797
1743
  ): void;
1798
1744
  /**
1799
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1745
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1800
1746
  *
1801
1747
  * Hook function for the Grid's resize. Will be called if the grid layout is responsive.
1802
1748
  */
@@ -1815,7 +1761,7 @@ declare namespace sap {
1815
1761
  constructor();
1816
1762
  }
1817
1763
  /**
1818
- * @SINCE 1.60
1764
+ * @since 1.60
1819
1765
  *
1820
1766
  * Applies a sap.ui.layout.cssgrid.GridSettings to a provided DOM element or Control. Have to possibility
1821
1767
  * to hold multiple sap.ui.layout.cssgrid.GridSettings and apply the currently active GridSettings.
@@ -1904,7 +1850,7 @@ declare namespace sap {
1904
1850
  /**
1905
1851
  * The function to be called when the event occurs
1906
1852
  */
1907
- fnFunction: (p1: sap.ui.base.Event) => void,
1853
+ fnFunction: (p1: GridResponsiveLayout$LayoutChangeEvent) => void,
1908
1854
  /**
1909
1855
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.GridResponsiveLayout`
1910
1856
  * itself
@@ -1925,7 +1871,7 @@ declare namespace sap {
1925
1871
  /**
1926
1872
  * The function to be called when the event occurs
1927
1873
  */
1928
- fnFunction: (p1: sap.ui.base.Event) => void,
1874
+ fnFunction: (p1: GridResponsiveLayout$LayoutChangeEvent) => void,
1929
1875
  /**
1930
1876
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.GridResponsiveLayout`
1931
1877
  * itself
@@ -1973,14 +1919,14 @@ declare namespace sap {
1973
1919
  /**
1974
1920
  * The function to be called, when the event occurs
1975
1921
  */
1976
- fnFunction: (p1: sap.ui.base.Event) => void,
1922
+ fnFunction: (p1: GridResponsiveLayout$LayoutChangeEvent) => void,
1977
1923
  /**
1978
1924
  * Context object on which the given function had to be called
1979
1925
  */
1980
1926
  oListener?: object
1981
1927
  ): this;
1982
1928
  /**
1983
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
1929
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
1984
1930
  *
1985
1931
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
1986
1932
  *
@@ -1990,12 +1936,7 @@ declare namespace sap {
1990
1936
  /**
1991
1937
  * Parameters to pass along with the event
1992
1938
  */
1993
- mParameters?: {
1994
- /**
1995
- * The name of the newly active layout aggregation
1996
- */
1997
- layout?: string;
1998
- }
1939
+ mParameters?: sap.ui.layout.cssgrid.GridResponsiveLayout$LayoutChangeEventParameters
1999
1940
  ): this;
2000
1941
  /**
2001
1942
  * Gets current value of property {@link #getContainerQuery containerQuery}.
@@ -2113,7 +2054,7 @@ declare namespace sap {
2113
2054
  ): this;
2114
2055
  }
2115
2056
  /**
2116
- * @SINCE 1.60
2057
+ * @since 1.60
2117
2058
  *
2118
2059
  * Holds a set of CSS display:grid properties
2119
2060
  */
@@ -2181,8 +2122,7 @@ declare namespace sap {
2181
2122
  /**
2182
2123
  * Gets current value of property {@link #getGridAutoColumns gridAutoColumns}.
2183
2124
  *
2184
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
2185
- * MDN web docs: grid-auto-columns}
2125
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
2186
2126
  *
2187
2127
  * Default value is `empty string`.
2188
2128
  *
@@ -2192,8 +2132,7 @@ declare namespace sap {
2192
2132
  /**
2193
2133
  * Gets current value of property {@link #getGridAutoFlow gridAutoFlow}.
2194
2134
  *
2195
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
2196
- * MDN web docs: grid-auto-flow}
2135
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
2197
2136
  *
2198
2137
  * Default value is `"Row"`.
2199
2138
  *
@@ -2203,8 +2142,7 @@ declare namespace sap {
2203
2142
  /**
2204
2143
  * Gets current value of property {@link #getGridAutoRows gridAutoRows}.
2205
2144
  *
2206
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
2207
- * MDN web docs: grid-auto-rows}
2145
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
2208
2146
  *
2209
2147
  * Default value is `empty string`.
2210
2148
  *
@@ -2214,8 +2152,7 @@ declare namespace sap {
2214
2152
  /**
2215
2153
  * Gets current value of property {@link #getGridColumnGap gridColumnGap}.
2216
2154
  *
2217
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
2218
- * MDN web docs: grid-column-gap}
2155
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
2219
2156
  *
2220
2157
  * Default value is `empty string`.
2221
2158
  *
@@ -2225,8 +2162,7 @@ declare namespace sap {
2225
2162
  /**
2226
2163
  * Gets current value of property {@link #getGridGap gridGap}.
2227
2164
  *
2228
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
2229
- * MDN web docs: grid-gap}
2165
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
2230
2166
  *
2231
2167
  * Default value is `empty string`.
2232
2168
  *
@@ -2236,8 +2172,7 @@ declare namespace sap {
2236
2172
  /**
2237
2173
  * Gets current value of property {@link #getGridRowGap gridRowGap}.
2238
2174
  *
2239
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
2240
- * MDN web docs: grid-row-gap}
2175
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
2241
2176
  *
2242
2177
  * Default value is `empty string`.
2243
2178
  *
@@ -2247,8 +2182,7 @@ declare namespace sap {
2247
2182
  /**
2248
2183
  * Gets current value of property {@link #getGridTemplateColumns gridTemplateColumns}.
2249
2184
  *
2250
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
2251
- * MDN web docs: grid-template-columns}
2185
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
2252
2186
  *
2253
2187
  * Default value is `empty string`.
2254
2188
  *
@@ -2258,8 +2192,7 @@ declare namespace sap {
2258
2192
  /**
2259
2193
  * Gets current value of property {@link #getGridTemplateRows gridTemplateRows}.
2260
2194
  *
2261
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
2262
- * MDN web docs: grid-template-rows}
2195
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
2263
2196
  *
2264
2197
  * Default value is `empty string`.
2265
2198
  *
@@ -2269,8 +2202,7 @@ declare namespace sap {
2269
2202
  /**
2270
2203
  * Sets a new value for property {@link #getGridAutoColumns gridAutoColumns}.
2271
2204
  *
2272
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns
2273
- * MDN web docs: grid-auto-columns}
2205
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-columns MDN web docs: grid-auto-columns}
2274
2206
  *
2275
2207
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2276
2208
  *
@@ -2287,8 +2219,7 @@ declare namespace sap {
2287
2219
  /**
2288
2220
  * Sets a new value for property {@link #getGridAutoFlow gridAutoFlow}.
2289
2221
  *
2290
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow
2291
- * MDN web docs: grid-auto-flow}
2222
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow MDN web docs: grid-auto-flow}
2292
2223
  *
2293
2224
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2294
2225
  *
@@ -2305,8 +2236,7 @@ declare namespace sap {
2305
2236
  /**
2306
2237
  * Sets a new value for property {@link #getGridAutoRows gridAutoRows}.
2307
2238
  *
2308
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows
2309
- * MDN web docs: grid-auto-rows}
2239
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-rows MDN web docs: grid-auto-rows}
2310
2240
  *
2311
2241
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2312
2242
  *
@@ -2323,8 +2253,7 @@ declare namespace sap {
2323
2253
  /**
2324
2254
  * Sets a new value for property {@link #getGridColumnGap gridColumnGap}.
2325
2255
  *
2326
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap
2327
- * MDN web docs: grid-column-gap}
2256
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column-gap MDN web docs: grid-column-gap}
2328
2257
  *
2329
2258
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2330
2259
  *
@@ -2341,8 +2270,7 @@ declare namespace sap {
2341
2270
  /**
2342
2271
  * Sets a new value for property {@link #getGridGap gridGap}.
2343
2272
  *
2344
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap
2345
- * MDN web docs: grid-gap}
2273
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-gap MDN web docs: grid-gap}
2346
2274
  *
2347
2275
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2348
2276
  *
@@ -2359,8 +2287,7 @@ declare namespace sap {
2359
2287
  /**
2360
2288
  * Sets a new value for property {@link #getGridRowGap gridRowGap}.
2361
2289
  *
2362
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap
2363
- * MDN web docs: grid-row-gap}
2290
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row-gap MDN web docs: grid-row-gap}
2364
2291
  *
2365
2292
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2366
2293
  *
@@ -2377,8 +2304,7 @@ declare namespace sap {
2377
2304
  /**
2378
2305
  * Sets a new value for property {@link #getGridTemplateColumns gridTemplateColumns}.
2379
2306
  *
2380
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns
2381
- * MDN web docs: grid-template-columns}
2307
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns MDN web docs: grid-template-columns}
2382
2308
  *
2383
2309
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2384
2310
  *
@@ -2395,8 +2321,7 @@ declare namespace sap {
2395
2321
  /**
2396
2322
  * Sets a new value for property {@link #getGridTemplateRows gridTemplateRows}.
2397
2323
  *
2398
- * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows
2399
- * MDN web docs: grid-template-rows}
2324
+ * Sets the value for the CSS display:grid property {@link https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-rows MDN web docs: grid-template-rows}
2400
2325
  *
2401
2326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2402
2327
  *
@@ -2412,7 +2337,7 @@ declare namespace sap {
2412
2337
  ): this;
2413
2338
  }
2414
2339
  /**
2415
- * @SINCE 1.72
2340
+ * @since 1.72
2416
2341
  *
2417
2342
  * Holds layout data for an item inside a responsive column layout.
2418
2343
  */
@@ -2539,7 +2464,7 @@ declare namespace sap {
2539
2464
  ): this;
2540
2465
  }
2541
2466
  /**
2542
- * @SINCE 1.72
2467
+ * @since 1.72
2543
2468
  *
2544
2469
  * Represents a layout which displays variable number of columns, depending on available screen size. With
2545
2470
  * that it achieves flexible layouts and line breaks for large, medium, and small-sized screens, such as
@@ -2631,7 +2556,7 @@ declare namespace sap {
2631
2556
  /**
2632
2557
  * The function to be called when the event occurs
2633
2558
  */
2634
- fnFunction: (p1: sap.ui.base.Event) => void,
2559
+ fnFunction: (p1: ResponsiveColumnLayout$LayoutChangeEvent) => void,
2635
2560
  /**
2636
2561
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`
2637
2562
  * itself
@@ -2652,7 +2577,7 @@ declare namespace sap {
2652
2577
  /**
2653
2578
  * The function to be called when the event occurs
2654
2579
  */
2655
- fnFunction: (p1: sap.ui.base.Event) => void,
2580
+ fnFunction: (p1: ResponsiveColumnLayout$LayoutChangeEvent) => void,
2656
2581
  /**
2657
2582
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.cssgrid.ResponsiveColumnLayout`
2658
2583
  * itself
@@ -2670,14 +2595,14 @@ declare namespace sap {
2670
2595
  /**
2671
2596
  * The function to be called, when the event occurs
2672
2597
  */
2673
- fnFunction: (p1: sap.ui.base.Event) => void,
2598
+ fnFunction: (p1: ResponsiveColumnLayout$LayoutChangeEvent) => void,
2674
2599
  /**
2675
2600
  * Context object on which the given function had to be called
2676
2601
  */
2677
2602
  oListener?: object
2678
2603
  ): this;
2679
2604
  /**
2680
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2605
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2681
2606
  *
2682
2607
  * Fires event {@link #event:layoutChange layoutChange} to attached listeners.
2683
2608
  *
@@ -2687,12 +2612,7 @@ declare namespace sap {
2687
2612
  /**
2688
2613
  * Parameters to pass along with the event
2689
2614
  */
2690
- mParameters?: {
2691
- /**
2692
- * The name of the newly active layout - "S", "M", "ML", "L", "XL", "XXL" or "XXXL".
2693
- */
2694
- layout?: string;
2695
- }
2615
+ mParameters?: sap.ui.layout.cssgrid.ResponsiveColumnLayout$LayoutChangeEventParameters
2696
2616
  ): this;
2697
2617
  /**
2698
2618
  * Returns if the Grid Layout is responsive.
@@ -2702,7 +2622,7 @@ declare namespace sap {
2702
2622
  isResponsive(): boolean;
2703
2623
  }
2704
2624
  /**
2705
- * @SINCE 1.60.0
2625
+ * @since 1.60.0
2706
2626
  *
2707
2627
  * A string type that is used for CSS grid to control how the auto-placement algorithm works, specifying
2708
2628
  * exactly how auto-placed items get flowed into the grid.
@@ -2728,7 +2648,7 @@ declare namespace sap {
2728
2648
  RowDense = "RowDense",
2729
2649
  }
2730
2650
  /**
2731
- * @SINCE 1.60.0
2651
+ * @since 1.60.0
2732
2652
  *
2733
2653
  * A string type that represents a short hand CSS grid gap.
2734
2654
  * See:
@@ -2737,7 +2657,7 @@ declare namespace sap {
2737
2657
  type CSSGridGapShortHand = string;
2738
2658
 
2739
2659
  /**
2740
- * @SINCE 1.60.0
2660
+ * @since 1.60.0
2741
2661
  *
2742
2662
  * A string type that represents one or two grid lines. Used to define the position and size of a single
2743
2663
  * grid item.
@@ -2758,13 +2678,29 @@ declare namespace sap {
2758
2678
  type CSSGridLine = string;
2759
2679
 
2760
2680
  /**
2761
- * @SINCE 1.60.0
2681
+ * @since 1.60.0
2762
2682
  *
2763
2683
  * A string type that represents a grid track (the space between two grid lines)
2764
2684
  * See:
2765
2685
  * {@link https://developer.mozilla.org/en-US/docs/Glossary/Grid_tracks}
2766
2686
  */
2767
2687
  type CSSGridTrack = string;
2688
+
2689
+ /**
2690
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'GridResponsiveLayout$LayoutChangeEventParameters'
2691
+ * in 1.115.1 and any later releases.
2692
+ */
2693
+ type $GridResponsiveLayoutLayoutChangeEventParameters = sap.ui.layout.cssgrid.GridResponsiveLayout$LayoutChangeEventParameters;
2694
+
2695
+ type GridResponsiveLayout$LayoutChangeEvent = sap.ui.base.Event<GridResponsiveLayout$LayoutChangeEventParameters>;
2696
+
2697
+ /**
2698
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ResponsiveColumnLayout$LayoutChangeEventParameters'
2699
+ * in 1.115.1 and any later releases.
2700
+ */
2701
+ type $ResponsiveColumnLayoutLayoutChangeEventParameters = sap.ui.layout.cssgrid.ResponsiveColumnLayout$LayoutChangeEventParameters;
2702
+
2703
+ type ResponsiveColumnLayout$LayoutChangeEvent = sap.ui.base.Event<ResponsiveColumnLayout$LayoutChangeEventParameters>;
2768
2704
  }
2769
2705
 
2770
2706
  namespace form {
@@ -2882,7 +2818,7 @@ declare namespace sap {
2882
2818
  | `{${string}}`;
2883
2819
 
2884
2820
  /**
2885
- * @SINCE 1.20.0
2821
+ * @since 1.20.0
2886
2822
  *
2887
2823
  * Applies a device-specific and theme-specific line height and label alignment to the form rows if the
2888
2824
  * form has editable content. If set, all (not only the editable) rows of the form will get the line height
@@ -2919,8 +2855,8 @@ declare namespace sap {
2919
2855
  *
2920
2856
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
2921
2857
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
2922
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
2923
- * level} to the needed value.
2858
+ * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
2859
+ * to the needed value.
2924
2860
  */
2925
2861
  title?:
2926
2862
  | string
@@ -2928,7 +2864,7 @@ declare namespace sap {
2928
2864
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
2929
2865
 
2930
2866
  /**
2931
- * @SINCE 1.36.0
2867
+ * @since 1.36.0
2932
2868
  *
2933
2869
  * Toolbar of the `Form`.
2934
2870
  *
@@ -2939,14 +2875,13 @@ declare namespace sap {
2939
2875
  toolbar?: sap.ui.core.Toolbar;
2940
2876
 
2941
2877
  /**
2942
- * Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout
2943
- * ColumnLayout} for rendering a `Form`, as its responsiveness allows the available space to be used in
2944
- * the best way possible.
2878
+ * Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout }
2879
+ * for rendering a `Form`, as its responsiveness allows the available space to be used in the best way possible.
2945
2880
  */
2946
2881
  layout?: sap.ui.layout.form.FormLayout;
2947
2882
 
2948
2883
  /**
2949
- * @SINCE 1.28.0
2884
+ * @since 1.28.0
2950
2885
  *
2951
2886
  * Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
2952
2887
  */
@@ -2999,8 +2934,8 @@ declare namespace sap {
2999
2934
  *
3000
2935
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
3001
2936
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
3002
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
3003
- * level} to the needed value.
2937
+ * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
2938
+ * to the needed value.
3004
2939
  */
3005
2940
  title?:
3006
2941
  | string
@@ -3008,7 +2943,7 @@ declare namespace sap {
3008
2943
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
3009
2944
 
3010
2945
  /**
3011
- * @SINCE 1.36.0
2946
+ * @since 1.36.0
3012
2947
  *
3013
2948
  * Toolbar of the `FormContainer`.
3014
2949
  *
@@ -3019,7 +2954,7 @@ declare namespace sap {
3019
2954
  toolbar?: sap.ui.core.Toolbar;
3020
2955
 
3021
2956
  /**
3022
- * @SINCE 1.36.0
2957
+ * @since 1.36.0
3023
2958
  *
3024
2959
  * Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
3025
2960
  *
@@ -3065,7 +3000,7 @@ declare namespace sap {
3065
3000
 
3066
3001
  interface $FormLayoutSettings extends sap.ui.core.$ControlSettings {
3067
3002
  /**
3068
- * @SINCE 1.36.0
3003
+ * @since 1.36.0
3069
3004
  *
3070
3005
  * Specifies the background color of the `Form` content.
3071
3006
  *
@@ -3137,7 +3072,7 @@ declare namespace sap {
3137
3072
  interface $ResponsiveGridLayoutSettings
3138
3073
  extends sap.ui.layout.form.$FormLayoutSettings {
3139
3074
  /**
3140
- * @SINCE 1.34.0
3075
+ * @since 1.34.0
3141
3076
  *
3142
3077
  * Default span for labels in extra large size.
3143
3078
  *
@@ -3150,7 +3085,7 @@ declare namespace sap {
3150
3085
  | `{${string}}`;
3151
3086
 
3152
3087
  /**
3153
- * @SINCE 1.16.3
3088
+ * @since 1.16.3
3154
3089
  *
3155
3090
  * Default span for labels in large size.
3156
3091
  *
@@ -3163,7 +3098,7 @@ declare namespace sap {
3163
3098
  | `{${string}}`;
3164
3099
 
3165
3100
  /**
3166
- * @SINCE 1.16.3
3101
+ * @since 1.16.3
3167
3102
  *
3168
3103
  * Default span for labels in medium size.
3169
3104
  *
@@ -3176,7 +3111,7 @@ declare namespace sap {
3176
3111
  | `{${string}}`;
3177
3112
 
3178
3113
  /**
3179
- * @SINCE 1.16.3
3114
+ * @since 1.16.3
3180
3115
  *
3181
3116
  * Default span for labels in small size.
3182
3117
  */
@@ -3186,7 +3121,7 @@ declare namespace sap {
3186
3121
  | `{${string}}`;
3187
3122
 
3188
3123
  /**
3189
- * @SINCE 1.34.0
3124
+ * @since 1.34.0
3190
3125
  *
3191
3126
  * If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of `FormContainers` in
3192
3127
  * one row. If only one `FormContainer` is displayed in one row, `labelSpanM` is used to define the size
@@ -3203,7 +3138,7 @@ declare namespace sap {
3203
3138
  | `{${string}}`;
3204
3139
 
3205
3140
  /**
3206
- * @SINCE 1.34.0
3141
+ * @since 1.34.0
3207
3142
  *
3208
3143
  * Number of grid cells that are empty at the end of each line on extra large size.
3209
3144
  *
@@ -3216,7 +3151,7 @@ declare namespace sap {
3216
3151
  | `{${string}}`;
3217
3152
 
3218
3153
  /**
3219
- * @SINCE 1.16.3
3154
+ * @since 1.16.3
3220
3155
  *
3221
3156
  * Number of grid cells that are empty at the end of each line on large size.
3222
3157
  */
@@ -3226,7 +3161,7 @@ declare namespace sap {
3226
3161
  | `{${string}}`;
3227
3162
 
3228
3163
  /**
3229
- * @SINCE 1.16.3
3164
+ * @since 1.16.3
3230
3165
  *
3231
3166
  * Number of grid cells that are empty at the end of each line on medium size.
3232
3167
  */
@@ -3236,7 +3171,7 @@ declare namespace sap {
3236
3171
  | `{${string}}`;
3237
3172
 
3238
3173
  /**
3239
- * @SINCE 1.16.3
3174
+ * @since 1.16.3
3240
3175
  *
3241
3176
  * Number of grid cells that are empty at the end of each line on small size.
3242
3177
  */
@@ -3246,7 +3181,7 @@ declare namespace sap {
3246
3181
  | `{${string}}`;
3247
3182
 
3248
3183
  /**
3249
- * @SINCE 1.34.0
3184
+ * @since 1.34.0
3250
3185
  *
3251
3186
  * Number of columns for extra large size.
3252
3187
  *
@@ -3260,7 +3195,7 @@ declare namespace sap {
3260
3195
  | `{${string}}`;
3261
3196
 
3262
3197
  /**
3263
- * @SINCE 1.16.3
3198
+ * @since 1.16.3
3264
3199
  *
3265
3200
  * Number of columns for large size.
3266
3201
  *
@@ -3272,7 +3207,7 @@ declare namespace sap {
3272
3207
  | `{${string}}`;
3273
3208
 
3274
3209
  /**
3275
- * @SINCE 1.16.3
3210
+ * @since 1.16.3
3276
3211
  *
3277
3212
  * Number of columns for medium size.
3278
3213
  */
@@ -3282,7 +3217,7 @@ declare namespace sap {
3282
3217
  | `{${string}}`;
3283
3218
 
3284
3219
  /**
3285
- * @SINCE 1.34.0
3220
+ * @since 1.34.0
3286
3221
  *
3287
3222
  * If the `Form` contains only one single `FormContainer` and this property is set, the `FormContainer`
3288
3223
  * is displayed using the full size of the `Form`. In this case the properties `columnsXL`, `columnsL` and
@@ -3296,7 +3231,7 @@ declare namespace sap {
3296
3231
  | `{${string}}`;
3297
3232
 
3298
3233
  /**
3299
- * @SINCE 1.34.0
3234
+ * @since 1.34.0
3300
3235
  *
3301
3236
  * Breakpoint (in pixel) between large size and extra large (XL) size.
3302
3237
  */
@@ -3306,7 +3241,7 @@ declare namespace sap {
3306
3241
  | `{${string}}`;
3307
3242
 
3308
3243
  /**
3309
- * @SINCE 1.16.3
3244
+ * @since 1.16.3
3310
3245
  *
3311
3246
  * Breakpoint (in pixel) between Medium size and Large size.
3312
3247
  */
@@ -3316,7 +3251,7 @@ declare namespace sap {
3316
3251
  | `{${string}}`;
3317
3252
 
3318
3253
  /**
3319
- * @SINCE 1.16.3
3254
+ * @since 1.16.3
3320
3255
  *
3321
3256
  * Breakpoint (in pixel) between Small size and Medium size.
3322
3257
  */
@@ -3384,7 +3319,7 @@ declare namespace sap {
3384
3319
  | `{${string}}`;
3385
3320
 
3386
3321
  /**
3387
- * @SINCE 1.28.0
3322
+ * @since 1.28.0
3388
3323
  *
3389
3324
  * Width of the form.
3390
3325
  */
@@ -3440,7 +3375,7 @@ declare namespace sap {
3440
3375
  | `{${string}}`;
3441
3376
 
3442
3377
  /**
3443
- * @SINCE 1.34.0
3378
+ * @since 1.34.0
3444
3379
  *
3445
3380
  * Default span for labels in extra large size.
3446
3381
  *
@@ -3454,7 +3389,7 @@ declare namespace sap {
3454
3389
  | `{${string}}`;
3455
3390
 
3456
3391
  /**
3457
- * @SINCE 1.16.3
3392
+ * @since 1.16.3
3458
3393
  *
3459
3394
  * Default span for labels in large size.
3460
3395
  *
@@ -3470,7 +3405,7 @@ declare namespace sap {
3470
3405
  | `{${string}}`;
3471
3406
 
3472
3407
  /**
3473
- * @SINCE 1.16.3
3408
+ * @since 1.16.3
3474
3409
  *
3475
3410
  * Default span for labels in medium size.
3476
3411
  *
@@ -3485,7 +3420,7 @@ declare namespace sap {
3485
3420
  | `{${string}}`;
3486
3421
 
3487
3422
  /**
3488
- * @SINCE 1.16.3
3423
+ * @since 1.16.3
3489
3424
  *
3490
3425
  * Default span for labels in small size.
3491
3426
  *
@@ -3497,7 +3432,7 @@ declare namespace sap {
3497
3432
  | `{${string}}`;
3498
3433
 
3499
3434
  /**
3500
- * @SINCE 1.34.0
3435
+ * @since 1.34.0
3501
3436
  *
3502
3437
  * If set, the usage of `labelSpanL` and `labelSpanM` are dependent on the number of `FormContainers` in
3503
3438
  * one row. If only one `FormContainer` is displayed in one row, `labelSpanM` is used to define the size
@@ -3516,7 +3451,7 @@ declare namespace sap {
3516
3451
  | `{${string}}`;
3517
3452
 
3518
3453
  /**
3519
- * @SINCE 1.34.0
3454
+ * @since 1.34.0
3520
3455
  *
3521
3456
  * Number of grid cells that are empty at the end of each line on extra large size.
3522
3457
  *
@@ -3530,7 +3465,7 @@ declare namespace sap {
3530
3465
  | `{${string}}`;
3531
3466
 
3532
3467
  /**
3533
- * @SINCE 1.16.3
3468
+ * @since 1.16.3
3534
3469
  *
3535
3470
  * Number of grid cells that are empty at the end of each line on large size.
3536
3471
  *
@@ -3543,7 +3478,7 @@ declare namespace sap {
3543
3478
  | `{${string}}`;
3544
3479
 
3545
3480
  /**
3546
- * @SINCE 1.16.3
3481
+ * @since 1.16.3
3547
3482
  *
3548
3483
  * Number of grid cells that are empty at the end of each line on medium size.
3549
3484
  *
@@ -3555,7 +3490,7 @@ declare namespace sap {
3555
3490
  | `{${string}}`;
3556
3491
 
3557
3492
  /**
3558
- * @SINCE 1.16.3
3493
+ * @since 1.16.3
3559
3494
  *
3560
3495
  * Number of grid cells that are empty at the end of each line on small size.
3561
3496
  *
@@ -3567,7 +3502,7 @@ declare namespace sap {
3567
3502
  | `{${string}}`;
3568
3503
 
3569
3504
  /**
3570
- * @SINCE 1.34.0
3505
+ * @since 1.34.0
3571
3506
  *
3572
3507
  * Form columns for extra large size. The number of columns for extra large size must not be smaller than
3573
3508
  * the number of columns for large size.
@@ -3582,7 +3517,7 @@ declare namespace sap {
3582
3517
  | `{${string}}`;
3583
3518
 
3584
3519
  /**
3585
- * @SINCE 1.16.3
3520
+ * @since 1.16.3
3586
3521
  *
3587
3522
  * Form columns for large size. The number of columns for large size must not be smaller than the number
3588
3523
  * of columns for medium size.
@@ -3595,7 +3530,7 @@ declare namespace sap {
3595
3530
  | `{${string}}`;
3596
3531
 
3597
3532
  /**
3598
- * @SINCE 1.16.3
3533
+ * @since 1.16.3
3599
3534
  *
3600
3535
  * Form columns for medium size.
3601
3536
  *
@@ -3607,7 +3542,7 @@ declare namespace sap {
3607
3542
  | `{${string}}`;
3608
3543
 
3609
3544
  /**
3610
- * @SINCE 1.34.0
3545
+ * @since 1.34.0
3611
3546
  *
3612
3547
  * If the `Form` contains only one single `FormContainer` and this property is set, the `FormContainer`
3613
3548
  * is displayed using the full size of the `Form`. In this case the properties `columnsL` and `columnsM`
@@ -3623,7 +3558,7 @@ declare namespace sap {
3623
3558
  | `{${string}}`;
3624
3559
 
3625
3560
  /**
3626
- * @SINCE 1.34.0
3561
+ * @since 1.34.0
3627
3562
  *
3628
3563
  * Breakpoint between Medium size and Large size.
3629
3564
  *
@@ -3635,7 +3570,7 @@ declare namespace sap {
3635
3570
  | `{${string}}`;
3636
3571
 
3637
3572
  /**
3638
- * @SINCE 1.16.3
3573
+ * @since 1.16.3
3639
3574
  *
3640
3575
  * Breakpoint between Medium size and Large size.
3641
3576
  *
@@ -3647,7 +3582,7 @@ declare namespace sap {
3647
3582
  | `{${string}}`;
3648
3583
 
3649
3584
  /**
3650
- * @SINCE 1.16.3
3585
+ * @since 1.16.3
3651
3586
  *
3652
3587
  * Breakpoint between Small size and Medium size.
3653
3588
  *
@@ -3659,7 +3594,7 @@ declare namespace sap {
3659
3594
  | `{${string}}`;
3660
3595
 
3661
3596
  /**
3662
- * @SINCE 1.36.0
3597
+ * @since 1.36.0
3663
3598
  *
3664
3599
  * Specifies the background color of the `SimpleForm` content.
3665
3600
  *
@@ -3672,18 +3607,18 @@ declare namespace sap {
3672
3607
 
3673
3608
  /**
3674
3609
  * The content of the form is structured in the following way:
3675
- * - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer
3676
- * FormContainer}`).
3610
+ * - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`).
3611
+ *
3677
3612
  * - Add a `Label` control to start a new row (`{@link sap.ui.layout.form.FormElement FormElement}`).
3678
3613
  *
3679
3614
  * - Add controls as input fields, text fields or other as needed.
3680
3615
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
3681
- * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
3682
- * cells for the field part, for large size. If there is only little space, the labels are above the fields
3683
- * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
3684
- * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
3685
- * not more than 12, as this is the total width of the input control part of each form row. Example
3686
- * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
3616
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
3617
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
3618
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
3619
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
3620
+ * not more than 12, as this is the total width of the input control part of each form row. Example
3621
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
3687
3622
  *
3688
3623
  * ```javascript
3689
3624
  *
@@ -3723,7 +3658,7 @@ declare namespace sap {
3723
3658
  | `{${string}}`;
3724
3659
 
3725
3660
  /**
3726
- * @SINCE 1.16.3
3661
+ * @since 1.16.3
3727
3662
  *
3728
3663
  * Title element of the `SimpleForm`. Can either be a `Title` element, or a string.
3729
3664
  */
@@ -3733,7 +3668,7 @@ declare namespace sap {
3733
3668
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
3734
3669
 
3735
3670
  /**
3736
- * @SINCE 1.36.0
3671
+ * @since 1.36.0
3737
3672
  *
3738
3673
  * Toolbar of the `SimpleForm`.
3739
3674
  *
@@ -3743,7 +3678,7 @@ declare namespace sap {
3743
3678
  toolbar?: sap.ui.core.Toolbar;
3744
3679
 
3745
3680
  /**
3746
- * @SINCE 1.32.0
3681
+ * @since 1.32.0
3747
3682
  *
3748
3683
  * Association to controls / IDs which label this control (see WAI-ARIA attribute `aria-labelledby`).
3749
3684
  */
@@ -3751,7 +3686,7 @@ declare namespace sap {
3751
3686
  }
3752
3687
 
3753
3688
  /**
3754
- * @SINCE 1.56.0
3689
+ * @since 1.56.0
3755
3690
  *
3756
3691
  * The `ColumnLayout`-specific layout data for the `FormContainer` element.
3757
3692
  *
@@ -3913,7 +3848,7 @@ declare namespace sap {
3913
3848
  ): this;
3914
3849
  }
3915
3850
  /**
3916
- * @SINCE 1.56.0
3851
+ * @since 1.56.0
3917
3852
  *
3918
3853
  * The `ColumnLayout`-specific layout data for the `FormElement` content fields.
3919
3854
  *
@@ -4049,7 +3984,7 @@ declare namespace sap {
4049
3984
  ): this;
4050
3985
  }
4051
3986
  /**
4052
- * @SINCE 1.56.0
3987
+ * @since 1.56.0
4053
3988
  *
4054
3989
  * The `ColumnLayout` control renders a `Form` control in a column-based responsive way. Depending on its
4055
3990
  * size, the `Form` control is divided into one or more columns. (XL - max. 4 columns, L - max. 3 columns,
@@ -4292,7 +4227,7 @@ declare namespace sap {
4292
4227
  ): this;
4293
4228
  }
4294
4229
  /**
4295
- * @SINCE 1.16.0
4230
+ * @since 1.16.0
4296
4231
  *
4297
4232
  * A `Form` control arranges labels and fields (like input fields) into groups and rows. There are different
4298
4233
  * ways to visualize forms for different screen sizes.
@@ -4377,7 +4312,7 @@ declare namespace sap {
4377
4312
  */
4378
4313
  static getMetadata(): sap.ui.core.ElementMetadata;
4379
4314
  /**
4380
- * @SINCE 1.28.0
4315
+ * @since 1.28.0
4381
4316
  *
4382
4317
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4383
4318
  *
@@ -4419,7 +4354,7 @@ declare namespace sap {
4419
4354
  */
4420
4355
  destroyTitle(): this;
4421
4356
  /**
4422
- * @SINCE 1.36.0
4357
+ * @since 1.36.0
4423
4358
  *
4424
4359
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
4425
4360
  *
@@ -4427,14 +4362,13 @@ declare namespace sap {
4427
4362
  */
4428
4363
  destroyToolbar(): this;
4429
4364
  /**
4430
- * @SINCE 1.28.0
4365
+ * @since 1.28.0
4431
4366
  *
4432
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
4433
- * ariaLabelledBy}.
4367
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
4434
4368
  */
4435
4369
  getAriaLabelledBy(): sap.ui.core.ID[];
4436
4370
  /**
4437
- * @SINCE 1.20.0
4371
+ * @since 1.20.0
4438
4372
  *
4439
4373
  * Gets current value of property {@link #getEditable editable}.
4440
4374
  *
@@ -4465,9 +4399,8 @@ declare namespace sap {
4465
4399
  /**
4466
4400
  * Gets content of aggregation {@link #getLayout layout}.
4467
4401
  *
4468
- * Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout
4469
- * ColumnLayout} for rendering a `Form`, as its responsiveness allows the available space to be used in
4470
- * the best way possible.
4402
+ * Layout of the `Form`. The assigned `Layout` renders the `Form`. We recommend using the {@link sap.ui.layout.form.ColumnLayout ColumnLayout }
4403
+ * for rendering a `Form`, as its responsiveness allows the available space to be used in the best way possible.
4471
4404
  */
4472
4405
  getLayout(): sap.ui.layout.form.FormLayout;
4473
4406
  /**
@@ -4480,12 +4413,12 @@ declare namespace sap {
4480
4413
  *
4481
4414
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
4482
4415
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
4483
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
4484
- * level} to the needed value.
4416
+ * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
4417
+ * to the needed value.
4485
4418
  */
4486
4419
  getTitle(): sap.ui.core.Title | string;
4487
4420
  /**
4488
- * @SINCE 1.36.0
4421
+ * @since 1.36.0
4489
4422
  *
4490
4423
  * Gets content of aggregation {@link #getToolbar toolbar}.
4491
4424
  *
@@ -4505,8 +4438,8 @@ declare namespace sap {
4505
4438
  */
4506
4439
  getWidth(): sap.ui.core.CSSSize;
4507
4440
  /**
4508
- * Checks for the provided `sap.ui.layout.form.FormContainer` in the aggregation {@link #getFormContainers
4509
- * formContainers}. and returns its index if found or -1 otherwise.
4441
+ * Checks for the provided `sap.ui.layout.form.FormContainer` in the aggregation {@link #getFormContainers formContainers}.
4442
+ * and returns its index if found or -1 otherwise.
4510
4443
  *
4511
4444
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
4512
4445
  */
@@ -4534,7 +4467,7 @@ declare namespace sap {
4534
4467
  iIndex: int
4535
4468
  ): this;
4536
4469
  /**
4537
- * @SINCE 1.28.0
4470
+ * @since 1.28.0
4538
4471
  *
4539
4472
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4540
4473
  *
@@ -4550,7 +4483,7 @@ declare namespace sap {
4550
4483
  */
4551
4484
  removeAllFormContainers(): sap.ui.layout.form.FormContainer[];
4552
4485
  /**
4553
- * @SINCE 1.28.0
4486
+ * @since 1.28.0
4554
4487
  *
4555
4488
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4556
4489
  *
@@ -4574,7 +4507,7 @@ declare namespace sap {
4574
4507
  vFormContainer: int | string | sap.ui.layout.form.FormContainer
4575
4508
  ): sap.ui.layout.form.FormContainer | null;
4576
4509
  /**
4577
- * @SINCE 1.20.0
4510
+ * @since 1.20.0
4578
4511
  *
4579
4512
  * Sets a new value for property {@link #getEditable editable}.
4580
4513
  *
@@ -4626,7 +4559,7 @@ declare namespace sap {
4626
4559
  vTitle: sap.ui.core.Title | string
4627
4560
  ): this;
4628
4561
  /**
4629
- * @SINCE 1.36.0
4562
+ * @since 1.36.0
4630
4563
  *
4631
4564
  * Sets the aggregated {@link #getToolbar toolbar}.
4632
4565
  *
@@ -4655,7 +4588,7 @@ declare namespace sap {
4655
4588
  ): this;
4656
4589
  }
4657
4590
  /**
4658
- * @SINCE 1.16.0
4591
+ * @since 1.16.0
4659
4592
  *
4660
4593
  * A `FormContainer` represents a group inside a `Form`. It consists of `FormElements`. The rendering of
4661
4594
  * the `FormContainer` is done by the `FormLayout` assigned to the `Form`.
@@ -4722,8 +4655,8 @@ declare namespace sap {
4722
4655
  */
4723
4656
  static getMetadata(): sap.ui.core.ElementMetadata;
4724
4657
  /**
4725
- * @SINCE 1.74.0
4726
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
4658
+ * @since 1.74.0
4659
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
4727
4660
  *
4728
4661
  * Sets the editable state of the `FormContainer`.
4729
4662
  *
@@ -4738,7 +4671,7 @@ declare namespace sap {
4738
4671
  bEditable: boolean
4739
4672
  ): void;
4740
4673
  /**
4741
- * @SINCE 1.36.0
4674
+ * @since 1.36.0
4742
4675
  *
4743
4676
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4744
4677
  *
@@ -4774,7 +4707,7 @@ declare namespace sap {
4774
4707
  */
4775
4708
  destroyTitle(): this;
4776
4709
  /**
4777
- * @SINCE 1.36.0
4710
+ * @since 1.36.0
4778
4711
  *
4779
4712
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
4780
4713
  *
@@ -4782,10 +4715,9 @@ declare namespace sap {
4782
4715
  */
4783
4716
  destroyToolbar(): this;
4784
4717
  /**
4785
- * @SINCE 1.36.0
4718
+ * @since 1.36.0
4786
4719
  *
4787
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
4788
- * ariaLabelledBy}.
4720
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
4789
4721
  */
4790
4722
  getAriaLabelledBy(): sap.ui.core.ID[];
4791
4723
  /**
@@ -4828,12 +4760,12 @@ declare namespace sap {
4828
4760
  *
4829
4761
  * **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
4830
4762
  * level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
4831
- * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel
4832
- * level} to the needed value.
4763
+ * In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
4764
+ * to the needed value.
4833
4765
  */
4834
4766
  getTitle(): sap.ui.core.Title | string;
4835
4767
  /**
4836
- * @SINCE 1.36.0
4768
+ * @since 1.36.0
4837
4769
  *
4838
4770
  * Gets content of aggregation {@link #getToolbar toolbar}.
4839
4771
  *
@@ -4893,7 +4825,7 @@ declare namespace sap {
4893
4825
  */
4894
4826
  isVisible(): boolean;
4895
4827
  /**
4896
- * @SINCE 1.36.0
4828
+ * @since 1.36.0
4897
4829
  *
4898
4830
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4899
4831
  *
@@ -4909,7 +4841,7 @@ declare namespace sap {
4909
4841
  */
4910
4842
  removeAllFormElements(): sap.ui.layout.form.FormElement[];
4911
4843
  /**
4912
- * @SINCE 1.36.0
4844
+ * @since 1.36.0
4913
4845
  *
4914
4846
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
4915
4847
  *
@@ -4982,7 +4914,7 @@ declare namespace sap {
4982
4914
  vTitle: sap.ui.core.Title | string
4983
4915
  ): this;
4984
4916
  /**
4985
- * @SINCE 1.36.0
4917
+ * @since 1.36.0
4986
4918
  *
4987
4919
  * Sets the aggregated {@link #getToolbar toolbar}.
4988
4920
  *
@@ -5013,7 +4945,7 @@ declare namespace sap {
5013
4945
  ): this;
5014
4946
  }
5015
4947
  /**
5016
- * @SINCE 1.16.0
4948
+ * @since 1.16.0
5017
4949
  *
5018
4950
  * A `FormElement` represents a row in a `FormContainer`. A `FormElement` is a combination of one label
5019
4951
  * and different controls associated to this label.
@@ -5080,8 +5012,8 @@ declare namespace sap {
5080
5012
  */
5081
5013
  static getMetadata(): sap.ui.core.ElementMetadata;
5082
5014
  /**
5083
- * @SINCE 1.74.0
5084
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5015
+ * @since 1.74.0
5016
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5085
5017
  *
5086
5018
  * Sets the editable state of the `FormElement`.
5087
5019
  *
@@ -5184,7 +5116,7 @@ declare namespace sap {
5184
5116
  iIndex: int
5185
5117
  ): this;
5186
5118
  /**
5187
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
5119
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
5188
5120
  *
5189
5121
  * Labels inside of a Form must be invalidated if "editable" changed on Form
5190
5122
  */
@@ -5247,7 +5179,7 @@ declare namespace sap {
5247
5179
  ): this;
5248
5180
  }
5249
5181
  /**
5250
- * @SINCE 1.16.0
5182
+ * @since 1.16.0
5251
5183
  *
5252
5184
  * Base layout to render a `Form`. Other layouts to render a `Form` must inherit from this one.
5253
5185
  *
@@ -5316,7 +5248,7 @@ declare namespace sap {
5316
5248
  */
5317
5249
  static getMetadata(): sap.ui.core.ElementMetadata;
5318
5250
  /**
5319
- * @SINCE 1.36.0
5251
+ * @since 1.36.0
5320
5252
  *
5321
5253
  * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
5322
5254
  *
@@ -5330,7 +5262,7 @@ declare namespace sap {
5330
5262
  */
5331
5263
  getBackgroundDesign(): sap.ui.layout.BackgroundDesign;
5332
5264
  /**
5333
- * @SINCE 1.36.0
5265
+ * @since 1.36.0
5334
5266
  *
5335
5267
  * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
5336
5268
  *
@@ -5352,7 +5284,7 @@ declare namespace sap {
5352
5284
  ): this;
5353
5285
  }
5354
5286
  /**
5355
- * @SINCE 1.16.0
5287
+ * @since 1.16.0
5356
5288
  *
5357
5289
  * The `GridLayout`-specific layout data for `FormContainers`.
5358
5290
  */
@@ -5450,7 +5382,7 @@ declare namespace sap {
5450
5382
  ): this;
5451
5383
  }
5452
5384
  /**
5453
- * @SINCE 1.16.0
5385
+ * @since 1.16.0
5454
5386
  *
5455
5387
  * The `GridLayout`-specific layout data for `FormElement` fields.
5456
5388
  */
@@ -5591,7 +5523,7 @@ declare namespace sap {
5591
5523
  ): this;
5592
5524
  }
5593
5525
  /**
5594
- * @SINCE 1.16.0
5526
+ * @since 1.16.0
5595
5527
  * @deprecated (since 1.67.0) - as `sap.ui.commons` library is deprecated and the `GridLayout` must not
5596
5528
  * be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
5597
5529
  *
@@ -5706,7 +5638,7 @@ declare namespace sap {
5706
5638
  ): this;
5707
5639
  }
5708
5640
  /**
5709
- * @SINCE 1.16.0
5641
+ * @since 1.16.0
5710
5642
  *
5711
5643
  * The `ResponsiveGridLayout` control renders a `Form` using a responsive grid. Internally the `Grid` control
5712
5644
  * is used for rendering. Using this layout, the `Form` is rendered in a responsive way. Depending on the
@@ -5789,7 +5721,7 @@ declare namespace sap {
5789
5721
  */
5790
5722
  static getMetadata(): sap.ui.core.ElementMetadata;
5791
5723
  /**
5792
- * @SINCE 1.34.0
5724
+ * @since 1.34.0
5793
5725
  *
5794
5726
  * Gets current value of property {@link #getAdjustLabelSpan adjustLabelSpan}.
5795
5727
  *
@@ -5808,7 +5740,7 @@ declare namespace sap {
5808
5740
  */
5809
5741
  getAdjustLabelSpan(): boolean;
5810
5742
  /**
5811
- * @SINCE 1.16.3
5743
+ * @since 1.16.3
5812
5744
  *
5813
5745
  * Gets current value of property {@link #getBreakpointL breakpointL}.
5814
5746
  *
@@ -5820,7 +5752,7 @@ declare namespace sap {
5820
5752
  */
5821
5753
  getBreakpointL(): int;
5822
5754
  /**
5823
- * @SINCE 1.16.3
5755
+ * @since 1.16.3
5824
5756
  *
5825
5757
  * Gets current value of property {@link #getBreakpointM breakpointM}.
5826
5758
  *
@@ -5832,7 +5764,7 @@ declare namespace sap {
5832
5764
  */
5833
5765
  getBreakpointM(): int;
5834
5766
  /**
5835
- * @SINCE 1.34.0
5767
+ * @since 1.34.0
5836
5768
  *
5837
5769
  * Gets current value of property {@link #getBreakpointXL breakpointXL}.
5838
5770
  *
@@ -5844,7 +5776,7 @@ declare namespace sap {
5844
5776
  */
5845
5777
  getBreakpointXL(): int;
5846
5778
  /**
5847
- * @SINCE 1.16.3
5779
+ * @since 1.16.3
5848
5780
  *
5849
5781
  * Gets current value of property {@link #getColumnsL columnsL}.
5850
5782
  *
@@ -5858,7 +5790,7 @@ declare namespace sap {
5858
5790
  */
5859
5791
  getColumnsL(): int;
5860
5792
  /**
5861
- * @SINCE 1.16.3
5793
+ * @since 1.16.3
5862
5794
  *
5863
5795
  * Gets current value of property {@link #getColumnsM columnsM}.
5864
5796
  *
@@ -5870,7 +5802,7 @@ declare namespace sap {
5870
5802
  */
5871
5803
  getColumnsM(): int;
5872
5804
  /**
5873
- * @SINCE 1.34.0
5805
+ * @since 1.34.0
5874
5806
  *
5875
5807
  * Gets current value of property {@link #getColumnsXL columnsXL}.
5876
5808
  *
@@ -5886,7 +5818,7 @@ declare namespace sap {
5886
5818
  */
5887
5819
  getColumnsXL(): int;
5888
5820
  /**
5889
- * @SINCE 1.16.3
5821
+ * @since 1.16.3
5890
5822
  *
5891
5823
  * Gets current value of property {@link #getEmptySpanL emptySpanL}.
5892
5824
  *
@@ -5898,7 +5830,7 @@ declare namespace sap {
5898
5830
  */
5899
5831
  getEmptySpanL(): int;
5900
5832
  /**
5901
- * @SINCE 1.16.3
5833
+ * @since 1.16.3
5902
5834
  *
5903
5835
  * Gets current value of property {@link #getEmptySpanM emptySpanM}.
5904
5836
  *
@@ -5910,7 +5842,7 @@ declare namespace sap {
5910
5842
  */
5911
5843
  getEmptySpanM(): int;
5912
5844
  /**
5913
- * @SINCE 1.16.3
5845
+ * @since 1.16.3
5914
5846
  *
5915
5847
  * Gets current value of property {@link #getEmptySpanS emptySpanS}.
5916
5848
  *
@@ -5922,7 +5854,7 @@ declare namespace sap {
5922
5854
  */
5923
5855
  getEmptySpanS(): int;
5924
5856
  /**
5925
- * @SINCE 1.34.0
5857
+ * @since 1.34.0
5926
5858
  *
5927
5859
  * Gets current value of property {@link #getEmptySpanXL emptySpanXL}.
5928
5860
  *
@@ -5937,7 +5869,7 @@ declare namespace sap {
5937
5869
  */
5938
5870
  getEmptySpanXL(): int;
5939
5871
  /**
5940
- * @SINCE 1.16.3
5872
+ * @since 1.16.3
5941
5873
  *
5942
5874
  * Gets current value of property {@link #getLabelSpanL labelSpanL}.
5943
5875
  *
@@ -5952,7 +5884,7 @@ declare namespace sap {
5952
5884
  */
5953
5885
  getLabelSpanL(): int;
5954
5886
  /**
5955
- * @SINCE 1.16.3
5887
+ * @since 1.16.3
5956
5888
  *
5957
5889
  * Gets current value of property {@link #getLabelSpanM labelSpanM}.
5958
5890
  *
@@ -5967,7 +5899,7 @@ declare namespace sap {
5967
5899
  */
5968
5900
  getLabelSpanM(): int;
5969
5901
  /**
5970
- * @SINCE 1.16.3
5902
+ * @since 1.16.3
5971
5903
  *
5972
5904
  * Gets current value of property {@link #getLabelSpanS labelSpanS}.
5973
5905
  *
@@ -5979,7 +5911,7 @@ declare namespace sap {
5979
5911
  */
5980
5912
  getLabelSpanS(): int;
5981
5913
  /**
5982
- * @SINCE 1.34.0
5914
+ * @since 1.34.0
5983
5915
  *
5984
5916
  * Gets current value of property {@link #getLabelSpanXL labelSpanXL}.
5985
5917
  *
@@ -5994,7 +5926,7 @@ declare namespace sap {
5994
5926
  */
5995
5927
  getLabelSpanXL(): int;
5996
5928
  /**
5997
- * @SINCE 1.34.0
5929
+ * @since 1.34.0
5998
5930
  *
5999
5931
  * Gets current value of property {@link #getSingleContainerFullSize singleContainerFullSize}.
6000
5932
  *
@@ -6010,7 +5942,7 @@ declare namespace sap {
6010
5942
  */
6011
5943
  getSingleContainerFullSize(): boolean;
6012
5944
  /**
6013
- * @SINCE 1.34.0
5945
+ * @since 1.34.0
6014
5946
  *
6015
5947
  * Sets a new value for property {@link #getAdjustLabelSpan adjustLabelSpan}.
6016
5948
  *
@@ -6036,7 +5968,7 @@ declare namespace sap {
6036
5968
  bAdjustLabelSpan?: boolean
6037
5969
  ): this;
6038
5970
  /**
6039
- * @SINCE 1.16.3
5971
+ * @since 1.16.3
6040
5972
  *
6041
5973
  * Sets a new value for property {@link #getBreakpointL breakpointL}.
6042
5974
  *
@@ -6055,7 +5987,7 @@ declare namespace sap {
6055
5987
  iBreakpointL?: int
6056
5988
  ): this;
6057
5989
  /**
6058
- * @SINCE 1.16.3
5990
+ * @since 1.16.3
6059
5991
  *
6060
5992
  * Sets a new value for property {@link #getBreakpointM breakpointM}.
6061
5993
  *
@@ -6074,7 +6006,7 @@ declare namespace sap {
6074
6006
  iBreakpointM?: int
6075
6007
  ): this;
6076
6008
  /**
6077
- * @SINCE 1.34.0
6009
+ * @since 1.34.0
6078
6010
  *
6079
6011
  * Sets a new value for property {@link #getBreakpointXL breakpointXL}.
6080
6012
  *
@@ -6093,7 +6025,7 @@ declare namespace sap {
6093
6025
  iBreakpointXL?: int
6094
6026
  ): this;
6095
6027
  /**
6096
- * @SINCE 1.16.3
6028
+ * @since 1.16.3
6097
6029
  *
6098
6030
  * Sets a new value for property {@link #getColumnsL columnsL}.
6099
6031
  *
@@ -6114,7 +6046,7 @@ declare namespace sap {
6114
6046
  iColumnsL?: int
6115
6047
  ): this;
6116
6048
  /**
6117
- * @SINCE 1.16.3
6049
+ * @since 1.16.3
6118
6050
  *
6119
6051
  * Sets a new value for property {@link #getColumnsM columnsM}.
6120
6052
  *
@@ -6133,7 +6065,7 @@ declare namespace sap {
6133
6065
  iColumnsM?: int
6134
6066
  ): this;
6135
6067
  /**
6136
- * @SINCE 1.34.0
6068
+ * @since 1.34.0
6137
6069
  *
6138
6070
  * Sets a new value for property {@link #getColumnsXL columnsXL}.
6139
6071
  *
@@ -6156,7 +6088,7 @@ declare namespace sap {
6156
6088
  iColumnsXL?: int
6157
6089
  ): this;
6158
6090
  /**
6159
- * @SINCE 1.16.3
6091
+ * @since 1.16.3
6160
6092
  *
6161
6093
  * Sets a new value for property {@link #getEmptySpanL emptySpanL}.
6162
6094
  *
@@ -6175,7 +6107,7 @@ declare namespace sap {
6175
6107
  iEmptySpanL?: int
6176
6108
  ): this;
6177
6109
  /**
6178
- * @SINCE 1.16.3
6110
+ * @since 1.16.3
6179
6111
  *
6180
6112
  * Sets a new value for property {@link #getEmptySpanM emptySpanM}.
6181
6113
  *
@@ -6194,7 +6126,7 @@ declare namespace sap {
6194
6126
  iEmptySpanM?: int
6195
6127
  ): this;
6196
6128
  /**
6197
- * @SINCE 1.16.3
6129
+ * @since 1.16.3
6198
6130
  *
6199
6131
  * Sets a new value for property {@link #getEmptySpanS emptySpanS}.
6200
6132
  *
@@ -6213,7 +6145,7 @@ declare namespace sap {
6213
6145
  iEmptySpanS?: int
6214
6146
  ): this;
6215
6147
  /**
6216
- * @SINCE 1.34.0
6148
+ * @since 1.34.0
6217
6149
  *
6218
6150
  * Sets a new value for property {@link #getEmptySpanXL emptySpanXL}.
6219
6151
  *
@@ -6235,7 +6167,7 @@ declare namespace sap {
6235
6167
  iEmptySpanXL?: int
6236
6168
  ): this;
6237
6169
  /**
6238
- * @SINCE 1.16.3
6170
+ * @since 1.16.3
6239
6171
  *
6240
6172
  * Sets a new value for property {@link #getLabelSpanL labelSpanL}.
6241
6173
  *
@@ -6257,7 +6189,7 @@ declare namespace sap {
6257
6189
  iLabelSpanL?: int
6258
6190
  ): this;
6259
6191
  /**
6260
- * @SINCE 1.16.3
6192
+ * @since 1.16.3
6261
6193
  *
6262
6194
  * Sets a new value for property {@link #getLabelSpanM labelSpanM}.
6263
6195
  *
@@ -6279,7 +6211,7 @@ declare namespace sap {
6279
6211
  iLabelSpanM?: int
6280
6212
  ): this;
6281
6213
  /**
6282
- * @SINCE 1.16.3
6214
+ * @since 1.16.3
6283
6215
  *
6284
6216
  * Sets a new value for property {@link #getLabelSpanS labelSpanS}.
6285
6217
  *
@@ -6298,7 +6230,7 @@ declare namespace sap {
6298
6230
  iLabelSpanS?: int
6299
6231
  ): this;
6300
6232
  /**
6301
- * @SINCE 1.34.0
6233
+ * @since 1.34.0
6302
6234
  *
6303
6235
  * Sets a new value for property {@link #getLabelSpanXL labelSpanXL}.
6304
6236
  *
@@ -6320,7 +6252,7 @@ declare namespace sap {
6320
6252
  iLabelSpanXL?: int
6321
6253
  ): this;
6322
6254
  /**
6323
- * @SINCE 1.34.0
6255
+ * @since 1.34.0
6324
6256
  *
6325
6257
  * Sets a new value for property {@link #getSingleContainerFullSize singleContainerFullSize}.
6326
6258
  *
@@ -6344,7 +6276,7 @@ declare namespace sap {
6344
6276
  ): this;
6345
6277
  }
6346
6278
  /**
6347
- * @SINCE 1.16.0
6279
+ * @since 1.16.0
6348
6280
  * @deprecated (since 1.93) - replaced by {@link sap.ui.layout.form.ColumnLayout ColumnLayout}
6349
6281
  *
6350
6282
  * The `ResponsiveLayout` renders a `Form` with a responsive layout. Internally the `ResponsiveFlowLayout`
@@ -6373,8 +6305,8 @@ declare namespace sap {
6373
6305
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6374
6306
  * of the syntax of the settings object.
6375
6307
  *
6376
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
6377
- * sap.ui.layout.form.FormLayout} can be used.
6308
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
6309
+ * can be used.
6378
6310
  */
6379
6311
  constructor(
6380
6312
  /**
@@ -6389,8 +6321,8 @@ declare namespace sap {
6389
6321
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
6390
6322
  * of the syntax of the settings object.
6391
6323
  *
6392
- * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor
6393
- * sap.ui.layout.form.FormLayout} can be used.
6324
+ * This class does not have its own settings, but all settings applicable to the base type {@link sap.ui.layout.form.FormLayout#constructor sap.ui.layout.form.FormLayout }
6325
+ * can be used.
6394
6326
  */
6395
6327
  constructor(
6396
6328
  /**
@@ -6434,8 +6366,8 @@ declare namespace sap {
6434
6366
  static getMetadata(): sap.ui.core.ElementMetadata;
6435
6367
  }
6436
6368
  /**
6437
- * @SINCE 1.86.0
6438
- * @EXPERIMENTAL (since 1.86)
6369
+ * @since 1.86.0
6370
+ * @experimental (since 1.86)
6439
6371
  *
6440
6372
  * A `SemanticFormElement` element is a special `FormElement` that contains semantically connected fields.
6441
6373
  * These field controls are divided by delimiter controls. In display mode, they are rendered as one condensed
@@ -6617,19 +6549,19 @@ declare namespace sap {
6617
6549
  ): this;
6618
6550
  }
6619
6551
  /**
6620
- * @SINCE 1.16.0
6552
+ * @since 1.16.0
6621
6553
  *
6622
6554
  * The `SimpleForm` control provides an easy-to-use API to create simple forms. Inside a `SimpleForm` control,
6623
- * a `{@link sap.ui.layout.form.Form Form}` control is created along with its `{@link sap.ui.layout.form.FormContainer
6624
- * FormContainer}` elements and `{@link sap.ui.layout.form.FormElement FormElement}` elements, but the complexity
6625
- * in the API is not exposed to the user.
6626
- * - A new `sap.ui.core.Title` element or `Toolbar` control starts a new group (`{@link sap.ui.layout.form.FormContainer
6627
- * FormContainer}`) in the form.
6555
+ * a `{@link sap.ui.layout.form.Form Form}` control is created along with its `{@link sap.ui.layout.form.FormContainer FormContainer}`
6556
+ * elements and `{@link sap.ui.layout.form.FormElement FormElement}` elements, but the complexity in the
6557
+ * API is not exposed to the user.
6558
+ * - A new `sap.ui.core.Title` element or `Toolbar` control starts a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`)
6559
+ * in the form.
6628
6560
  * - A new `Label` control starts a new row (`{@link sap.ui.layout.form.FormElement FormElement}`) in
6629
- * the form.
6561
+ * the form.
6630
6562
  * - All other controls will be assigned to the row (`{@link sap.ui.layout.form.FormElement FormElement}`)
6631
- * that started with the last label. Use `LayoutData` to influence the layout for special cases in
6632
- * the Input/Display controls.
6563
+ * that started with the last label. Use `LayoutData` to influence the layout for special cases in
6564
+ * the Input/Display controls.
6633
6565
  *
6634
6566
  * **Note:** If a more complex form is needed, use the `{@link sap.ui.layout.form.Form Form}` control instead.
6635
6567
  */
@@ -6695,7 +6627,7 @@ declare namespace sap {
6695
6627
  */
6696
6628
  static getMetadata(): sap.ui.core.ElementMetadata;
6697
6629
  /**
6698
- * @SINCE 1.32.0
6630
+ * @since 1.32.0
6699
6631
  *
6700
6632
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
6701
6633
  *
@@ -6725,7 +6657,7 @@ declare namespace sap {
6725
6657
  */
6726
6658
  destroyContent(): this;
6727
6659
  /**
6728
- * @SINCE 1.16.3
6660
+ * @since 1.16.3
6729
6661
  *
6730
6662
  * Destroys the title in the aggregation {@link #getTitle title}.
6731
6663
  *
@@ -6733,7 +6665,7 @@ declare namespace sap {
6733
6665
  */
6734
6666
  destroyTitle(): this;
6735
6667
  /**
6736
- * @SINCE 1.36.0
6668
+ * @since 1.36.0
6737
6669
  *
6738
6670
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
6739
6671
  *
@@ -6741,7 +6673,7 @@ declare namespace sap {
6741
6673
  */
6742
6674
  destroyToolbar(): this;
6743
6675
  /**
6744
- * @SINCE 1.34.0
6676
+ * @since 1.34.0
6745
6677
  *
6746
6678
  * Gets current value of property {@link #getAdjustLabelSpan adjustLabelSpan}.
6747
6679
  *
@@ -6762,14 +6694,13 @@ declare namespace sap {
6762
6694
  */
6763
6695
  getAdjustLabelSpan(): boolean;
6764
6696
  /**
6765
- * @SINCE 1.32.0
6697
+ * @since 1.32.0
6766
6698
  *
6767
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
6768
- * ariaLabelledBy}.
6699
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
6769
6700
  */
6770
6701
  getAriaLabelledBy(): sap.ui.core.ID[];
6771
6702
  /**
6772
- * @SINCE 1.36.0
6703
+ * @since 1.36.0
6773
6704
  *
6774
6705
  * Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
6775
6706
  *
@@ -6783,7 +6714,7 @@ declare namespace sap {
6783
6714
  */
6784
6715
  getBackgroundDesign(): sap.ui.layout.BackgroundDesign;
6785
6716
  /**
6786
- * @SINCE 1.16.3
6717
+ * @since 1.16.3
6787
6718
  *
6788
6719
  * Gets current value of property {@link #getBreakpointL breakpointL}.
6789
6720
  *
@@ -6797,7 +6728,7 @@ declare namespace sap {
6797
6728
  */
6798
6729
  getBreakpointL(): int;
6799
6730
  /**
6800
- * @SINCE 1.16.3
6731
+ * @since 1.16.3
6801
6732
  *
6802
6733
  * Gets current value of property {@link #getBreakpointM breakpointM}.
6803
6734
  *
@@ -6811,7 +6742,7 @@ declare namespace sap {
6811
6742
  */
6812
6743
  getBreakpointM(): int;
6813
6744
  /**
6814
- * @SINCE 1.34.0
6745
+ * @since 1.34.0
6815
6746
  *
6816
6747
  * Gets current value of property {@link #getBreakpointXL breakpointXL}.
6817
6748
  *
@@ -6825,7 +6756,7 @@ declare namespace sap {
6825
6756
  */
6826
6757
  getBreakpointXL(): int;
6827
6758
  /**
6828
- * @SINCE 1.16.3
6759
+ * @since 1.16.3
6829
6760
  *
6830
6761
  * Gets current value of property {@link #getColumnsL columnsL}.
6831
6762
  *
@@ -6840,7 +6771,7 @@ declare namespace sap {
6840
6771
  */
6841
6772
  getColumnsL(): int;
6842
6773
  /**
6843
- * @SINCE 1.16.3
6774
+ * @since 1.16.3
6844
6775
  *
6845
6776
  * Gets current value of property {@link #getColumnsM columnsM}.
6846
6777
  *
@@ -6854,7 +6785,7 @@ declare namespace sap {
6854
6785
  */
6855
6786
  getColumnsM(): int;
6856
6787
  /**
6857
- * @SINCE 1.34.0
6788
+ * @since 1.34.0
6858
6789
  *
6859
6790
  * Gets current value of property {@link #getColumnsXL columnsXL}.
6860
6791
  *
@@ -6874,18 +6805,18 @@ declare namespace sap {
6874
6805
  * Gets content of aggregation {@link #getContent content}.
6875
6806
  *
6876
6807
  * The content of the form is structured in the following way:
6877
- * - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer
6878
- * FormContainer}`).
6808
+ * - Add a `sap.ui.core.Title` element or `Toolbar` control to start a new group (`{@link sap.ui.layout.form.FormContainer FormContainer}`).
6809
+ *
6879
6810
  * - Add a `Label` control to start a new row (`{@link sap.ui.layout.form.FormElement FormElement}`).
6880
6811
  *
6881
6812
  * - Add controls as input fields, text fields or other as needed.
6882
6813
  * - Use `LayoutData` to influence the layout for special cases in the single controls. For example, if
6883
- * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
6884
- * cells for the field part, for large size. If there is only little space, the labels are above the fields
6885
- * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
6886
- * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
6887
- * not more than 12, as this is the total width of the input control part of each form row. Example
6888
- * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
6814
+ * a `ColumnLayout` is used as a layout, the form content is weighted using 4 cells for the labels and 8
6815
+ * cells for the field part, for large size. If there is only little space, the labels are above the fields
6816
+ * and each field uses 12 cells. If your input controls should influence their width, you can add `sap.ui.layout.ColumnElementData`
6817
+ * to them via `setLayoutData` method. Ensure that the sum of the weights in the `ColumnElementData` is
6818
+ * not more than 12, as this is the total width of the input control part of each form row. Example
6819
+ * for a row where the `Input` uses 6 cells and the second `Input` uses 2 cells (using `ColumnElementData`):
6889
6820
  *
6890
6821
  * ```javascript
6891
6822
  *
@@ -6939,7 +6870,7 @@ declare namespace sap {
6939
6870
  */
6940
6871
  getEditable(): boolean;
6941
6872
  /**
6942
- * @SINCE 1.16.3
6873
+ * @since 1.16.3
6943
6874
  *
6944
6875
  * Gets current value of property {@link #getEmptySpanL emptySpanL}.
6945
6876
  *
@@ -6954,7 +6885,7 @@ declare namespace sap {
6954
6885
  */
6955
6886
  getEmptySpanL(): int;
6956
6887
  /**
6957
- * @SINCE 1.16.3
6888
+ * @since 1.16.3
6958
6889
  *
6959
6890
  * Gets current value of property {@link #getEmptySpanM emptySpanM}.
6960
6891
  *
@@ -6968,7 +6899,7 @@ declare namespace sap {
6968
6899
  */
6969
6900
  getEmptySpanM(): int;
6970
6901
  /**
6971
- * @SINCE 1.16.3
6902
+ * @since 1.16.3
6972
6903
  *
6973
6904
  * Gets current value of property {@link #getEmptySpanS emptySpanS}.
6974
6905
  *
@@ -6982,7 +6913,7 @@ declare namespace sap {
6982
6913
  */
6983
6914
  getEmptySpanS(): int;
6984
6915
  /**
6985
- * @SINCE 1.34.0
6916
+ * @since 1.34.0
6986
6917
  *
6987
6918
  * Gets current value of property {@link #getEmptySpanXL emptySpanXL}.
6988
6919
  *
@@ -7010,7 +6941,7 @@ declare namespace sap {
7010
6941
  */
7011
6942
  getLabelMinWidth(): int;
7012
6943
  /**
7013
- * @SINCE 1.16.3
6944
+ * @since 1.16.3
7014
6945
  *
7015
6946
  * Gets current value of property {@link #getLabelSpanL labelSpanL}.
7016
6947
  *
@@ -7028,7 +6959,7 @@ declare namespace sap {
7028
6959
  */
7029
6960
  getLabelSpanL(): int;
7030
6961
  /**
7031
- * @SINCE 1.16.3
6962
+ * @since 1.16.3
7032
6963
  *
7033
6964
  * Gets current value of property {@link #getLabelSpanM labelSpanM}.
7034
6965
  *
@@ -7045,7 +6976,7 @@ declare namespace sap {
7045
6976
  */
7046
6977
  getLabelSpanM(): int;
7047
6978
  /**
7048
- * @SINCE 1.16.3
6979
+ * @since 1.16.3
7049
6980
  *
7050
6981
  * Gets current value of property {@link #getLabelSpanS labelSpanS}.
7051
6982
  *
@@ -7059,7 +6990,7 @@ declare namespace sap {
7059
6990
  */
7060
6991
  getLabelSpanS(): int;
7061
6992
  /**
7062
- * @SINCE 1.34.0
6993
+ * @since 1.34.0
7063
6994
  *
7064
6995
  * Gets current value of property {@link #getLabelSpanXL labelSpanXL}.
7065
6996
  *
@@ -7125,7 +7056,7 @@ declare namespace sap {
7125
7056
  */
7126
7057
  getMinWidth(): int;
7127
7058
  /**
7128
- * @SINCE 1.34.0
7059
+ * @since 1.34.0
7129
7060
  *
7130
7061
  * Gets current value of property {@link #getSingleContainerFullSize singleContainerFullSize}.
7131
7062
  *
@@ -7143,7 +7074,7 @@ declare namespace sap {
7143
7074
  */
7144
7075
  getSingleContainerFullSize(): boolean;
7145
7076
  /**
7146
- * @SINCE 1.16.3
7077
+ * @since 1.16.3
7147
7078
  *
7148
7079
  * Gets content of aggregation {@link #getTitle title}.
7149
7080
  *
@@ -7151,7 +7082,7 @@ declare namespace sap {
7151
7082
  */
7152
7083
  getTitle(): sap.ui.core.Title | string;
7153
7084
  /**
7154
- * @SINCE 1.36.0
7085
+ * @since 1.36.0
7155
7086
  *
7156
7087
  * Gets content of aggregation {@link #getToolbar toolbar}.
7157
7088
  *
@@ -7162,7 +7093,7 @@ declare namespace sap {
7162
7093
  */
7163
7094
  getToolbar(): sap.ui.core.Toolbar;
7164
7095
  /**
7165
- * @SINCE 1.28.0
7096
+ * @since 1.28.0
7166
7097
  *
7167
7098
  * Gets current value of property {@link #getWidth width}.
7168
7099
  *
@@ -7201,7 +7132,7 @@ declare namespace sap {
7201
7132
  iIndex: int
7202
7133
  ): this;
7203
7134
  /**
7204
- * @SINCE 1.32.0
7135
+ * @since 1.32.0
7205
7136
  *
7206
7137
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7207
7138
  *
@@ -7217,7 +7148,7 @@ declare namespace sap {
7217
7148
  */
7218
7149
  removeAllContent(): sap.ui.core.Element[];
7219
7150
  /**
7220
- * @SINCE 1.32.0
7151
+ * @since 1.32.0
7221
7152
  *
7222
7153
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7223
7154
  *
@@ -7241,7 +7172,7 @@ declare namespace sap {
7241
7172
  vContent: int | string | sap.ui.core.Element
7242
7173
  ): sap.ui.core.Element | null;
7243
7174
  /**
7244
- * @SINCE 1.34.0
7175
+ * @since 1.34.0
7245
7176
  *
7246
7177
  * Sets a new value for property {@link #getAdjustLabelSpan adjustLabelSpan}.
7247
7178
  *
@@ -7269,7 +7200,7 @@ declare namespace sap {
7269
7200
  bAdjustLabelSpan?: boolean
7270
7201
  ): this;
7271
7202
  /**
7272
- * @SINCE 1.36.0
7203
+ * @since 1.36.0
7273
7204
  *
7274
7205
  * Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
7275
7206
  *
@@ -7290,7 +7221,7 @@ declare namespace sap {
7290
7221
  sBackgroundDesign?: sap.ui.layout.BackgroundDesign
7291
7222
  ): this;
7292
7223
  /**
7293
- * @SINCE 1.16.3
7224
+ * @since 1.16.3
7294
7225
  *
7295
7226
  * Sets a new value for property {@link #getBreakpointL breakpointL}.
7296
7227
  *
@@ -7311,7 +7242,7 @@ declare namespace sap {
7311
7242
  iBreakpointL?: int
7312
7243
  ): this;
7313
7244
  /**
7314
- * @SINCE 1.16.3
7245
+ * @since 1.16.3
7315
7246
  *
7316
7247
  * Sets a new value for property {@link #getBreakpointM breakpointM}.
7317
7248
  *
@@ -7332,7 +7263,7 @@ declare namespace sap {
7332
7263
  iBreakpointM?: int
7333
7264
  ): this;
7334
7265
  /**
7335
- * @SINCE 1.34.0
7266
+ * @since 1.34.0
7336
7267
  *
7337
7268
  * Sets a new value for property {@link #getBreakpointXL breakpointXL}.
7338
7269
  *
@@ -7353,7 +7284,7 @@ declare namespace sap {
7353
7284
  iBreakpointXL?: int
7354
7285
  ): this;
7355
7286
  /**
7356
- * @SINCE 1.16.3
7287
+ * @since 1.16.3
7357
7288
  *
7358
7289
  * Sets a new value for property {@link #getColumnsL columnsL}.
7359
7290
  *
@@ -7375,7 +7306,7 @@ declare namespace sap {
7375
7306
  iColumnsL?: int
7376
7307
  ): this;
7377
7308
  /**
7378
- * @SINCE 1.16.3
7309
+ * @since 1.16.3
7379
7310
  *
7380
7311
  * Sets a new value for property {@link #getColumnsM columnsM}.
7381
7312
  *
@@ -7396,7 +7327,7 @@ declare namespace sap {
7396
7327
  iColumnsM?: int
7397
7328
  ): this;
7398
7329
  /**
7399
- * @SINCE 1.34.0
7330
+ * @since 1.34.0
7400
7331
  *
7401
7332
  * Sets a new value for property {@link #getColumnsXL columnsXL}.
7402
7333
  *
@@ -7446,7 +7377,7 @@ declare namespace sap {
7446
7377
  bEditable?: boolean
7447
7378
  ): this;
7448
7379
  /**
7449
- * @SINCE 1.16.3
7380
+ * @since 1.16.3
7450
7381
  *
7451
7382
  * Sets a new value for property {@link #getEmptySpanL emptySpanL}.
7452
7383
  *
@@ -7468,7 +7399,7 @@ declare namespace sap {
7468
7399
  iEmptySpanL?: int
7469
7400
  ): this;
7470
7401
  /**
7471
- * @SINCE 1.16.3
7402
+ * @since 1.16.3
7472
7403
  *
7473
7404
  * Sets a new value for property {@link #getEmptySpanM emptySpanM}.
7474
7405
  *
@@ -7489,7 +7420,7 @@ declare namespace sap {
7489
7420
  iEmptySpanM?: int
7490
7421
  ): this;
7491
7422
  /**
7492
- * @SINCE 1.16.3
7423
+ * @since 1.16.3
7493
7424
  *
7494
7425
  * Sets a new value for property {@link #getEmptySpanS emptySpanS}.
7495
7426
  *
@@ -7510,7 +7441,7 @@ declare namespace sap {
7510
7441
  iEmptySpanS?: int
7511
7442
  ): this;
7512
7443
  /**
7513
- * @SINCE 1.34.0
7444
+ * @since 1.34.0
7514
7445
  *
7515
7446
  * Sets a new value for property {@link #getEmptySpanXL emptySpanXL}.
7516
7447
  *
@@ -7552,7 +7483,7 @@ declare namespace sap {
7552
7483
  iLabelMinWidth?: int
7553
7484
  ): this;
7554
7485
  /**
7555
- * @SINCE 1.16.3
7486
+ * @since 1.16.3
7556
7487
  *
7557
7488
  * Sets a new value for property {@link #getLabelSpanL labelSpanL}.
7558
7489
  *
@@ -7577,7 +7508,7 @@ declare namespace sap {
7577
7508
  iLabelSpanL?: int
7578
7509
  ): this;
7579
7510
  /**
7580
- * @SINCE 1.16.3
7511
+ * @since 1.16.3
7581
7512
  *
7582
7513
  * Sets a new value for property {@link #getLabelSpanM labelSpanM}.
7583
7514
  *
@@ -7601,7 +7532,7 @@ declare namespace sap {
7601
7532
  iLabelSpanM?: int
7602
7533
  ): this;
7603
7534
  /**
7604
- * @SINCE 1.16.3
7535
+ * @since 1.16.3
7605
7536
  *
7606
7537
  * Sets a new value for property {@link #getLabelSpanS labelSpanS}.
7607
7538
  *
@@ -7622,7 +7553,7 @@ declare namespace sap {
7622
7553
  iLabelSpanS?: int
7623
7554
  ): this;
7624
7555
  /**
7625
- * @SINCE 1.34.0
7556
+ * @since 1.34.0
7626
7557
  *
7627
7558
  * Sets a new value for property {@link #getLabelSpanXL labelSpanXL}.
7628
7559
  *
@@ -7716,7 +7647,7 @@ declare namespace sap {
7716
7647
  iMinWidth?: int
7717
7648
  ): this;
7718
7649
  /**
7719
- * @SINCE 1.34.0
7650
+ * @since 1.34.0
7720
7651
  *
7721
7652
  * Sets a new value for property {@link #getSingleContainerFullSize singleContainerFullSize}.
7722
7653
  *
@@ -7741,7 +7672,7 @@ declare namespace sap {
7741
7672
  bSingleContainerFullSize?: boolean
7742
7673
  ): this;
7743
7674
  /**
7744
- * @SINCE 1.16.3
7675
+ * @since 1.16.3
7745
7676
  *
7746
7677
  * Sets the aggregated {@link #getTitle title}.
7747
7678
  *
@@ -7754,7 +7685,7 @@ declare namespace sap {
7754
7685
  vTitle: sap.ui.core.Title | string
7755
7686
  ): this;
7756
7687
  /**
7757
- * @SINCE 1.36.0
7688
+ * @since 1.36.0
7758
7689
  *
7759
7690
  * Sets the aggregated {@link #getToolbar toolbar}.
7760
7691
  *
@@ -7767,7 +7698,7 @@ declare namespace sap {
7767
7698
  oToolbar: sap.ui.core.Toolbar
7768
7699
  ): this;
7769
7700
  /**
7770
- * @SINCE 1.28.0
7701
+ * @since 1.28.0
7771
7702
  *
7772
7703
  * Sets a new value for property {@link #getWidth width}.
7773
7704
  *
@@ -7785,13 +7716,13 @@ declare namespace sap {
7785
7716
  ): this;
7786
7717
  }
7787
7718
  /**
7788
- * @SINCE 1.16.0
7719
+ * @since 1.16.0
7789
7720
  *
7790
7721
  * Available `FormLayouts` used to render a `SimpleForm`.
7791
7722
  */
7792
7723
  enum SimpleFormLayout {
7793
7724
  /**
7794
- * @SINCE 1.56.0
7725
+ * @since 1.56.0
7795
7726
  *
7796
7727
  * Uses the `ColumnLayout` layout to render the `SimpleForm` control
7797
7728
  */
@@ -7804,7 +7735,7 @@ declare namespace sap {
7804
7735
  */
7805
7736
  GridLayout = "GridLayout",
7806
7737
  /**
7807
- * @SINCE 1.16.0
7738
+ * @since 1.16.0
7808
7739
  *
7809
7740
  * Uses the `ResponsiveGridLayout` layout to render the `SimpleForm` control
7810
7741
  */
@@ -7817,7 +7748,7 @@ declare namespace sap {
7817
7748
  ResponsiveLayout = "ResponsiveLayout",
7818
7749
  }
7819
7750
  /**
7820
- * @SINCE 1.56.0
7751
+ * @since 1.56.0
7821
7752
  *
7822
7753
  * An `int` type that defines how many cells a control inside of a column of a `Form` control using the
7823
7754
  * `ColumnLayout` control as layout can use.
@@ -7827,7 +7758,7 @@ declare namespace sap {
7827
7758
  type ColumnCells = int;
7828
7759
 
7829
7760
  /**
7830
- * @SINCE 1.56.0
7761
+ * @since 1.56.0
7831
7762
  *
7832
7763
  * An `int` type that defines how many columns a `Form` control using the `ColumnLayout` as layout can have
7833
7764
  * if it has large size
@@ -7837,7 +7768,7 @@ declare namespace sap {
7837
7768
  type ColumnsL = int;
7838
7769
 
7839
7770
  /**
7840
- * @SINCE 1.56.0
7771
+ * @since 1.56.0
7841
7772
  *
7842
7773
  * An `int` type that defines how many columns a `Form` control using the `ColumnLayout` as layout can have
7843
7774
  * if it has medium size
@@ -7847,7 +7778,7 @@ declare namespace sap {
7847
7778
  type ColumnsM = int;
7848
7779
 
7849
7780
  /**
7850
- * @SINCE 1.56.0
7781
+ * @since 1.56.0
7851
7782
  *
7852
7783
  * An `int` type that defines how many columns a `Form` control using the `ColumnLayout` as layout can have
7853
7784
  * if it has extra-large size
@@ -7857,7 +7788,7 @@ declare namespace sap {
7857
7788
  type ColumnsXL = int;
7858
7789
 
7859
7790
  /**
7860
- * @SINCE 1.56.0
7791
+ * @since 1.56.0
7861
7792
  *
7862
7793
  * An `int` type that defines how many cells beside the controls inside of a column of a `Form` control
7863
7794
  * using the `ColumnLayout` control as layout are empty.
@@ -7878,7 +7809,7 @@ declare namespace sap {
7878
7809
 
7879
7810
  interface $BlockLayoutSettings extends sap.ui.core.$ControlSettings {
7880
7811
  /**
7881
- * @SINCE 1.42
7812
+ * @since 1.42
7882
7813
  *
7883
7814
  * Determines the background used for the Layout
7884
7815
  */
@@ -7888,7 +7819,7 @@ declare namespace sap {
7888
7819
  | `{${string}}`;
7889
7820
 
7890
7821
  /**
7891
- * @SINCE 1.52
7822
+ * @since 1.52
7892
7823
  *
7893
7824
  * Keeps the font-size of the contents as is, independent from the screen size.
7894
7825
  */
@@ -7949,7 +7880,7 @@ declare namespace sap {
7949
7880
  | `{${string}}`;
7950
7881
 
7951
7882
  /**
7952
- * @SINCE 1.48
7883
+ * @since 1.48
7953
7884
  *
7954
7885
  * The Background color set from which the background color will be selected. **Note:** backgroundColorSet
7955
7886
  * should be used only in combination with backgroundColorShade.
@@ -7960,7 +7891,7 @@ declare namespace sap {
7960
7891
  | `{${string}}`;
7961
7892
 
7962
7893
  /**
7963
- * @SINCE 1.48
7894
+ * @since 1.48
7964
7895
  *
7965
7896
  * The index of the background color in the color set from which the color will be selected. **Note:** backgroundColorShade
7966
7897
  * should be used only in combination with backgroundColorSet.
@@ -7980,7 +7911,7 @@ declare namespace sap {
7980
7911
  | `{${string}}`;
7981
7912
 
7982
7913
  /**
7983
- * @SINCE 1.56
7914
+ * @since 1.56
7984
7915
  *
7985
7916
  * The link that will replace the title of the cell. **Note:** The only possible value is the `sap.m.Link`
7986
7917
  * control.
@@ -8034,7 +7965,7 @@ declare namespace sap {
8034
7965
  | `{${string}}`;
8035
7966
 
8036
7967
  /**
8037
- * @SINCE 1.42
7968
+ * @since 1.42
8038
7969
  *
8039
7970
  * Defines background type for that row. There might be several rows with the same type
8040
7971
  */
@@ -8053,7 +7984,7 @@ declare namespace sap {
8053
7984
  | `{${string}}`;
8054
7985
 
8055
7986
  /**
8056
- * @SINCE 1.42
7987
+ * @since 1.42
8057
7988
  *
8058
7989
  * Cells that would be accented. *Note:* This association has visual impact only for BlockLayouts with background
8059
7990
  * types "Mixed" and "Accent".
@@ -8122,7 +8053,7 @@ declare namespace sap {
8122
8053
  | `{${string}}`;
8123
8054
 
8124
8055
  /**
8125
- * @SINCE 1.36
8056
+ * @since 1.36
8126
8057
  *
8127
8058
  * Determines whether the side content is on the left or on the right side of the main content.
8128
8059
  */
@@ -8150,11 +8081,13 @@ declare namespace sap {
8150
8081
  | `{${string}}`;
8151
8082
 
8152
8083
  /**
8153
- * @SINCE 1.32
8084
+ * @since 1.32
8154
8085
  *
8155
8086
  * Fires when the current breakpoint has been changed.
8156
8087
  */
8157
- breakpointChanged?: (oEvent: sap.ui.base.Event) => void;
8088
+ breakpointChanged?: (
8089
+ oEvent: sap.ui.base.Event<sap.ui.layout.DynamicSideContent$BreakpointChangedEventParameters>
8090
+ ) => void;
8158
8091
  }
8159
8092
 
8160
8093
  interface $FixFlexSettings extends sap.ui.core.$ControlSettings {
@@ -8187,7 +8120,7 @@ declare namespace sap {
8187
8120
  | `{${string}}`;
8188
8121
 
8189
8122
  /**
8190
- * @SINCE 1.29
8123
+ * @since 1.29
8191
8124
  *
8192
8125
  * Enables scrolling inside the flexible part. The given size is calculated in "px". If the child control
8193
8126
  * in the flexible part is larger than the available flexible size on the screen and if the available size
@@ -8293,7 +8226,7 @@ declare namespace sap {
8293
8226
  | `{${string}}`;
8294
8227
 
8295
8228
  /**
8296
- * @SINCE 1.48.7
8229
+ * @since 1.48.7
8297
8230
  *
8298
8231
  * Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
8299
8232
  */
@@ -8630,7 +8563,9 @@ declare namespace sap {
8630
8563
  /**
8631
8564
  * Fired when contents are resized.
8632
8565
  */
8633
- resize?: (oEvent: sap.ui.base.Event) => void;
8566
+ resize?: (
8567
+ oEvent: sap.ui.base.Event<sap.ui.layout.PaneContainer$ResizeEventParameters>
8568
+ ) => void;
8634
8569
  }
8635
8570
 
8636
8571
  interface $ResponsiveFlowLayoutSettings
@@ -8655,7 +8590,7 @@ declare namespace sap {
8655
8590
  | `{${string}}`;
8656
8591
 
8657
8592
  /**
8658
- * @SINCE 1.48.7
8593
+ * @since 1.48.7
8659
8594
  *
8660
8595
  * Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
8661
8596
  */
@@ -8804,7 +8739,9 @@ declare namespace sap {
8804
8739
  /**
8805
8740
  * Event is fired when contents are resized.
8806
8741
  */
8807
- resize?: (oEvent: sap.ui.base.Event) => void;
8742
+ resize?: (
8743
+ oEvent: sap.ui.base.Event<sap.ui.layout.Splitter$ResizeEventParameters>
8744
+ ) => void;
8808
8745
  }
8809
8746
 
8810
8747
  interface $SplitterLayoutDataSettings
@@ -8865,8 +8802,42 @@ declare namespace sap {
8865
8802
  | `{${string}}`;
8866
8803
  }
8867
8804
 
8805
+ interface DynamicSideContent$BreakpointChangedEventParameters {
8806
+ currentBreakpoint?: string;
8807
+ }
8808
+
8809
+ interface PaneContainer$ResizeEventParameters {
8810
+ /**
8811
+ * An array of values representing the old (pixel)sizes of the split panes, which are inside the pane container.
8812
+ */
8813
+ oldSizes?: float[];
8814
+
8815
+ /**
8816
+ * An array of values representing the new (pixel)sizes of the split panes, which are inside the pane container.
8817
+ */
8818
+ newSizes?: float[];
8819
+ }
8820
+
8821
+ interface Splitter$ResizeEventParameters {
8822
+ /**
8823
+ * The ID of the splitter control. The splitter control can also be accessed by calling getSource() on the
8824
+ * event.
8825
+ */
8826
+ id?: string;
8827
+
8828
+ /**
8829
+ * An array of values representing the old (pixel-)sizes of the splitter contents
8830
+ */
8831
+ oldSizes?: int[];
8832
+
8833
+ /**
8834
+ * An array of values representing the new (pixel-)sizes of the splitter contents
8835
+ */
8836
+ newSizes?: int[];
8837
+ }
8838
+
8868
8839
  /**
8869
- * @SINCE 1.34
8840
+ * @since 1.34
8870
8841
  *
8871
8842
  * The BlockLayout is used to display several objects in a section-based manner. Overview: The BlockLayout
8872
8843
  * uses horizontal and vertical subdivisions, and full-width banners to display a set of elements. By placing
@@ -8881,12 +8852,12 @@ declare namespace sap {
8881
8852
  * - Light - a layout scheme with light colors
8882
8853
  * - Accent - a layout scheme with 11 pre-defined color sets
8883
8854
  * - Dashboard - a layout scheme with additional borders and no background colors Background colors
8884
- * are attached directly to the blocks of the layout.
8855
+ * are attached directly to the blocks of the layout.
8885
8856
  *
8886
- * **Note:** With version 1.48 colors can be set for each individual {@link sap.ui.layout.BlockLayoutCell
8887
- * cell}. There are 11 pre-defined color sets, each with 4 different shades for the SAP Belize theme and
8888
- * 6 different shades for the Quartz and Horizon themes. To change the background of a particular cell,
8889
- * set `backgroundColorSet` (main color) and `backgroundColorShade` (shade).
8857
+ * **Note:** With version 1.48 colors can be set for each individual {@link sap.ui.layout.BlockLayoutCell cell}.
8858
+ * There are 11 pre-defined color sets, each with 4 different shades for the SAP Belize theme and 6 different
8859
+ * shades for the Quartz and Horizon themes. To change the background of a particular cell, set `backgroundColorSet`
8860
+ * (main color) and `backgroundColorShade` (shade).
8890
8861
  *
8891
8862
  * **Note:** Usage of disabled, emphasized or subtle links as titles is not recommended. Dark background
8892
8863
  * designs, for example Accent, are not fully supported with regards to Accessibility when used with links
@@ -8895,11 +8866,11 @@ declare namespace sap {
8895
8866
  * Usage: When to use:
8896
8867
  * - You want to create a catalogue-like page with sections of blocks.
8897
8868
  * - The BlockLayout is intended for developing administrative tools and applications. When not
8898
- * to use:
8899
- * - You want to display properties or features of one content item. Use a {@link sap.uxap.ObjectPageLayout
8900
- * object page} or {@link sap.f.DynamicPage dynamic page} instead. Responsive Behavior:
8869
+ * to use:
8870
+ * - You want to display properties or features of one content item. Use a {@link sap.uxap.ObjectPageLayout object page }
8871
+ * or {@link sap.f.DynamicPage dynamic page} instead. Responsive Behavior:
8901
8872
  * - The breakpoints of the block layout react to the width of the control itself and not to the actual
8902
- * screen size.
8873
+ * screen size.
8903
8874
  * - On small screens all blocks will wrap to a single scrollable column
8904
8875
  */
8905
8876
  class BlockLayout extends sap.ui.core.Control {
@@ -8985,7 +8956,7 @@ declare namespace sap {
8985
8956
  */
8986
8957
  destroyContent(): this;
8987
8958
  /**
8988
- * @SINCE 1.42
8959
+ * @since 1.42
8989
8960
  *
8990
8961
  * Gets current value of property {@link #getBackground background}.
8991
8962
  *
@@ -9003,7 +8974,7 @@ declare namespace sap {
9003
8974
  */
9004
8975
  getContent(): sap.ui.layout.BlockLayoutRow[];
9005
8976
  /**
9006
- * @SINCE 1.52
8977
+ * @since 1.52
9007
8978
  *
9008
8979
  * Gets current value of property {@link #getKeepFontSize keepFontSize}.
9009
8980
  *
@@ -9063,7 +9034,7 @@ declare namespace sap {
9063
9034
  vContent: int | string | sap.ui.layout.BlockLayoutRow
9064
9035
  ): sap.ui.layout.BlockLayoutRow | null;
9065
9036
  /**
9066
- * @SINCE 1.42
9037
+ * @since 1.42
9067
9038
  *
9068
9039
  * Sets a new value for property {@link #getBackground background}.
9069
9040
  *
@@ -9082,7 +9053,7 @@ declare namespace sap {
9082
9053
  sBackground?: sap.ui.layout.BlockBackgroundType
9083
9054
  ): this;
9084
9055
  /**
9085
- * @SINCE 1.52
9056
+ * @since 1.52
9086
9057
  *
9087
9058
  * Sets a new value for property {@link #getKeepFontSize keepFontSize}.
9088
9059
  *
@@ -9102,7 +9073,7 @@ declare namespace sap {
9102
9073
  ): this;
9103
9074
  }
9104
9075
  /**
9105
- * @SINCE 1.34
9076
+ * @since 1.34
9106
9077
  *
9107
9078
  * The BlockLayoutCell is used as an aggregation of the BlockLayoutRow. It contains Controls. The BlockLayoutCell
9108
9079
  * should be used only as aggregation of the BlockLayoutRow.
@@ -9186,7 +9157,7 @@ declare namespace sap {
9186
9157
  */
9187
9158
  destroyContent(): this;
9188
9159
  /**
9189
- * @SINCE 1.56
9160
+ * @since 1.56
9190
9161
  *
9191
9162
  * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
9192
9163
  *
@@ -9194,7 +9165,7 @@ declare namespace sap {
9194
9165
  */
9195
9166
  destroyTitleLink(): this;
9196
9167
  /**
9197
- * @SINCE 1.48
9168
+ * @since 1.48
9198
9169
  *
9199
9170
  * Gets current value of property {@link #getBackgroundColorSet backgroundColorSet}.
9200
9171
  *
@@ -9205,7 +9176,7 @@ declare namespace sap {
9205
9176
  */
9206
9177
  getBackgroundColorSet(): sap.ui.layout.BlockLayoutCellColorSet;
9207
9178
  /**
9208
- * @SINCE 1.48
9179
+ * @since 1.48
9209
9180
  *
9210
9181
  * Gets current value of property {@link #getBackgroundColorShade backgroundColorShade}.
9211
9182
  *
@@ -9252,7 +9223,7 @@ declare namespace sap {
9252
9223
  */
9253
9224
  getTitleLevel(): sap.ui.core.TitleLevel;
9254
9225
  /**
9255
- * @SINCE 1.56
9226
+ * @since 1.56
9256
9227
  *
9257
9228
  * Gets content of aggregation {@link #getTitleLink titleLink}.
9258
9229
  *
@@ -9328,7 +9299,7 @@ declare namespace sap {
9328
9299
  vContent: int | string | sap.ui.core.Control
9329
9300
  ): sap.ui.core.Control | null;
9330
9301
  /**
9331
- * @SINCE 1.48
9302
+ * @since 1.48
9332
9303
  *
9333
9304
  * Sets a new value for property {@link #getBackgroundColorSet backgroundColorSet}.
9334
9305
  *
@@ -9346,7 +9317,7 @@ declare namespace sap {
9346
9317
  sBackgroundColorSet: sap.ui.layout.BlockLayoutCellColorSet
9347
9318
  ): this;
9348
9319
  /**
9349
- * @SINCE 1.48
9320
+ * @since 1.48
9350
9321
  *
9351
9322
  * Sets a new value for property {@link #getBackgroundColorShade backgroundColorShade}.
9352
9323
  *
@@ -9415,7 +9386,7 @@ declare namespace sap {
9415
9386
  sTitleLevel?: sap.ui.core.TitleLevel
9416
9387
  ): this;
9417
9388
  /**
9418
- * @SINCE 1.56
9389
+ * @since 1.56
9419
9390
  *
9420
9391
  * Sets the aggregated {@link #getTitleLink titleLink}.
9421
9392
  *
@@ -9440,7 +9411,7 @@ declare namespace sap {
9440
9411
  ): this;
9441
9412
  }
9442
9413
  /**
9443
- * @SINCE 1.50.0
9414
+ * @since 1.50.0
9444
9415
  *
9445
9416
  * Holds layout data for the BlockLayoutCells contents.
9446
9417
  */
@@ -9619,7 +9590,7 @@ declare namespace sap {
9619
9590
  ): this;
9620
9591
  }
9621
9592
  /**
9622
- * @SINCE 1.34
9593
+ * @since 1.34
9623
9594
  *
9624
9595
  * The BlockLayoutRow is used as an aggregation to the BlockLayout. It aggregates Block Layout cells. The
9625
9596
  * BlockLayoutRow has 2 rendering modes - scrollable and non scrollable.
@@ -9686,7 +9657,7 @@ declare namespace sap {
9686
9657
  */
9687
9658
  static getMetadata(): sap.ui.core.ElementMetadata;
9688
9659
  /**
9689
- * @SINCE 1.42
9660
+ * @since 1.42
9690
9661
  *
9691
9662
  * Adds some accentCell into the association {@link #getAccentCells accentCells}.
9692
9663
  *
@@ -9716,10 +9687,9 @@ declare namespace sap {
9716
9687
  */
9717
9688
  destroyContent(): this;
9718
9689
  /**
9719
- * @SINCE 1.42
9690
+ * @since 1.42
9720
9691
  *
9721
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAccentCells
9722
- * accentCells}.
9692
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAccentCells accentCells}.
9723
9693
  */
9724
9694
  getAccentCells(): sap.ui.core.ID[];
9725
9695
  /**
@@ -9729,7 +9699,7 @@ declare namespace sap {
9729
9699
  */
9730
9700
  getContent(): sap.ui.layout.BlockLayoutCell[];
9731
9701
  /**
9732
- * @SINCE 1.42
9702
+ * @since 1.42
9733
9703
  *
9734
9704
  * Gets current value of property {@link #getRowColorSet rowColorSet}.
9735
9705
  *
@@ -9779,7 +9749,7 @@ declare namespace sap {
9779
9749
  iIndex: int
9780
9750
  ): this;
9781
9751
  /**
9782
- * @SINCE 1.42
9752
+ * @since 1.42
9783
9753
  *
9784
9754
  * Removes an accentCell from the association named {@link #getAccentCells accentCells}.
9785
9755
  *
@@ -9792,7 +9762,7 @@ declare namespace sap {
9792
9762
  vAccentCell: int | sap.ui.core.ID | sap.ui.layout.BlockLayoutCell
9793
9763
  ): sap.ui.core.ID | null;
9794
9764
  /**
9795
- * @SINCE 1.42
9765
+ * @since 1.42
9796
9766
  *
9797
9767
  * Removes all the controls in the association named {@link #getAccentCells accentCells}.
9798
9768
  *
@@ -9819,7 +9789,7 @@ declare namespace sap {
9819
9789
  vContent: int | string | sap.ui.layout.BlockLayoutCell
9820
9790
  ): sap.ui.layout.BlockLayoutCell | null;
9821
9791
  /**
9822
- * @SINCE 1.42
9792
+ * @since 1.42
9823
9793
  *
9824
9794
  * Changes dynamically row color set Note: this might invalidate cells inside and also change color sets
9825
9795
  * of the other BlockLayoutRow-s below it.
@@ -9845,7 +9815,7 @@ declare namespace sap {
9845
9815
  ): this;
9846
9816
  }
9847
9817
  /**
9848
- * @SINCE 1.30
9818
+ * @since 1.30
9849
9819
  *
9850
9820
  * Layout control that allows additional (side) content to be displayed dynamically.
9851
9821
  *
@@ -9883,16 +9853,16 @@ declare namespace sap {
9883
9853
  *
9884
9854
  *
9885
9855
  * - Main vs. side content ratio is 66.666 vs. 33.333 percent (with a minimum of 320px each). If the side
9886
- * content width falls below 320 px, it automatically slides under the main content, unless the app development
9887
- * team specifies that it should disappear.
9856
+ * content width falls below 320 px, it automatically slides under the main content, unless the app development
9857
+ * team specifies that it should disappear.
9888
9858
  *
9889
9859
  * Screen width <= 720 px (for example on a mobile device)
9890
9860
  *
9891
9861
  *
9892
9862
  * - In this case, the side content automatically disappears from the screen (unless specified to stay
9893
- * under the content) and can be triggered from a pre-set trigger (specified within the app). When the side
9894
- * content is triggered, it replaces the main content. We recommend that you always place the trigger for
9895
- * the side content in the same location, such as in the app footer.
9863
+ * under the content) and can be triggered from a pre-set trigger (specified within the app). When the side
9864
+ * content is triggered, it replaces the main content. We recommend that you always place the trigger for
9865
+ * the side content in the same location, such as in the app footer.
9896
9866
  *
9897
9867
  * A special case, allows for comparison mode between the main and side content. In this case, the screen
9898
9868
  * is split into 50:50 percent for main vs. side content. The responsive behavior of the equal split is
@@ -9992,7 +9962,7 @@ declare namespace sap {
9992
9962
  oControl: sap.ui.core.Control
9993
9963
  ): this;
9994
9964
  /**
9995
- * @SINCE 1.32
9965
+ * @since 1.32
9996
9966
  *
9997
9967
  * Attaches event handler `fnFunction` to the {@link #event:breakpointChanged breakpointChanged} event of
9998
9968
  * this `sap.ui.layout.DynamicSideContent`.
@@ -10013,14 +9983,14 @@ declare namespace sap {
10013
9983
  /**
10014
9984
  * The function to be called when the event occurs
10015
9985
  */
10016
- fnFunction: (p1: sap.ui.base.Event) => void,
9986
+ fnFunction: (p1: DynamicSideContent$BreakpointChangedEvent) => void,
10017
9987
  /**
10018
9988
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.DynamicSideContent` itself
10019
9989
  */
10020
9990
  oListener?: object
10021
9991
  ): this;
10022
9992
  /**
10023
- * @SINCE 1.32
9993
+ * @since 1.32
10024
9994
  *
10025
9995
  * Attaches event handler `fnFunction` to the {@link #event:breakpointChanged breakpointChanged} event of
10026
9996
  * this `sap.ui.layout.DynamicSideContent`.
@@ -10036,7 +10006,7 @@ declare namespace sap {
10036
10006
  /**
10037
10007
  * The function to be called when the event occurs
10038
10008
  */
10039
- fnFunction: (p1: sap.ui.base.Event) => void,
10009
+ fnFunction: (p1: DynamicSideContent$BreakpointChangedEvent) => void,
10040
10010
  /**
10041
10011
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.DynamicSideContent` itself
10042
10012
  */
@@ -10055,7 +10025,7 @@ declare namespace sap {
10055
10025
  */
10056
10026
  destroySideContent(): this;
10057
10027
  /**
10058
- * @SINCE 1.32
10028
+ * @since 1.32
10059
10029
  *
10060
10030
  * Detaches event handler `fnFunction` from the {@link #event:breakpointChanged breakpointChanged} event
10061
10031
  * of this `sap.ui.layout.DynamicSideContent`.
@@ -10068,15 +10038,15 @@ declare namespace sap {
10068
10038
  /**
10069
10039
  * The function to be called, when the event occurs
10070
10040
  */
10071
- fnFunction: (p1: sap.ui.base.Event) => void,
10041
+ fnFunction: (p1: DynamicSideContent$BreakpointChangedEvent) => void,
10072
10042
  /**
10073
10043
  * Context object on which the given function had to be called
10074
10044
  */
10075
10045
  oListener?: object
10076
10046
  ): this;
10077
10047
  /**
10078
- * @SINCE 1.32
10079
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10048
+ * @since 1.32
10049
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10080
10050
  *
10081
10051
  * Fires event {@link #event:breakpointChanged breakpointChanged} to attached listeners.
10082
10052
  *
@@ -10086,9 +10056,7 @@ declare namespace sap {
10086
10056
  /**
10087
10057
  * Parameters to pass along with the event
10088
10058
  */
10089
- mParameters?: {
10090
- currentBreakpoint?: string;
10091
- }
10059
+ mParameters?: sap.ui.layout.DynamicSideContent$BreakpointChangedEventParameters
10092
10060
  ): this;
10093
10061
  /**
10094
10062
  * Gets current value of property {@link #getContainerQuery containerQuery}.
@@ -10129,7 +10097,7 @@ declare namespace sap {
10129
10097
  */
10130
10098
  getMainContent(): sap.ui.core.Control[];
10131
10099
  /**
10132
- * @SINCE 1.78
10100
+ * @since 1.78
10133
10101
  *
10134
10102
  * Returns a scroll helper object used to handle scrolling.
10135
10103
  *
@@ -10181,7 +10149,7 @@ declare namespace sap {
10181
10149
  */
10182
10150
  getSideContentFallDown(): sap.ui.layout.SideContentFallDown;
10183
10151
  /**
10184
- * @SINCE 1.36
10152
+ * @since 1.36
10185
10153
  *
10186
10154
  * Gets current value of property {@link #getSideContentPosition sideContentPosition}.
10187
10155
  *
@@ -10387,7 +10355,7 @@ declare namespace sap {
10387
10355
  sSideContentFallDown?: sap.ui.layout.SideContentFallDown
10388
10356
  ): this;
10389
10357
  /**
10390
- * @SINCE 1.36
10358
+ * @since 1.36
10391
10359
  *
10392
10360
  * Sets a new value for property {@link #getSideContentPosition sideContentPosition}.
10393
10361
  *
@@ -10430,7 +10398,7 @@ declare namespace sap {
10430
10398
  toggle(): this;
10431
10399
  }
10432
10400
  /**
10433
- * @SINCE 1.25.0
10401
+ * @since 1.25.0
10434
10402
  *
10435
10403
  * A layout container with a fixed and a flexible part. Overview: The FixFlex control builds the container
10436
10404
  * for a layout with a fixed and a flexible part. The flexible container adapts its size to the fix container.
@@ -10438,19 +10406,19 @@ declare namespace sap {
10438
10406
  * - The fix container can hold any number of controls, while the flexible container can hold only one
10439
10407
  *
10440
10408
  * - In order for the FixFlex to stretch properly, the parent element, in which the control is placed,
10441
- * needs to have a specified height or needs to have an absolute position.
10409
+ * needs to have a specified height or needs to have an absolute position.
10442
10410
  * - Avoid nesting FixFlex in other flexbox-based layout controls ({@link sap.ui.layout.FixFlex FixFlex},
10443
- * {@link sap.m.FlexBox FlexBox}, Hbox, Vbox). Otherwise, contents may be not accessible or multiple scrollbars
10444
- * can appear. Structure: The behavior of the FixFlex is controlled by the following properties:
10411
+ * {@link sap.m.FlexBox FlexBox}, Hbox, Vbox). Otherwise, contents may be not accessible or multiple scrollbars
10412
+ * can appear. Structure: The behavior of the FixFlex is controlled by the following properties:
10445
10413
  *
10446
10414
  * - `fixContentSize` - The width/height of the fix part of the control
10447
10415
  * - `fixFirst` - The ordering of the fix and flex part
10448
10416
  * - `minFlexSize` - Scrolling inside the flex part, if its contents are large
10449
10417
  * - `vertical` - Alignment of the FixFlex control Responsive Behavior:
10450
10418
  * - If the child control of the flex or the fix container has width/height bigger than the container
10451
- * itself, the child control will be cropped in the view.
10419
+ * itself, the child control will be cropped in the view.
10452
10420
  * - If minFlexSize is set, then a scrollbar is shown in the flexible part, depending on the `vertical`
10453
- * property.
10421
+ * property.
10454
10422
  */
10455
10423
  class FixFlex extends sap.ui.core.Control {
10456
10424
  /**
@@ -10572,7 +10540,7 @@ declare namespace sap {
10572
10540
  */
10573
10541
  getFlexContent(): sap.ui.core.Control;
10574
10542
  /**
10575
- * @SINCE 1.29
10543
+ * @since 1.29
10576
10544
  *
10577
10545
  * Gets current value of property {@link #getMinFlexSize minFlexSize}.
10578
10546
  *
@@ -10694,7 +10662,7 @@ declare namespace sap {
10694
10662
  oFlexContent: sap.ui.core.Control
10695
10663
  ): this;
10696
10664
  /**
10697
- * @SINCE 1.29
10665
+ * @since 1.29
10698
10666
  *
10699
10667
  * Sets a new value for property {@link #getMinFlexSize minFlexSize}.
10700
10668
  *
@@ -10735,7 +10703,7 @@ declare namespace sap {
10735
10703
  ): this;
10736
10704
  }
10737
10705
  /**
10738
- * @SINCE 1.15.0
10706
+ * @since 1.15.0
10739
10707
  *
10740
10708
  * A layout control which positions its child controls in a 12 column flow layout.
10741
10709
  *
@@ -10748,10 +10716,10 @@ declare namespace sap {
10748
10716
  *
10749
10717
  * **Notes:**
10750
10718
  * - The visibility of the child control does not affect the horizontal space it occupies, meaning that
10751
- * even if the control is not visible, its horizontal space still exists, even if it is empty.
10719
+ * even if the control is not visible, its horizontal space still exists, even if it is empty.
10752
10720
  * - If it gets wider, the content of the columns is designed to overflow outside of its dimensions.
10753
- * An additional `sapUiRespGridOverflowHidden` CSS class should be added to the control in order to hide
10754
- * the overflowing part of it.
10721
+ * An additional `sapUiRespGridOverflowHidden` CSS class should be added to the control in order to hide
10722
+ * the overflowing part of it.
10755
10723
  */
10756
10724
  class Grid extends sap.ui.core.Control {
10757
10725
  /**
@@ -10762,8 +10730,8 @@ declare namespace sap {
10762
10730
  * of the syntax of the settings object.
10763
10731
  * See:
10764
10732
  * {@link fiori:https://experience.sap.com/fiori-design-web/grid-layout/#responsive-grid Grid}
10765
- * {@link topic:43ae317cf39640a88bc8be979d2671df Grid}
10766
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
10733
+ * {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
10734
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
10767
10735
  */
10768
10736
  constructor(
10769
10737
  /**
@@ -10779,8 +10747,8 @@ declare namespace sap {
10779
10747
  * of the syntax of the settings object.
10780
10748
  * See:
10781
10749
  * {@link fiori:https://experience.sap.com/fiori-design-web/grid-layout/#responsive-grid Grid}
10782
- * {@link topic:43ae317cf39640a88bc8be979d2671df Grid}
10783
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
10750
+ * {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
10751
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
10784
10752
  */
10785
10753
  constructor(
10786
10754
  /**
@@ -10823,7 +10791,7 @@ declare namespace sap {
10823
10791
  */
10824
10792
  static getMetadata(): sap.ui.core.ElementMetadata;
10825
10793
  /**
10826
- * @SINCE 1.48.7
10794
+ * @since 1.48.7
10827
10795
  *
10828
10796
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
10829
10797
  *
@@ -10853,7 +10821,7 @@ declare namespace sap {
10853
10821
  */
10854
10822
  destroyContent(): this;
10855
10823
  /**
10856
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
10824
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
10857
10825
  *
10858
10826
  * Returns the `Grid` accessibility information.
10859
10827
  * See:
@@ -10863,10 +10831,9 @@ declare namespace sap {
10863
10831
  */
10864
10832
  getAccessibilityInfo(): object;
10865
10833
  /**
10866
- * @SINCE 1.48.7
10834
+ * @since 1.48.7
10867
10835
  *
10868
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
10869
- * ariaLabelledBy}.
10836
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
10870
10837
  */
10871
10838
  getAriaLabelledBy(): sap.ui.core.ID[];
10872
10839
  /**
@@ -10987,7 +10954,7 @@ declare namespace sap {
10987
10954
  iIndex: int
10988
10955
  ): this;
10989
10956
  /**
10990
- * @SINCE 1.48.7
10957
+ * @since 1.48.7
10991
10958
  *
10992
10959
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
10993
10960
  *
@@ -11003,7 +10970,7 @@ declare namespace sap {
11003
10970
  */
11004
10971
  removeAllContent(): sap.ui.core.Control[];
11005
10972
  /**
11006
- * @SINCE 1.48.7
10973
+ * @since 1.48.7
11007
10974
  *
11008
10975
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
11009
10976
  *
@@ -11159,7 +11126,7 @@ declare namespace sap {
11159
11126
  ): this;
11160
11127
  }
11161
11128
  /**
11162
- * @SINCE 1.15.0
11129
+ * @since 1.15.0
11163
11130
  *
11164
11131
  * Defines layout data for the {@link sap.ui.layout.Grid}.
11165
11132
  *
@@ -11175,8 +11142,8 @@ declare namespace sap {
11175
11142
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
11176
11143
  * of the syntax of the settings object.
11177
11144
  * See:
11178
- * {@link topic:43ae317cf39640a88bc8be979d2671df Grid}
11179
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
11145
+ * {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
11146
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
11180
11147
  */
11181
11148
  constructor(
11182
11149
  /**
@@ -11191,8 +11158,8 @@ declare namespace sap {
11191
11158
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
11192
11159
  * of the syntax of the settings object.
11193
11160
  * See:
11194
- * {@link topic:43ae317cf39640a88bc8be979d2671df Grid}
11195
- * {@link topic:32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
11161
+ * {@link https://ui5.sap.com/#/topic/43ae317cf39640a88bc8be979d2671df Grid}
11162
+ * {@link https://ui5.sap.com/#/topic/32d4b9c2b981425dbc374d3e9d5d0c2e Grid Controls}
11196
11163
  */
11197
11164
  constructor(
11198
11165
  /**
@@ -12068,7 +12035,7 @@ declare namespace sap {
12068
12035
  ): this;
12069
12036
  }
12070
12037
  /**
12071
- * @SINCE 1.16.0
12038
+ * @since 1.16.0
12072
12039
  *
12073
12040
  * A layout that provides support for horizontal alignment of controls
12074
12041
  */
@@ -12151,7 +12118,7 @@ declare namespace sap {
12151
12118
  */
12152
12119
  destroyContent(): this;
12153
12120
  /**
12154
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12121
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12155
12122
  *
12156
12123
  * See:
12157
12124
  * sap.ui.core.Control#getAccessibilityInfo
@@ -12244,7 +12211,7 @@ declare namespace sap {
12244
12211
  ): this;
12245
12212
  }
12246
12213
  /**
12247
- * @SINCE 1.38
12214
+ * @since 1.38
12248
12215
  *
12249
12216
  * PaneContainer is an abstraction of Splitter.
12250
12217
  *
@@ -12341,7 +12308,7 @@ declare namespace sap {
12341
12308
  /**
12342
12309
  * The function to be called when the event occurs
12343
12310
  */
12344
- fnFunction: (p1: sap.ui.base.Event) => void,
12311
+ fnFunction: (p1: PaneContainer$ResizeEvent) => void,
12345
12312
  /**
12346
12313
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.PaneContainer` itself
12347
12314
  */
@@ -12361,7 +12328,7 @@ declare namespace sap {
12361
12328
  /**
12362
12329
  * The function to be called when the event occurs
12363
12330
  */
12364
- fnFunction: (p1: sap.ui.base.Event) => void,
12331
+ fnFunction: (p1: PaneContainer$ResizeEvent) => void,
12365
12332
  /**
12366
12333
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.PaneContainer` itself
12367
12334
  */
@@ -12384,14 +12351,14 @@ declare namespace sap {
12384
12351
  /**
12385
12352
  * The function to be called, when the event occurs
12386
12353
  */
12387
- fnFunction: (p1: sap.ui.base.Event) => void,
12354
+ fnFunction: (p1: PaneContainer$ResizeEvent) => void,
12388
12355
  /**
12389
12356
  * Context object on which the given function had to be called
12390
12357
  */
12391
12358
  oListener?: object
12392
12359
  ): this;
12393
12360
  /**
12394
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
12361
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
12395
12362
  *
12396
12363
  * Fires event {@link #event:resize resize} to attached listeners.
12397
12364
  *
@@ -12401,16 +12368,7 @@ declare namespace sap {
12401
12368
  /**
12402
12369
  * Parameters to pass along with the event
12403
12370
  */
12404
- mParameters?: {
12405
- /**
12406
- * An array of values representing the old (pixel)sizes of the split panes, which are inside the pane container.
12407
- */
12408
- oldSizes?: float[];
12409
- /**
12410
- * An array of values representing the new (pixel)sizes of the split panes, which are inside the pane container.
12411
- */
12412
- newSizes?: float[];
12413
- }
12371
+ mParameters?: sap.ui.layout.PaneContainer$ResizeEventParameters
12414
12372
  ): this;
12415
12373
  /**
12416
12374
  * Getter for property layoutData.
@@ -12490,7 +12448,7 @@ declare namespace sap {
12490
12448
  ): this;
12491
12449
  }
12492
12450
  /**
12493
- * @SINCE 1.16.0
12451
+ * @since 1.16.0
12494
12452
  *
12495
12453
  * This is a layout where several controls can be added. These controls are blown up to fit in an entire
12496
12454
  * row. If the window resizes, the controls are moved between the rows and resized again.
@@ -12557,7 +12515,7 @@ declare namespace sap {
12557
12515
  */
12558
12516
  static getMetadata(): sap.ui.core.ElementMetadata;
12559
12517
  /**
12560
- * @SINCE 1.48.7
12518
+ * @since 1.48.7
12561
12519
  *
12562
12520
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
12563
12521
  *
@@ -12586,10 +12544,9 @@ declare namespace sap {
12586
12544
  */
12587
12545
  destroyContent(): this;
12588
12546
  /**
12589
- * @SINCE 1.48.7
12547
+ * @since 1.48.7
12590
12548
  *
12591
- * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
12592
- * ariaLabelledBy}.
12549
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy ariaLabelledBy}.
12593
12550
  */
12594
12551
  getAriaLabelledBy(): sap.ui.core.ID[];
12595
12552
  /**
@@ -12637,7 +12594,7 @@ declare namespace sap {
12637
12594
  iIndex: int
12638
12595
  ): void;
12639
12596
  /**
12640
- * @SINCE 1.48.7
12597
+ * @since 1.48.7
12641
12598
  *
12642
12599
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
12643
12600
  *
@@ -12653,7 +12610,7 @@ declare namespace sap {
12653
12610
  */
12654
12611
  removeAllContent(): sap.ui.core.Control[];
12655
12612
  /**
12656
- * @SINCE 1.48.7
12613
+ * @since 1.48.7
12657
12614
  *
12658
12615
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
12659
12616
  *
@@ -12695,7 +12652,7 @@ declare namespace sap {
12695
12652
  ): this;
12696
12653
  }
12697
12654
  /**
12698
- * @SINCE 1.16.0
12655
+ * @since 1.16.0
12699
12656
  *
12700
12657
  * This is a LayoutData element that can be added to a control if this control is used within a ResponsiveFlowLayout.
12701
12658
  */
@@ -12907,7 +12864,7 @@ declare namespace sap {
12907
12864
  ): this;
12908
12865
  }
12909
12866
  /**
12910
- * @SINCE 1.38
12867
+ * @since 1.38
12911
12868
  *
12912
12869
  * A responsive splitter which divides the application into several areas. Overview: The responsive splitter
12913
12870
  * layout structures complex applications into defined areas. These areas may be resizable and are either
@@ -12916,15 +12873,15 @@ declare namespace sap {
12916
12873
  * The control is intended for developing administrative tools and applications. Structure: The responsive
12917
12874
  * splitter holds the following hierarchy of containers and controls:
12918
12875
  * - {@link sap.ui.layout.PaneContainer Pane Container} - holds one or more Split Panes and determines
12919
- * the pane orientation. The pane which is stored in `rootPaneContainer` holds all other pane containers
12920
- * and split panes.
12876
+ * the pane orientation. The pane which is stored in `rootPaneContainer` holds all other pane containers
12877
+ * and split panes.
12921
12878
  * - {@link sap.ui.layout.SplitPane Split Pane} - independent containers that may interact with one another.
12922
- * Each pane can hold only one control. Usage: When to use:
12879
+ * Each pane can hold only one control. Usage: When to use:
12923
12880
  * - The application has to display several areas side by side that must be resizable.
12924
12881
  * - The application must work on a range of different devices in a responsive manner. Responsive
12925
- * Behavior:
12882
+ * Behavior:
12926
12883
  * - As soon as views are in the off-canvas mode, the pagination bar at the bottom of the application
12927
- * allows the user to switch between them.
12884
+ * allows the user to switch between them.
12928
12885
  * - On touch-enabled devices the bars of the splitter can be moved by touching the grip.
12929
12886
  * - Double-clicking on a splitter will collapse or expand it back to its original position.
12930
12887
  *
@@ -13093,16 +13050,16 @@ declare namespace sap {
13093
13050
  ): this;
13094
13051
  }
13095
13052
  /**
13096
- * @SINCE 1.38
13053
+ * @since 1.38
13097
13054
  *
13098
13055
  * SplitPane is a container of a single control in a responsive splitter. Could be used as an aggregation
13099
13056
  * of a {@link sap.ui.layout.PaneContainer PaneContainer}.
13100
13057
  *
13101
13058
  * The behavior of the Split Panes is handled by the following properties:
13102
13059
  * - `requiredParentWidth` - determines the minimum width of the parent container (in pixels). When it
13103
- * is reached, the pane will be hidden from the screen.
13060
+ * is reached, the pane will be hidden from the screen.
13104
13061
  * - `demandPane` - determines if the pane is reachable via the pagination bar after it has been hidden
13105
- * from the screen.
13062
+ * from the screen.
13106
13063
  */
13107
13064
  class SplitPane extends sap.ui.core.Element {
13108
13065
  /**
@@ -13252,7 +13209,7 @@ declare namespace sap {
13252
13209
  ): this;
13253
13210
  }
13254
13211
  /**
13255
- * @SINCE 1.22.0
13212
+ * @since 1.22.0
13256
13213
  *
13257
13214
  * Overview: A layout that contains several content areas. The content that is added to the splitter should
13258
13215
  * contain `layoutData` of type {@link sap.ui.layout.SplitterLayoutData SplitterLayoutData} which defines
@@ -13370,7 +13327,7 @@ declare namespace sap {
13370
13327
  /**
13371
13328
  * The function to be called when the event occurs
13372
13329
  */
13373
- fnFunction: (p1: sap.ui.base.Event) => void,
13330
+ fnFunction: (p1: Splitter$ResizeEvent) => void,
13374
13331
  /**
13375
13332
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.Splitter` itself
13376
13333
  */
@@ -13390,7 +13347,7 @@ declare namespace sap {
13390
13347
  /**
13391
13348
  * The function to be called when the event occurs
13392
13349
  */
13393
- fnFunction: (p1: sap.ui.base.Event) => void,
13350
+ fnFunction: (p1: Splitter$ResizeEvent) => void,
13394
13351
  /**
13395
13352
  * Context object to call the event handler with. Defaults to this `sap.ui.layout.Splitter` itself
13396
13353
  */
@@ -13413,7 +13370,7 @@ declare namespace sap {
13413
13370
  /**
13414
13371
  * The function to be called, when the event occurs
13415
13372
  */
13416
- fnFunction: (p1: sap.ui.base.Event) => void,
13373
+ fnFunction: (p1: Splitter$ResizeEvent) => void,
13417
13374
  /**
13418
13375
  * Context object on which the given function had to be called
13419
13376
  */
@@ -13423,7 +13380,7 @@ declare namespace sap {
13423
13380
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13424
13381
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13425
13382
  * enough to make it part of the official Splitter interface
13426
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13383
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13427
13384
  *
13428
13385
  * Disables the resize handler for this control, this leads to an automatic resize of the contents whenever
13429
13386
  * the control changes its size. The resize handler is enabled in every control instance by default. For
@@ -13437,7 +13394,7 @@ declare namespace sap {
13437
13394
  bTemporarily?: boolean
13438
13395
  ): void;
13439
13396
  /**
13440
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13397
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13441
13398
  *
13442
13399
  * Disables the resizing of the Splitter contents via keyboard. This changes the Splitter bars to non-focusable
13443
13400
  * elements.
@@ -13447,7 +13404,7 @@ declare namespace sap {
13447
13404
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13448
13405
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13449
13406
  * enough to make it part of the official Splitter interface
13450
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13407
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13451
13408
  *
13452
13409
  * Disables recalculation and resize of the splitter contents while dragging the splitter bar. This means
13453
13410
  * that the contents are resized only once after moving the splitter bar.
@@ -13457,7 +13414,7 @@ declare namespace sap {
13457
13414
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13458
13415
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13459
13416
  * enough to make it part of the official Splitter interface
13460
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13417
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13461
13418
  *
13462
13419
  * Enables the resize handler for this control, this leads to an automatic resize of the contents whenever
13463
13420
  * the control changes its size. The resize handler is enabled in every control instance by default. For
@@ -13470,7 +13427,7 @@ declare namespace sap {
13470
13427
  bTemporarily?: boolean
13471
13428
  ): void;
13472
13429
  /**
13473
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13430
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13474
13431
  *
13475
13432
  * Enables the resizing of the Splitter contents via keyboard. This makes the Splitter bars focusable elements.
13476
13433
  */
@@ -13479,14 +13436,14 @@ declare namespace sap {
13479
13436
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13480
13437
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13481
13438
  * enough to make it part of the official Splitter interface
13482
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13439
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13483
13440
  *
13484
13441
  * Enables recalculation and resize of the splitter contents while dragging the splitter bar. This means
13485
13442
  * that the contents are resized several times per second when moving the splitter bar.
13486
13443
  */
13487
13444
  enableLiveResize(): void;
13488
13445
  /**
13489
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13446
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13490
13447
  *
13491
13448
  * Fires event {@link #event:resize resize} to attached listeners.
13492
13449
  *
@@ -13496,27 +13453,13 @@ declare namespace sap {
13496
13453
  /**
13497
13454
  * Parameters to pass along with the event
13498
13455
  */
13499
- mParameters?: {
13500
- /**
13501
- * The ID of the splitter control. The splitter control can also be accessed by calling getSource() on the
13502
- * event.
13503
- */
13504
- id?: string;
13505
- /**
13506
- * An array of values representing the old (pixel-)sizes of the splitter contents
13507
- */
13508
- oldSizes?: int[];
13509
- /**
13510
- * An array of values representing the new (pixel-)sizes of the splitter contents
13511
- */
13512
- newSizes?: int[];
13513
- }
13456
+ mParameters?: sap.ui.layout.Splitter$ResizeEventParameters
13514
13457
  ): this;
13515
13458
  /**
13516
13459
  * @deprecated (since 1.21) - This method is declared as protected in order to assess the need for this
13517
13460
  * feature. It is declared as deprecated because the API might change in case the need for this is high
13518
13461
  * enough to make it part of the official Splitter interface
13519
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13462
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13520
13463
  *
13521
13464
  * Returns the current actual content sizes as pixel value - these values can change with every resize.
13522
13465
  *
@@ -13675,8 +13618,8 @@ declare namespace sap {
13675
13618
  ): void;
13676
13619
  }
13677
13620
  /**
13678
- * @SINCE 1.22.0
13679
- * @EXPERIMENTAL (since 1.22.0) - API is not yet finished and might change completely
13621
+ * @since 1.22.0
13622
+ * @experimental (since 1.22.0) - API is not yet finished and might change completely
13680
13623
  *
13681
13624
  * Holds layout data for the splitter contents. Allowed size values are numeric values ending in "px" and
13682
13625
  * "%" and the special case "auto". (The CSS value "auto" is used internally to recalculate the size of
@@ -13832,7 +13775,7 @@ declare namespace sap {
13832
13775
  ): this;
13833
13776
  }
13834
13777
  /**
13835
- * @SINCE 1.16.0
13778
+ * @since 1.16.0
13836
13779
  *
13837
13780
  * In this layout the content controls are rendered one below the other.
13838
13781
  */
@@ -13915,7 +13858,7 @@ declare namespace sap {
13915
13858
  */
13916
13859
  destroyContent(): this;
13917
13860
  /**
13918
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
13861
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
13919
13862
  *
13920
13863
  * See:
13921
13864
  * sap.ui.core.Control#getAccessibilityInfo
@@ -14031,7 +13974,7 @@ declare namespace sap {
14031
13974
  ): this;
14032
13975
  }
14033
13976
  /**
14034
- * @SINCE 1.36.0
13977
+ * @since 1.36.0
14035
13978
  *
14036
13979
  * Available Background Design.
14037
13980
  */
@@ -14079,7 +14022,7 @@ declare namespace sap {
14079
14022
  Mixed = "Mixed",
14080
14023
  }
14081
14024
  /**
14082
- * @SINCE 1.48
14025
+ * @since 1.48
14083
14026
  *
14084
14027
  * A string type that is used inside the BlockLayoutCell to set a predefined set of colors for the cells.
14085
14028
  */
@@ -14130,7 +14073,7 @@ declare namespace sap {
14130
14073
  ColorSet9 = "ColorSet9",
14131
14074
  }
14132
14075
  /**
14133
- * @SINCE 1.48
14076
+ * @since 1.48
14134
14077
  *
14135
14078
  * A string type that is used inside the BlockLayoutCell to set a predefined set of color shades for the
14136
14079
  * cells. The colors are defined with sap.ui.layout.BlockLayoutCellColorSet. And this is for the shades
@@ -14210,7 +14153,7 @@ declare namespace sap {
14210
14153
  Right = "Right",
14211
14154
  }
14212
14155
  /**
14213
- * @SINCE 1.30
14156
+ * @since 1.30
14214
14157
  *
14215
14158
  * Types of the DynamicSideContent FallDown options
14216
14159
  */
@@ -14248,7 +14191,7 @@ declare namespace sap {
14248
14191
  End = "End",
14249
14192
  }
14250
14193
  /**
14251
- * @SINCE 1.30
14194
+ * @since 1.30
14252
14195
  *
14253
14196
  * Types of the DynamicSideContent Visibility options
14254
14197
  */
@@ -14275,7 +14218,7 @@ declare namespace sap {
14275
14218
  ShowAboveS = "ShowAboveS",
14276
14219
  }
14277
14220
  /**
14278
- * @SINCE 1.61.0
14221
+ * @since 1.61.0
14279
14222
  *
14280
14223
  * A string type that represents how many boxes per row should be displayed for each screen size. The breakpoints
14281
14224
  * are for extra large (XL), large (L), medium (M) and small (S) screen sizes.
@@ -14303,6 +14246,30 @@ declare namespace sap {
14303
14246
  * **Note:** The parameters must be provided in the order .
14304
14247
  */
14305
14248
  type GridSpan = string;
14249
+
14250
+ /**
14251
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'DynamicSideContent$BreakpointChangedEventParameters'
14252
+ * in 1.115.1 and any later releases.
14253
+ */
14254
+ type $DynamicSideContentBreakpointChangedEventParameters = sap.ui.layout.DynamicSideContent$BreakpointChangedEventParameters;
14255
+
14256
+ type DynamicSideContent$BreakpointChangedEvent = sap.ui.base.Event<DynamicSideContent$BreakpointChangedEventParameters>;
14257
+
14258
+ /**
14259
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'PaneContainer$ResizeEventParameters'
14260
+ * in 1.115.1 and any later releases.
14261
+ */
14262
+ type $PaneContainerResizeEventParameters = sap.ui.layout.PaneContainer$ResizeEventParameters;
14263
+
14264
+ type PaneContainer$ResizeEvent = sap.ui.base.Event<PaneContainer$ResizeEventParameters>;
14265
+
14266
+ /**
14267
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Splitter$ResizeEventParameters'
14268
+ * in 1.115.1 and any later releases.
14269
+ */
14270
+ type $SplitterResizeEventParameters = sap.ui.layout.Splitter$ResizeEventParameters;
14271
+
14272
+ type Splitter$ResizeEvent = sap.ui.base.Event<Splitter$ResizeEventParameters>;
14306
14273
  }
14307
14274
  }
14308
14275