@sapui5/ts-types 1.101.1 → 1.102.2

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.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +375 -29
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1785 -100
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +70 -2
  11. package/types/sap.fe.macros.d.ts +78 -34
  12. package/types/sap.fe.navigation.d.ts +144 -4
  13. package/types/sap.fe.templates.d.ts +26 -5
  14. package/types/sap.fe.test.d.ts +497 -2
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7209 -505
  17. package/types/sap.insights.d.ts +21 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16677 -1155
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +171 -15
  25. package/types/sap.sac.df.d.ts +1430 -215
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5515 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +157 -69
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +3880 -276
  34. package/types/sap.ui.core.d.ts +6268 -313
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +238 -64
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +30 -1
  47. package/types/sap.ui.table.d.ts +1050 -80
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +1977 -97
  52. package/types/sap.ui.vk.d.ts +5353 -310
  53. package/types/sap.ui.vtm.d.ts +1133 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +1488 -49
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +902 -87
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +165 -20
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -13,28 +13,32 @@ declare namespace sap {
13
13
  */
14
14
  width?:
15
15
  | sap.ui.core.CSSSize
16
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
16
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
17
+ | `{${string}}`;
17
18
 
18
19
  /**
19
20
  * The overall height of the control. When not set, 100% is automatically set.
20
21
  */
21
22
  height?:
22
23
  | sap.ui.core.CSSSize
23
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
24
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
25
+ | `{${string}}`;
24
26
 
25
27
  /**
26
28
  * 'Auto', 'Scroll', 'Hidden', and 'None' are the available values for setting the vertical scrolling mode.
27
29
  */
28
30
  verticalScrolling?:
29
31
  | sap.ui.core.Scrolling
30
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
32
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
33
+ | `{${string}}`;
31
34
 
32
35
  /**
33
36
  * 'Auto', 'Scroll', 'Hidden', and 'None' are the available values for setting the vertical scrolling mode.
34
37
  */
35
38
  horizontalScrolling?:
36
39
  | sap.ui.core.Scrolling
37
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
40
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
41
+ | `{${string}}`;
38
42
 
39
43
  /**
40
44
  * Positioned child controls within the layout
@@ -42,7 +46,8 @@ declare namespace sap {
42
46
  positions?:
43
47
  | sap.zen.commons.layout.PositionContainer[]
44
48
  | sap.zen.commons.layout.PositionContainer
45
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
49
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
50
+ | `{${string}}`;
46
51
  }
47
52
 
48
53
  interface $MatrixLayoutSettings extends sap.ui.core.$ControlSettings {
@@ -51,14 +56,16 @@ declare namespace sap {
51
56
  */
52
57
  width?:
53
58
  | sap.ui.core.CSSSize
54
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
59
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
60
+ | `{${string}}`;
55
61
 
56
62
  /**
57
63
  * CSS height of the matrix layout.
58
64
  */
59
65
  height?:
60
66
  | sap.ui.core.CSSSize
61
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
67
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
68
+ | `{${string}}`;
62
69
 
63
70
  /**
64
71
  * Sets the table layout. If fixed the width parameter of a column has priority, if not the width of the
@@ -66,12 +73,18 @@ declare namespace sap {
66
73
  * of the MatrixLayout should be provided. Otherwise the column width displayed could be different than
67
74
  * the given ones because of browser dependend optimazations.
68
75
  */
69
- layoutFixed?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
76
+ layoutFixed?:
77
+ | boolean
78
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
79
+ | `{${string}}`;
70
80
 
71
81
  /**
72
82
  * Number of columns. If not specified, the number of columns will be determined from the given cells.
73
83
  */
74
- columns?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
84
+ columns?:
85
+ | int
86
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
87
+ | `{${string}}`;
75
88
 
76
89
  /**
77
90
  * Widths of the columns. Use an array to define the widths of the columns. If a column shall have an automatical
@@ -79,7 +92,8 @@ declare namespace sap {
79
92
  */
80
93
  widths?:
81
94
  | sap.ui.core.CSSSize[]
82
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
95
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
96
+ | `{${string}}`;
83
97
 
84
98
  /**
85
99
  * The matrix layout's individual rows.
@@ -87,7 +101,8 @@ declare namespace sap {
87
101
  rows?:
88
102
  | sap.zen.commons.layout.MatrixLayoutRow[]
89
103
  | sap.zen.commons.layout.MatrixLayoutRow
90
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
104
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
105
+ | `{${string}}`;
91
106
  }
92
107
 
93
108
  interface $MatrixLayoutCellSettings
@@ -100,7 +115,8 @@ declare namespace sap {
100
115
  */
101
116
  height?:
102
117
  | sap.ui.core.CSSSize
103
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
118
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
119
+ | `{${string}}`;
104
120
 
105
121
  /**
106
122
  * The matrix layout row's individual cells.
@@ -108,7 +124,8 @@ declare namespace sap {
108
124
  cells?:
109
125
  | sap.zen.commons.layout.MatrixLayoutCell[]
110
126
  | sap.zen.commons.layout.MatrixLayoutCell
111
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
127
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
128
+ | `{${string}}`;
112
129
  }
113
130
 
114
131
  interface $PositionContainerSettings
@@ -118,28 +135,32 @@ declare namespace sap {
118
135
  */
119
136
  top?:
120
137
  | sap.ui.core.CSSSize
121
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
138
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
139
+ | `{${string}}`;
122
140
 
123
141
  /**
124
142
  * Defines the distance to the bottom of the layout (as specified in HTML)
125
143
  */
126
144
  bottom?:
127
145
  | sap.ui.core.CSSSize
128
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
146
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
147
+ | `{${string}}`;
129
148
 
130
149
  /**
131
150
  * Defines the distance to the left of the layout (as specified in HTML)
132
151
  */
133
152
  left?:
134
153
  | sap.ui.core.CSSSize
135
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
154
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
155
+ | `{${string}}`;
136
156
 
137
157
  /**
138
158
  * Defines the distance to the right of the layout (as specified in HTML)
139
159
  */
140
160
  right?:
141
161
  | sap.ui.core.CSSSize
142
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
162
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
163
+ | `{${string}}`;
143
164
 
144
165
  /**
145
166
  * Indicates whether this container shall be centered horizontally within the AbsoluteLayout area. The values
@@ -147,7 +168,8 @@ declare namespace sap {
147
168
  */
148
169
  centerHorizontally?:
149
170
  | boolean
150
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
171
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
172
+ | `{${string}}`;
151
173
 
152
174
  /**
153
175
  * Indicates whether this container should be centered vertically within the AbsoluteLayout area. The values
@@ -155,7 +177,8 @@ declare namespace sap {
155
177
  */
156
178
  centerVertically?:
157
179
  | boolean
158
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
180
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
181
+ | `{${string}}`;
159
182
 
160
183
  /**
161
184
  * Child control of the position container
@@ -205,6 +228,8 @@ declare namespace sap {
205
228
  * it with the information contained in `oClassInfo`.
206
229
  *
207
230
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
231
+ *
232
+ * @returns Created class / constructor function
208
233
  */
209
234
  static extend<T extends Record<string, unknown>>(
210
235
  /**
@@ -226,6 +251,8 @@ declare namespace sap {
226
251
  ): Function;
227
252
  /**
228
253
  * Returns a metadata object for class sap.zen.commons.layout.AbsoluteLayout.
254
+ *
255
+ * @returns Metadata object describing this class
229
256
  */
230
257
  static getMetadata(): sap.ui.core.ElementMetadata;
231
258
  /**
@@ -246,6 +273,8 @@ declare namespace sap {
246
273
  ): sap.zen.commons.layout.AbsoluteLayout;
247
274
  /**
248
275
  * Adds some position to the aggregation {@link #getPositions positions}.
276
+ *
277
+ * @returns Reference to `this` in order to allow method chaining
249
278
  */
250
279
  addPosition(
251
280
  /**
@@ -260,6 +289,8 @@ declare namespace sap {
260
289
  destroyContent(): sap.zen.commons.layout.AbsoluteLayout;
261
290
  /**
262
291
  * Destroys all the positions in the aggregation {@link #getPositions positions}.
292
+ *
293
+ * @returns Reference to `this` in order to allow method chaining
263
294
  */
264
295
  destroyPositions(): this;
265
296
  /**
@@ -272,6 +303,8 @@ declare namespace sap {
272
303
  * The overall height of the control. When not set, 100% is automatically set.
273
304
  *
274
305
  * Default value is `"100%"`.
306
+ *
307
+ * @returns Value of property `height`
275
308
  */
276
309
  getHeight(): sap.ui.core.CSSSize;
277
310
  /**
@@ -280,6 +313,8 @@ declare namespace sap {
280
313
  * 'Auto', 'Scroll', 'Hidden', and 'None' are the available values for setting the vertical scrolling mode.
281
314
  *
282
315
  * Default value is `Hidden`.
316
+ *
317
+ * @returns Value of property `horizontalScrolling`
283
318
  */
284
319
  getHorizontalScrolling(): sap.ui.core.Scrolling;
285
320
  /**
@@ -294,6 +329,8 @@ declare namespace sap {
294
329
  * 'Auto', 'Scroll', 'Hidden', and 'None' are the available values for setting the vertical scrolling mode.
295
330
  *
296
331
  * Default value is `Hidden`.
332
+ *
333
+ * @returns Value of property `verticalScrolling`
297
334
  */
298
335
  getVerticalScrolling(): sap.ui.core.Scrolling;
299
336
  /**
@@ -302,6 +339,8 @@ declare namespace sap {
302
339
  * The overall width of the control. When not set, 100% is automatically set.
303
340
  *
304
341
  * Default value is `'100%'`.
342
+ *
343
+ * @returns Value of property `width`
305
344
  */
306
345
  getWidth(): sap.ui.core.CSSSize;
307
346
  /**
@@ -317,6 +356,8 @@ declare namespace sap {
317
356
  /**
318
357
  * Checks for the provided `sap.zen.commons.layout.PositionContainer` in the aggregation {@link #getPositions
319
358
  * positions}. and returns its index if found or -1 otherwise.
359
+ *
360
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
320
361
  */
321
362
  indexOfPosition(
322
363
  /**
@@ -348,6 +389,8 @@ declare namespace sap {
348
389
  ): sap.zen.commons.layout.AbsoluteLayout;
349
390
  /**
350
391
  * Inserts a position into the aggregation {@link #getPositions positions}.
392
+ *
393
+ * @returns Reference to `this` in order to allow method chaining
351
394
  */
352
395
  insertPosition(
353
396
  /**
@@ -370,6 +413,8 @@ declare namespace sap {
370
413
  * Removes all the controls from the aggregation {@link #getPositions positions}.
371
414
  *
372
415
  * Additionally, it unregisters them from the hosting UIArea.
416
+ *
417
+ * @returns An array of the removed elements (might be empty)
373
418
  */
374
419
  removeAllPositions(): sap.zen.commons.layout.PositionContainer[];
375
420
  /**
@@ -384,6 +429,8 @@ declare namespace sap {
384
429
  ): sap.ui.core.Control;
385
430
  /**
386
431
  * Removes a position from the aggregation {@link #getPositions positions}.
432
+ *
433
+ * @returns The removed position or `null`
387
434
  */
388
435
  removePosition(
389
436
  /**
@@ -399,6 +446,8 @@ declare namespace sap {
399
446
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
400
447
  *
401
448
  * Default value is `"100%"`.
449
+ *
450
+ * @returns Reference to `this` in order to allow method chaining
402
451
  */
403
452
  setHeight(
404
453
  /**
@@ -414,6 +463,8 @@ declare namespace sap {
414
463
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
415
464
  *
416
465
  * Default value is `Hidden`.
466
+ *
467
+ * @returns Reference to `this` in order to allow method chaining
417
468
  */
418
469
  setHorizontalScrolling(
419
470
  /**
@@ -445,6 +496,8 @@ declare namespace sap {
445
496
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
446
497
  *
447
498
  * Default value is `Hidden`.
499
+ *
500
+ * @returns Reference to `this` in order to allow method chaining
448
501
  */
449
502
  setVerticalScrolling(
450
503
  /**
@@ -460,6 +513,8 @@ declare namespace sap {
460
513
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
461
514
  *
462
515
  * Default value is `'100%'`.
516
+ *
517
+ * @returns Reference to `this` in order to allow method chaining
463
518
  */
464
519
  setWidth(
465
520
  /**
@@ -508,6 +563,8 @@ declare namespace sap {
508
563
  * it with the information contained in `oClassInfo`.
509
564
  *
510
565
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
566
+ *
567
+ * @returns Created class / constructor function
511
568
  */
512
569
  static extend<T extends Record<string, unknown>>(
513
570
  /**
@@ -526,10 +583,14 @@ declare namespace sap {
526
583
  ): Function;
527
584
  /**
528
585
  * Returns a metadata object for class sap.zen.commons.layout.MatrixLayout.
586
+ *
587
+ * @returns Metadata object describing this class
529
588
  */
530
589
  static getMetadata(): sap.ui.core.ElementMetadata;
531
590
  /**
532
591
  * Adds some row to the aggregation {@link #getRows rows}.
592
+ *
593
+ * @returns Reference to `this` in order to allow method chaining
533
594
  */
534
595
  addRow(
535
596
  /**
@@ -543,6 +604,8 @@ declare namespace sap {
543
604
  * Each argument must be either a matrix layout cell, which is added to the row "as is", or an arbitrary
544
605
  * content control, which is wrapped with a new (default) matrix layout cell first and then added to the
545
606
  * row.
607
+ *
608
+ * @returns `this` to allow method chaining
546
609
  */
547
610
  createRow(
548
611
  /**
@@ -555,18 +618,24 @@ declare namespace sap {
555
618
  ): sap.zen.commons.layout.MatrixLayout;
556
619
  /**
557
620
  * Destroys all the rows in the aggregation {@link #getRows rows}.
621
+ *
622
+ * @returns Reference to `this` in order to allow method chaining
558
623
  */
559
624
  destroyRows(): this;
560
625
  /**
561
626
  * Gets current value of property {@link #getColumns columns}.
562
627
  *
563
628
  * Number of columns. If not specified, the number of columns will be determined from the given cells.
629
+ *
630
+ * @returns Value of property `columns`
564
631
  */
565
632
  getColumns(): int;
566
633
  /**
567
634
  * Gets current value of property {@link #getHeight height}.
568
635
  *
569
636
  * CSS height of the matrix layout.
637
+ *
638
+ * @returns Value of property `height`
570
639
  */
571
640
  getHeight(): sap.ui.core.CSSSize;
572
641
  /**
@@ -578,6 +647,8 @@ declare namespace sap {
578
647
  * the given ones because of browser dependend optimazations.
579
648
  *
580
649
  * Default value is `true`.
650
+ *
651
+ * @returns Value of property `layoutFixed`
581
652
  */
582
653
  getLayoutFixed(): boolean;
583
654
  /**
@@ -590,6 +661,8 @@ declare namespace sap {
590
661
  * Gets current value of property {@link #getWidth width}.
591
662
  *
592
663
  * CSS width of the matrix layout. If the LayoutFixed = true a adequate width should be provided.
664
+ *
665
+ * @returns Value of property `width`
593
666
  */
594
667
  getWidth(): sap.ui.core.CSSSize;
595
668
  /**
@@ -597,11 +670,15 @@ declare namespace sap {
597
670
  *
598
671
  * Widths of the columns. Use an array to define the widths of the columns. If a column shall have an automatical
599
672
  * sizing enter "auto" for this column width.
673
+ *
674
+ * @returns Value of property `widths`
600
675
  */
601
676
  getWidths(): sap.ui.core.CSSSize[];
602
677
  /**
603
678
  * Checks for the provided `sap.zen.commons.layout.MatrixLayoutRow` in the aggregation {@link #getRows rows}.
604
679
  * and returns its index if found or -1 otherwise.
680
+ *
681
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
605
682
  */
606
683
  indexOfRow(
607
684
  /**
@@ -611,6 +688,8 @@ declare namespace sap {
611
688
  ): int;
612
689
  /**
613
690
  * Inserts a row into the aggregation {@link #getRows rows}.
691
+ *
692
+ * @returns Reference to `this` in order to allow method chaining
614
693
  */
615
694
  insertRow(
616
695
  /**
@@ -628,10 +707,14 @@ declare namespace sap {
628
707
  * Removes all the controls from the aggregation {@link #getRows rows}.
629
708
  *
630
709
  * Additionally, it unregisters them from the hosting UIArea.
710
+ *
711
+ * @returns An array of the removed elements (might be empty)
631
712
  */
632
713
  removeAllRows(): sap.zen.commons.layout.MatrixLayoutRow[];
633
714
  /**
634
715
  * Removes a row from the aggregation {@link #getRows rows}.
716
+ *
717
+ * @returns The removed row or `null`
635
718
  */
636
719
  removeRow(
637
720
  /**
@@ -645,6 +728,8 @@ declare namespace sap {
645
728
  * Number of columns. If not specified, the number of columns will be determined from the given cells.
646
729
  *
647
730
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
731
+ *
732
+ * @returns Reference to `this` in order to allow method chaining
648
733
  */
649
734
  setColumns(
650
735
  /**
@@ -658,6 +743,8 @@ declare namespace sap {
658
743
  * CSS height of the matrix layout.
659
744
  *
660
745
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
746
+ *
747
+ * @returns Reference to `this` in order to allow method chaining
661
748
  */
662
749
  setHeight(
663
750
  /**
@@ -676,6 +763,8 @@ declare namespace sap {
676
763
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
677
764
  *
678
765
  * Default value is `true`.
766
+ *
767
+ * @returns Reference to `this` in order to allow method chaining
679
768
  */
680
769
  setLayoutFixed(
681
770
  /**
@@ -689,6 +778,8 @@ declare namespace sap {
689
778
  * CSS width of the matrix layout. If the LayoutFixed = true a adequate width should be provided.
690
779
  *
691
780
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
781
+ *
782
+ * @returns Reference to `this` in order to allow method chaining
692
783
  */
693
784
  setWidth(
694
785
  /**
@@ -703,6 +794,8 @@ declare namespace sap {
703
794
  * sizing enter "auto" for this column width.
704
795
  *
705
796
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
797
+ *
798
+ * @returns Reference to `this` in order to allow method chaining
706
799
  */
707
800
  setWidths(
708
801
  /**
@@ -851,6 +944,8 @@ declare namespace sap {
851
944
  * it with the information contained in `oClassInfo`.
852
945
  *
853
946
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
947
+ *
948
+ * @returns Created class / constructor function
854
949
  */
855
950
  static extend<T extends Record<string, unknown>>(
856
951
  /**
@@ -872,10 +967,14 @@ declare namespace sap {
872
967
  ): Function;
873
968
  /**
874
969
  * Returns a metadata object for class sap.zen.commons.layout.MatrixLayoutRow.
970
+ *
971
+ * @returns Metadata object describing this class
875
972
  */
876
973
  static getMetadata(): sap.ui.core.ElementMetadata;
877
974
  /**
878
975
  * Adds some cell to the aggregation {@link #getCells cells}.
976
+ *
977
+ * @returns Reference to `this` in order to allow method chaining
879
978
  */
880
979
  addCell(
881
980
  /**
@@ -923,6 +1022,8 @@ declare namespace sap {
923
1022
  ): sap.zen.commons.layout.MatrixLayoutRow;
924
1023
  /**
925
1024
  * Destroys all the cells in the aggregation {@link #getCells cells}.
1025
+ *
1026
+ * @returns Reference to `this` in order to allow method chaining
926
1027
  */
927
1028
  destroyCells(): this;
928
1029
  /**
@@ -935,6 +1036,8 @@ declare namespace sap {
935
1036
  * Gets current value of property {@link #getHeight height}.
936
1037
  *
937
1038
  * Height of the row.
1039
+ *
1040
+ * @returns Value of property `height`
938
1041
  */
939
1042
  getHeight(): sap.ui.core.CSSSize;
940
1043
  /**
@@ -950,6 +1053,8 @@ declare namespace sap {
950
1053
  /**
951
1054
  * Checks for the provided `sap.zen.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells
952
1055
  * cells}. and returns its index if found or -1 otherwise.
1056
+ *
1057
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
953
1058
  */
954
1059
  indexOfCell(
955
1060
  /**
@@ -959,6 +1064,8 @@ declare namespace sap {
959
1064
  ): int;
960
1065
  /**
961
1066
  * Inserts a cell into the aggregation {@link #getCells cells}.
1067
+ *
1068
+ * @returns Reference to `this` in order to allow method chaining
962
1069
  */
963
1070
  insertCell(
964
1071
  /**
@@ -976,10 +1083,14 @@ declare namespace sap {
976
1083
  * Removes all the controls from the aggregation {@link #getCells cells}.
977
1084
  *
978
1085
  * Additionally, it unregisters them from the hosting UIArea.
1086
+ *
1087
+ * @returns An array of the removed elements (might be empty)
979
1088
  */
980
1089
  removeAllCells(): sap.zen.commons.layout.MatrixLayoutCell[];
981
1090
  /**
982
1091
  * Removes a cell from the aggregation {@link #getCells cells}.
1092
+ *
1093
+ * @returns The removed cell or `null`
983
1094
  */
984
1095
  removeCell(
985
1096
  /**
@@ -1005,6 +1116,8 @@ declare namespace sap {
1005
1116
  * Height of the row.
1006
1117
  *
1007
1118
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1119
+ *
1120
+ * @returns Reference to `this` in order to allow method chaining
1008
1121
  */
1009
1122
  setHeight(
1010
1123
  /**
@@ -1055,6 +1168,8 @@ declare namespace sap {
1055
1168
  * it with the information contained in `oClassInfo`.
1056
1169
  *
1057
1170
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1171
+ *
1172
+ * @returns Created class / constructor function
1058
1173
  */
1059
1174
  static extend<T extends Record<string, unknown>>(
1060
1175
  /**
@@ -1076,16 +1191,22 @@ declare namespace sap {
1076
1191
  ): Function;
1077
1192
  /**
1078
1193
  * Returns a metadata object for class sap.zen.commons.layout.PositionContainer.
1194
+ *
1195
+ * @returns Metadata object describing this class
1079
1196
  */
1080
1197
  static getMetadata(): sap.ui.core.ElementMetadata;
1081
1198
  /**
1082
1199
  * Destroys the control in the aggregation {@link #getControl control}.
1200
+ *
1201
+ * @returns Reference to `this` in order to allow method chaining
1083
1202
  */
1084
1203
  destroyControl(): this;
1085
1204
  /**
1086
1205
  * Gets current value of property {@link #getBottom bottom}.
1087
1206
  *
1088
1207
  * Defines the distance to the bottom of the layout (as specified in HTML)
1208
+ *
1209
+ * @returns Value of property `bottom`
1089
1210
  */
1090
1211
  getBottom(): sap.ui.core.CSSSize;
1091
1212
  /**
@@ -1095,6 +1216,8 @@ declare namespace sap {
1095
1216
  * of the attributes left and right are ignored when this feature is activated.
1096
1217
  *
1097
1218
  * Default value is `false`.
1219
+ *
1220
+ * @returns Value of property `centerHorizontally`
1098
1221
  */
1099
1222
  getCenterHorizontally(): boolean;
1100
1223
  /**
@@ -1104,6 +1227,8 @@ declare namespace sap {
1104
1227
  * of the attributes top and bottom are ignored when this feature is activated.
1105
1228
  *
1106
1229
  * Default value is `false`.
1230
+ *
1231
+ * @returns Value of property `centerVertically`
1107
1232
  */
1108
1233
  getCenterVertically(): boolean;
1109
1234
  /**
@@ -1116,18 +1241,24 @@ declare namespace sap {
1116
1241
  * Gets current value of property {@link #getLeft left}.
1117
1242
  *
1118
1243
  * Defines the distance to the left of the layout (as specified in HTML)
1244
+ *
1245
+ * @returns Value of property `left`
1119
1246
  */
1120
1247
  getLeft(): sap.ui.core.CSSSize;
1121
1248
  /**
1122
1249
  * Gets current value of property {@link #getRight right}.
1123
1250
  *
1124
1251
  * Defines the distance to the right of the layout (as specified in HTML)
1252
+ *
1253
+ * @returns Value of property `right`
1125
1254
  */
1126
1255
  getRight(): sap.ui.core.CSSSize;
1127
1256
  /**
1128
1257
  * Gets current value of property {@link #getTop top}.
1129
1258
  *
1130
1259
  * Defines the distance to the top of the layout (as specified in HTML)
1260
+ *
1261
+ * @returns Value of property `top`
1131
1262
  */
1132
1263
  getTop(): sap.ui.core.CSSSize;
1133
1264
  /**
@@ -1136,6 +1267,8 @@ declare namespace sap {
1136
1267
  * Defines the distance to the bottom of the layout (as specified in HTML)
1137
1268
  *
1138
1269
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1270
+ *
1271
+ * @returns Reference to `this` in order to allow method chaining
1139
1272
  */
1140
1273
  setBottom(
1141
1274
  /**
@@ -1152,6 +1285,8 @@ declare namespace sap {
1152
1285
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1153
1286
  *
1154
1287
  * Default value is `false`.
1288
+ *
1289
+ * @returns Reference to `this` in order to allow method chaining
1155
1290
  */
1156
1291
  setCenterHorizontally(
1157
1292
  /**
@@ -1168,6 +1303,8 @@ declare namespace sap {
1168
1303
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1169
1304
  *
1170
1305
  * Default value is `false`.
1306
+ *
1307
+ * @returns Reference to `this` in order to allow method chaining
1171
1308
  */
1172
1309
  setCenterVertically(
1173
1310
  /**
@@ -1177,6 +1314,8 @@ declare namespace sap {
1177
1314
  ): this;
1178
1315
  /**
1179
1316
  * Sets the aggregated {@link #getControl control}.
1317
+ *
1318
+ * @returns Reference to `this` in order to allow method chaining
1180
1319
  */
1181
1320
  setControl(
1182
1321
  /**
@@ -1190,6 +1329,8 @@ declare namespace sap {
1190
1329
  * Defines the distance to the left of the layout (as specified in HTML)
1191
1330
  *
1192
1331
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1332
+ *
1333
+ * @returns Reference to `this` in order to allow method chaining
1193
1334
  */
1194
1335
  setLeft(
1195
1336
  /**
@@ -1203,6 +1344,8 @@ declare namespace sap {
1203
1344
  * Defines the distance to the right of the layout (as specified in HTML)
1204
1345
  *
1205
1346
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1347
+ *
1348
+ * @returns Reference to `this` in order to allow method chaining
1206
1349
  */
1207
1350
  setRight(
1208
1351
  /**
@@ -1216,6 +1359,8 @@ declare namespace sap {
1216
1359
  * Defines the distance to the top of the layout (as specified in HTML)
1217
1360
  *
1218
1361
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1362
+ *
1363
+ * @returns Reference to `this` in order to allow method chaining
1219
1364
  */
1220
1365
  setTop(
1221
1366
  /**