@sapui5/types 1.120.11 → 1.120.13

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 (55) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/types/sap.chart.d.ts +58 -6
  5. package/types/sap.esh.search.ui.d.ts +16 -2
  6. package/types/sap.f.d.ts +372 -54
  7. package/types/sap.fe.core.d.ts +11 -3
  8. package/types/sap.fe.macros.d.ts +96 -12
  9. package/types/sap.fe.navigation.d.ts +1 -1
  10. package/types/sap.fe.placeholder.d.ts +1 -1
  11. package/types/sap.fe.templates.d.ts +1 -1
  12. package/types/sap.fe.test.d.ts +1 -1
  13. package/types/sap.fe.tools.d.ts +1 -1
  14. package/types/sap.gantt.d.ts +1001 -139
  15. package/types/sap.insights.d.ts +4 -2
  16. package/types/sap.m.d.ts +3123 -276
  17. package/types/sap.makit.d.ts +115 -14
  18. package/types/sap.me.d.ts +84 -7
  19. package/types/sap.ndc.d.ts +22 -2
  20. package/types/sap.ovp.d.ts +1 -1
  21. package/types/sap.sac.df.d.ts +294 -44
  22. package/types/sap.suite.ui.commons.d.ts +1148 -118
  23. package/types/sap.suite.ui.generic.template.d.ts +10 -2
  24. package/types/sap.suite.ui.microchart.d.ts +184 -28
  25. package/types/sap.tnt.d.ts +40 -8
  26. package/types/sap.ui.codeeditor.d.ts +16 -2
  27. package/types/sap.ui.commons.d.ts +756 -90
  28. package/types/sap.ui.comp.d.ts +884 -50
  29. package/types/sap.ui.core.d.ts +1112 -135
  30. package/types/sap.ui.dt.d.ts +1 -1
  31. package/types/sap.ui.export.d.ts +19 -4
  32. package/types/sap.ui.fl.d.ts +44 -3
  33. package/types/sap.ui.integration.d.ts +144 -6
  34. package/types/sap.ui.layout.d.ts +166 -41
  35. package/types/sap.ui.mdc.d.ts +430 -38
  36. package/types/sap.ui.richtexteditor.d.ts +28 -2
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +27 -3
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +222 -19
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +431 -35
  43. package/types/sap.ui.ux3.d.ts +524 -31
  44. package/types/sap.ui.vbm.d.ts +6427 -3308
  45. package/types/sap.ui.webc.common.d.ts +7 -1
  46. package/types/sap.ui.webc.fiori.d.ts +351 -29
  47. package/types/sap.ui.webc.main.d.ts +1035 -83
  48. package/types/sap.uiext.inbox.d.ts +124 -13
  49. package/types/sap.ushell.d.ts +147 -12
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +118 -18
  52. package/types/sap.viz.d.ts +2619 -130
  53. package/types/sap.zen.commons.d.ts +104 -23
  54. package/types/sap.zen.crosstab.d.ts +96 -16
  55. package/types/sap.zen.dsh.d.ts +255 -149
@@ -1,13 +1,13 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.120.5
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
5
5
  declare module "sap/zen/commons/HAlign" {
6
6
  /**
7
- * @deprecated (since 1.89.0)
8
- *
9
7
  * Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
10
8
  * depend on the current locale's writing direction while others do not.
9
+ *
10
+ * @deprecated (since 1.89.0) - Please use the WD Grid control instead.
11
11
  */
12
12
  enum HAlign {
13
13
  /**
@@ -49,9 +49,9 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
49
49
  } from "sap/ui/base/ManagedObject";
50
50
 
51
51
  /**
52
- * @deprecated (since 1.38)
53
- *
54
52
  * The Absolute Layout positions its child controls absolutely
53
+ *
54
+ * @deprecated (since 1.38)
55
55
  */
56
56
  export default class AbsoluteLayout extends Control {
57
57
  /**
@@ -91,6 +91,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
91
91
  *
92
92
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
93
93
  *
94
+ *
94
95
  * @returns Created class / constructor function
95
96
  */
96
97
  static extend<T extends Record<string, unknown>>(
@@ -111,6 +112,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
111
112
  /**
112
113
  * Returns a metadata object for class sap.zen.commons.layout.AbsoluteLayout.
113
114
  *
115
+ *
114
116
  * @returns Metadata object describing this class
115
117
  */
116
118
  static getMetadata(): ElementMetadata;
@@ -133,6 +135,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
133
135
  /**
134
136
  * Adds some position to the aggregation {@link #getPositions positions}.
135
137
  *
138
+ *
136
139
  * @returns Reference to `this` in order to allow method chaining
137
140
  */
138
141
  addPosition(
@@ -149,6 +152,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
149
152
  /**
150
153
  * Destroys all the positions in the aggregation {@link #getPositions positions}.
151
154
  *
155
+ *
152
156
  * @returns Reference to `this` in order to allow method chaining
153
157
  */
154
158
  destroyPositions(): this;
@@ -163,6 +167,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
163
167
  *
164
168
  * Default value is `"100%"`.
165
169
  *
170
+ *
166
171
  * @returns Value of property `height`
167
172
  */
168
173
  getHeight(): CSSSize;
@@ -173,6 +178,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
173
178
  *
174
179
  * Default value is `Hidden`.
175
180
  *
181
+ *
176
182
  * @returns Value of property `horizontalScrolling`
177
183
  */
178
184
  getHorizontalScrolling(): Scrolling | keyof typeof Scrolling;
@@ -189,6 +195,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
189
195
  *
190
196
  * Default value is `Hidden`.
191
197
  *
198
+ *
192
199
  * @returns Value of property `verticalScrolling`
193
200
  */
194
201
  getVerticalScrolling(): Scrolling | keyof typeof Scrolling;
@@ -199,6 +206,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
199
206
  *
200
207
  * Default value is `'100%'`.
201
208
  *
209
+ *
202
210
  * @returns Value of property `width`
203
211
  */
204
212
  getWidth(): CSSSize;
@@ -216,6 +224,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
216
224
  * Checks for the provided `sap.zen.commons.layout.PositionContainer` in the aggregation {@link #getPositions positions}.
217
225
  * and returns its index if found or -1 otherwise.
218
226
  *
227
+ *
219
228
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
220
229
  */
221
230
  indexOfPosition(
@@ -249,6 +258,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
249
258
  /**
250
259
  * Inserts a position into the aggregation {@link #getPositions positions}.
251
260
  *
261
+ *
252
262
  * @returns Reference to `this` in order to allow method chaining
253
263
  */
254
264
  insertPosition(
@@ -273,6 +283,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
273
283
  *
274
284
  * Additionally, it unregisters them from the hosting UIArea.
275
285
  *
286
+ *
276
287
  * @returns An array of the removed elements (might be empty)
277
288
  */
278
289
  removeAllPositions(): PositionContainer[];
@@ -289,6 +300,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
289
300
  /**
290
301
  * Removes a position from the aggregation {@link #getPositions positions}.
291
302
  *
303
+ *
292
304
  * @returns The removed position or `null`
293
305
  */
294
306
  removePosition(
@@ -306,6 +318,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
306
318
  *
307
319
  * Default value is `"100%"`.
308
320
  *
321
+ *
309
322
  * @returns Reference to `this` in order to allow method chaining
310
323
  */
311
324
  setHeight(
@@ -323,6 +336,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
323
336
  *
324
337
  * Default value is `Hidden`.
325
338
  *
339
+ *
326
340
  * @returns Reference to `this` in order to allow method chaining
327
341
  */
328
342
  setHorizontalScrolling(
@@ -356,6 +370,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
356
370
  *
357
371
  * Default value is `Hidden`.
358
372
  *
373
+ *
359
374
  * @returns Reference to `this` in order to allow method chaining
360
375
  */
361
376
  setVerticalScrolling(
@@ -373,6 +388,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
373
388
  *
374
389
  * Default value is `'100%'`.
375
390
  *
391
+ *
376
392
  * @returns Reference to `this` in order to allow method chaining
377
393
  */
378
394
  setWidth(
@@ -382,7 +398,11 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
382
398
  sWidth?: CSSSize
383
399
  ): this;
384
400
  }
385
-
401
+ /**
402
+ * Describes the settings that can be provided to the AbsoluteLayout constructor.
403
+ *
404
+ * @deprecated (since 1.38)
405
+ */
386
406
  export interface $AbsoluteLayoutSettings extends $ControlSettings {
387
407
  /**
388
408
  * The overall width of the control. When not set, 100% is automatically set.
@@ -478,6 +498,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
478
498
  *
479
499
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
480
500
  *
501
+ *
481
502
  * @returns Created class / constructor function
482
503
  */
483
504
  static extend<T extends Record<string, unknown>>(
@@ -498,12 +519,14 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
498
519
  /**
499
520
  * Returns a metadata object for class sap.zen.commons.layout.MatrixLayout.
500
521
  *
522
+ *
501
523
  * @returns Metadata object describing this class
502
524
  */
503
525
  static getMetadata(): ElementMetadata;
504
526
  /**
505
527
  * Adds some row to the aggregation {@link #getRows rows}.
506
528
  *
529
+ *
507
530
  * @returns Reference to `this` in order to allow method chaining
508
531
  */
509
532
  addRow(
@@ -519,6 +542,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
519
542
  * content control, which is wrapped with a new (default) matrix layout cell first and then added to the
520
543
  * row.
521
544
  *
545
+ *
522
546
  * @returns `this` to allow method chaining
523
547
  */
524
548
  createRow(
@@ -530,6 +554,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
530
554
  /**
531
555
  * Destroys all the rows in the aggregation {@link #getRows rows}.
532
556
  *
557
+ *
533
558
  * @returns Reference to `this` in order to allow method chaining
534
559
  */
535
560
  destroyRows(): this;
@@ -538,6 +563,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
538
563
  *
539
564
  * Number of columns. If not specified, the number of columns will be determined from the given cells.
540
565
  *
566
+ *
541
567
  * @returns Value of property `columns`
542
568
  */
543
569
  getColumns(): int;
@@ -546,6 +572,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
546
572
  *
547
573
  * CSS height of the matrix layout.
548
574
  *
575
+ *
549
576
  * @returns Value of property `height`
550
577
  */
551
578
  getHeight(): CSSSize;
@@ -559,6 +586,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
559
586
  *
560
587
  * Default value is `true`.
561
588
  *
589
+ *
562
590
  * @returns Value of property `layoutFixed`
563
591
  */
564
592
  getLayoutFixed(): boolean;
@@ -573,6 +601,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
573
601
  *
574
602
  * CSS width of the matrix layout. If the LayoutFixed = true a adequate width should be provided.
575
603
  *
604
+ *
576
605
  * @returns Value of property `width`
577
606
  */
578
607
  getWidth(): CSSSize;
@@ -582,6 +611,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
582
611
  * Widths of the columns. Use an array to define the widths of the columns. If a column shall have an automatical
583
612
  * sizing enter "auto" for this column width.
584
613
  *
614
+ *
585
615
  * @returns Value of property `widths`
586
616
  */
587
617
  getWidths(): CSSSize[];
@@ -589,6 +619,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
589
619
  * Checks for the provided `sap.zen.commons.layout.MatrixLayoutRow` in the aggregation {@link #getRows rows}.
590
620
  * and returns its index if found or -1 otherwise.
591
621
  *
622
+ *
592
623
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
593
624
  */
594
625
  indexOfRow(
@@ -600,6 +631,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
600
631
  /**
601
632
  * Inserts a row into the aggregation {@link #getRows rows}.
602
633
  *
634
+ *
603
635
  * @returns Reference to `this` in order to allow method chaining
604
636
  */
605
637
  insertRow(
@@ -619,12 +651,14 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
619
651
  *
620
652
  * Additionally, it unregisters them from the hosting UIArea.
621
653
  *
654
+ *
622
655
  * @returns An array of the removed elements (might be empty)
623
656
  */
624
657
  removeAllRows(): MatrixLayoutRow[];
625
658
  /**
626
659
  * Removes a row from the aggregation {@link #getRows rows}.
627
660
  *
661
+ *
628
662
  * @returns The removed row or `null`
629
663
  */
630
664
  removeRow(
@@ -640,6 +674,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
640
674
  *
641
675
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
642
676
  *
677
+ *
643
678
  * @returns Reference to `this` in order to allow method chaining
644
679
  */
645
680
  setColumns(
@@ -655,6 +690,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
655
690
  *
656
691
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
657
692
  *
693
+ *
658
694
  * @returns Reference to `this` in order to allow method chaining
659
695
  */
660
696
  setHeight(
@@ -675,6 +711,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
675
711
  *
676
712
  * Default value is `true`.
677
713
  *
714
+ *
678
715
  * @returns Reference to `this` in order to allow method chaining
679
716
  */
680
717
  setLayoutFixed(
@@ -690,6 +727,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
690
727
  *
691
728
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
692
729
  *
730
+ *
693
731
  * @returns Reference to `this` in order to allow method chaining
694
732
  */
695
733
  setWidth(
@@ -706,6 +744,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
706
744
  *
707
745
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
708
746
  *
747
+ *
709
748
  * @returns Reference to `this` in order to allow method chaining
710
749
  */
711
750
  setWidths(
@@ -715,7 +754,11 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
715
754
  sWidths?: CSSSize[]
716
755
  ): this;
717
756
  }
718
-
757
+ /**
758
+ * Describes the settings that can be provided to the MatrixLayout constructor.
759
+ *
760
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
761
+ */
719
762
  export interface $MatrixLayoutSettings extends $ControlSettings {
720
763
  /**
721
764
  * CSS width of the matrix layout. If the LayoutFixed = true a adequate width should be provided.
@@ -761,9 +804,9 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
761
804
  import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
762
805
 
763
806
  /**
764
- * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
765
- *
766
807
  * Non-control element used as part of a matrix layout's inner structure.
808
+ *
809
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
767
810
  */
768
811
  export default class MatrixLayoutCell extends UI5Element {
769
812
  /**
@@ -858,7 +901,11 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
858
901
  sStyleClass: string
859
902
  ): MatrixLayoutCell;
860
903
  }
861
-
904
+ /**
905
+ * Describes the settings that can be provided to the MatrixLayoutCell constructor.
906
+ *
907
+ * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
908
+ */
862
909
  export interface $MatrixLayoutCellSettings extends $ElementSettings {}
863
910
  }
864
911
 
@@ -877,9 +924,9 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
877
924
  } from "sap/ui/base/ManagedObject";
878
925
 
879
926
  /**
880
- * @deprecated (since 1.89.0)
881
- *
882
927
  * Non-control element used as part of a matrix layout's inner structure.
928
+ *
929
+ * @deprecated (since 1.89.0)
883
930
  */
884
931
  export default class MatrixLayoutRow extends UI5Element {
885
932
  /**
@@ -919,6 +966,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
919
966
  *
920
967
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
921
968
  *
969
+ *
922
970
  * @returns Created class / constructor function
923
971
  */
924
972
  static extend<T extends Record<string, unknown>>(
@@ -939,12 +987,14 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
939
987
  /**
940
988
  * Returns a metadata object for class sap.zen.commons.layout.MatrixLayoutRow.
941
989
  *
990
+ *
942
991
  * @returns Metadata object describing this class
943
992
  */
944
993
  static getMetadata(): ElementMetadata;
945
994
  /**
946
995
  * Adds some cell to the aggregation {@link #getCells cells}.
947
996
  *
997
+ *
948
998
  * @returns Reference to `this` in order to allow method chaining
949
999
  */
950
1000
  addCell(
@@ -994,6 +1044,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
994
1044
  /**
995
1045
  * Destroys all the cells in the aggregation {@link #getCells cells}.
996
1046
  *
1047
+ *
997
1048
  * @returns Reference to `this` in order to allow method chaining
998
1049
  */
999
1050
  destroyCells(): this;
@@ -1008,6 +1059,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1008
1059
  *
1009
1060
  * Height of the row.
1010
1061
  *
1062
+ *
1011
1063
  * @returns Value of property `height`
1012
1064
  */
1013
1065
  getHeight(): CSSSize;
@@ -1025,6 +1077,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1025
1077
  * Checks for the provided `sap.zen.commons.layout.MatrixLayoutCell` in the aggregation {@link #getCells cells}.
1026
1078
  * and returns its index if found or -1 otherwise.
1027
1079
  *
1080
+ *
1028
1081
  * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1029
1082
  */
1030
1083
  indexOfCell(
@@ -1036,6 +1089,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1036
1089
  /**
1037
1090
  * Inserts a cell into the aggregation {@link #getCells cells}.
1038
1091
  *
1092
+ *
1039
1093
  * @returns Reference to `this` in order to allow method chaining
1040
1094
  */
1041
1095
  insertCell(
@@ -1055,12 +1109,14 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1055
1109
  *
1056
1110
  * Additionally, it unregisters them from the hosting UIArea.
1057
1111
  *
1112
+ *
1058
1113
  * @returns An array of the removed elements (might be empty)
1059
1114
  */
1060
1115
  removeAllCells(): MatrixLayoutCell[];
1061
1116
  /**
1062
1117
  * Removes a cell from the aggregation {@link #getCells cells}.
1063
1118
  *
1119
+ *
1064
1120
  * @returns The removed cell or `null`
1065
1121
  */
1066
1122
  removeCell(
@@ -1088,6 +1144,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1088
1144
  *
1089
1145
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1090
1146
  *
1147
+ *
1091
1148
  * @returns Reference to `this` in order to allow method chaining
1092
1149
  */
1093
1150
  setHeight(
@@ -1097,7 +1154,11 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1097
1154
  sHeight?: CSSSize
1098
1155
  ): this;
1099
1156
  }
1100
-
1157
+ /**
1158
+ * Describes the settings that can be provided to the MatrixLayoutRow constructor.
1159
+ *
1160
+ * @deprecated (since 1.89.0)
1161
+ */
1101
1162
  export interface $MatrixLayoutRowSettings extends $ElementSettings {
1102
1163
  /**
1103
1164
  * Height of the row.
@@ -1127,9 +1188,9 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1127
1188
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
1128
1189
 
1129
1190
  /**
1130
- * @deprecated (since 1.89)
1131
- *
1132
1191
  * Is used to specify the position of a control in the AbsoluteLayout
1192
+ *
1193
+ * @deprecated (since 1.89)
1133
1194
  */
1134
1195
  export default class PositionContainer extends UI5Element {
1135
1196
  /**
@@ -1169,6 +1230,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1169
1230
  *
1170
1231
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1171
1232
  *
1233
+ *
1172
1234
  * @returns Created class / constructor function
1173
1235
  */
1174
1236
  static extend<T extends Record<string, unknown>>(
@@ -1189,12 +1251,14 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1189
1251
  /**
1190
1252
  * Returns a metadata object for class sap.zen.commons.layout.PositionContainer.
1191
1253
  *
1254
+ *
1192
1255
  * @returns Metadata object describing this class
1193
1256
  */
1194
1257
  static getMetadata(): ElementMetadata;
1195
1258
  /**
1196
1259
  * Destroys the control in the aggregation {@link #getControl control}.
1197
1260
  *
1261
+ *
1198
1262
  * @returns Reference to `this` in order to allow method chaining
1199
1263
  */
1200
1264
  destroyControl(): this;
@@ -1203,6 +1267,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1203
1267
  *
1204
1268
  * Defines the distance to the bottom of the layout (as specified in HTML)
1205
1269
  *
1270
+ *
1206
1271
  * @returns Value of property `bottom`
1207
1272
  */
1208
1273
  getBottom(): CSSSize;
@@ -1214,6 +1279,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1214
1279
  *
1215
1280
  * Default value is `false`.
1216
1281
  *
1282
+ *
1217
1283
  * @returns Value of property `centerHorizontally`
1218
1284
  */
1219
1285
  getCenterHorizontally(): boolean;
@@ -1225,6 +1291,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1225
1291
  *
1226
1292
  * Default value is `false`.
1227
1293
  *
1294
+ *
1228
1295
  * @returns Value of property `centerVertically`
1229
1296
  */
1230
1297
  getCenterVertically(): boolean;
@@ -1239,6 +1306,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1239
1306
  *
1240
1307
  * Defines the distance to the left of the layout (as specified in HTML)
1241
1308
  *
1309
+ *
1242
1310
  * @returns Value of property `left`
1243
1311
  */
1244
1312
  getLeft(): CSSSize;
@@ -1247,6 +1315,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1247
1315
  *
1248
1316
  * Defines the distance to the right of the layout (as specified in HTML)
1249
1317
  *
1318
+ *
1250
1319
  * @returns Value of property `right`
1251
1320
  */
1252
1321
  getRight(): CSSSize;
@@ -1255,6 +1324,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1255
1324
  *
1256
1325
  * Defines the distance to the top of the layout (as specified in HTML)
1257
1326
  *
1327
+ *
1258
1328
  * @returns Value of property `top`
1259
1329
  */
1260
1330
  getTop(): CSSSize;
@@ -1265,6 +1335,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1265
1335
  *
1266
1336
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1267
1337
  *
1338
+ *
1268
1339
  * @returns Reference to `this` in order to allow method chaining
1269
1340
  */
1270
1341
  setBottom(
@@ -1283,6 +1354,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1283
1354
  *
1284
1355
  * Default value is `false`.
1285
1356
  *
1357
+ *
1286
1358
  * @returns Reference to `this` in order to allow method chaining
1287
1359
  */
1288
1360
  setCenterHorizontally(
@@ -1301,6 +1373,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1301
1373
  *
1302
1374
  * Default value is `false`.
1303
1375
  *
1376
+ *
1304
1377
  * @returns Reference to `this` in order to allow method chaining
1305
1378
  */
1306
1379
  setCenterVertically(
@@ -1312,6 +1385,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1312
1385
  /**
1313
1386
  * Sets the aggregated {@link #getControl control}.
1314
1387
  *
1388
+ *
1315
1389
  * @returns Reference to `this` in order to allow method chaining
1316
1390
  */
1317
1391
  setControl(
@@ -1327,6 +1401,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1327
1401
  *
1328
1402
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1329
1403
  *
1404
+ *
1330
1405
  * @returns Reference to `this` in order to allow method chaining
1331
1406
  */
1332
1407
  setLeft(
@@ -1342,6 +1417,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1342
1417
  *
1343
1418
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1344
1419
  *
1420
+ *
1345
1421
  * @returns Reference to `this` in order to allow method chaining
1346
1422
  */
1347
1423
  setRight(
@@ -1357,6 +1433,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1357
1433
  *
1358
1434
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1359
1435
  *
1436
+ *
1360
1437
  * @returns Reference to `this` in order to allow method chaining
1361
1438
  */
1362
1439
  setTop(
@@ -1377,7 +1454,11 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1377
1454
  oPos: object
1378
1455
  ): void;
1379
1456
  }
1380
-
1457
+ /**
1458
+ * Describes the settings that can be provided to the PositionContainer constructor.
1459
+ *
1460
+ * @deprecated (since 1.89)
1461
+ */
1381
1462
  export interface $PositionContainerSettings extends $ElementSettings {
1382
1463
  /**
1383
1464
  * Defines the distance to the top of the layout (as specified in HTML)
@@ -1420,12 +1501,12 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1420
1501
 
1421
1502
  declare module "sap/zen/commons/Padding" {
1422
1503
  /**
1423
- * @deprecated (since 1.89)
1424
- * @experimental
1425
- *
1426
1504
  * Padding, e.g. of a layout cell's content within the cell's borders. Note that all options except "None"
1427
1505
  * include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
1428
1506
  * the beginning or end of a line, in the current locale's writing direction.
1507
+ *
1508
+ * @deprecated (since 1.89.0) - Please use the WD Grid control instead.
1509
+ * @experimental
1429
1510
  */
1430
1511
  enum Padding {
1431
1512
  /**
@@ -1456,10 +1537,10 @@ declare module "sap/zen/commons/Padding" {
1456
1537
 
1457
1538
  declare module "sap/zen/commons/Separation" {
1458
1539
  /**
1459
- * @deprecated (since 1.89.0)
1460
- *
1461
1540
  * Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
1462
1541
  * without a vertical line in its middle.
1542
+ *
1543
+ * @deprecated (since 1.89.0) - Please use the WD Grid control instead.
1463
1544
  */
1464
1545
  enum Separation {
1465
1546
  /**
@@ -1496,9 +1577,9 @@ declare module "sap/zen/commons/Separation" {
1496
1577
 
1497
1578
  declare module "sap/zen/commons/VAlign" {
1498
1579
  /**
1499
- * @deprecated (since 1.89.0)
1500
- *
1501
1580
  * Vertical alignment, e.g. of a layout cell's content within the cell's borders.
1581
+ *
1582
+ * @deprecated (since 1.89.0) - Please use the WD Grid control instead.
1502
1583
  */
1503
1584
  enum VAlign {
1504
1585
  /**